Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
APIs: What are they, why you should care, and h...
Search
Jennifer Konikowski
October 08, 2013
Technology
0
33
APIs: What are they, why you should care, and how you can use them
Tutorial on both the Echonest & Twitter APIs
Jennifer Konikowski
October 08, 2013
Tweet
Share
More Decks by Jennifer Konikowski
See All by Jennifer Konikowski
Building a Great Tech Resume
jmkoni
0
690
Building A Community For All People
jmkoni
0
26
Scala: Welcome To The Wonderful World Of Functional Programming
jmkoni
0
12k
Building a Community For All People
jmkoni
0
1.2k
Building A Community For Beginners
jmkoni
0
5k
Caches
jmkoni
0
1.2k
SQL! Fun, Delight, Only A Mild Amount Of Terror
jmkoni
0
3.9k
Parsing Job Listings
jmkoni
0
1.2k
User Stories: What, Why, And How
jmkoni
1
55
Other Decks in Technology
See All in Technology
君は隠しイベントを見つけれるか?
mujyun
0
210
Amazon FSx for NetApp ONTAPを利用するにあたっての要件整理と設計のポイント
non97
1
150
Automated Promptingを目指すその前に / Before we can aim for Automated Prompting
rkaga
0
100
Aurora_BlueGreenDeploymentsやってみた
tsukasa_ishimaru
1
120
2024-10-30-reInventStandby_StudyGroup_Intro
shinichirokawano
1
530
Vueで Webコンポーネントを作って Reactで使う / 20241030-cloudsign-vuefes_after_night
bengo4com
4
2.4k
APIテスト自動化の勘所
yokawasa
7
3.7k
わたしとトラックポイント / TrackPoint tips
masahirokawahara
1
230
Product Engineer Night #6プロダクトエンジニアを育む仕組み・施策
hacomono
PRO
1
320
「 SharePoint 難しい」ってよく聞くけど、そんなに言うなら8歳の息子に試してもらった
taichinakamura
0
220
Nix入門パラダイム編
asa1984
2
190
GitHub Universe: Evaluating RAG apps in GitHub Actions
pamelafox
0
160
Featured
See All Featured
Embracing the Ebb and Flow
colly
84
4.4k
Reflections from 52 weeks, 52 projects
jeffersonlam
346
20k
Measuring & Analyzing Core Web Vitals
bluesmoon
1
38
Fashionably flexible responsive web design (full day workshop)
malarkey
404
65k
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.1k
Scaling GitHub
holman
458
140k
Typedesign – Prime Four
hannesfritz
39
2.4k
Docker and Python
trallard
40
3.1k
Agile that works and the tools we love
rasmusluckow
327
21k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
The Power of CSS Pseudo Elements
geoffreycrofte
72
5.3k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Transcript
APIs: What are they, why you should care, and how
you can use them. Tuesday, October 8, 13
What is an API? Application Programming Interface definition: “a set
of programming instructions and standards for accessing a web-based application” Tuesday, October 8, 13
The Echo Nest Local, located in Davis Square “The Echo
Nest powers all of today's best music experiences by automatically knowing everything about music.” Created a Python client for their API, pyechonest $ pip install pyechonest Tuesday, October 8, 13
Tuesday, October 8, 13
Results Tuesday, October 8, 13
Pyechonest Tuesday, October 8, 13
Results Tuesday, October 8, 13
Twitter Microblogging service. It is pretty big. https://github.com/bear/python-twitter $ pip
install python-twitter Tuesday, October 8, 13
Twitter using python-twitter Tuesday, October 8, 13
Results Tuesday, October 8, 13
Other methods PostUpdates(self, status, continuation=None, **kwargs) GetFriends(self, user_id=None, screen_name=None, cursor=-1,
skip_status=False, include_user_entities=False) CreateFriendship(self, user_id=None, screen_name=None, follow=True) GetRetweetsOfMe(self, count=None, since_id=None, max_id=None, trim_user=False, include_entities=True, include_user_entities=True) DestroyStatus(self, count=None, since_id=None, max_id=None, trim_user=False, include_entities=True, include_user_entities=True)) Tuesday, October 8, 13