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
46
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
860
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.4k
Building A Community For Beginners
jmkoni
0
5.4k
Caches
jmkoni
0
1.3k
SQL! Fun, Delight, Only A Mild Amount Of Terror
jmkoni
0
4.4k
Parsing Job Listings
jmkoni
0
1.4k
User Stories: What, Why, And How
jmkoni
1
63
Other Decks in Technology
See All in Technology
Introduction to Sansan, inc / Sansan Global Development Center, Inc.
sansan33
PRO
0
3k
男(監査)はつらいよ - Policy as CodeからAIエージェントへ
ken5scal
5
730
vLLM Community Meetup Tokyo #3 オープニングトーク
jpishikawa
0
120
EMからVPoEを経てCTOへ:マネジメントキャリアパスにおける葛藤と成長
kakehashi
PRO
7
870
チームメンバー迷わないIaC設計
hayama17
5
3.8k
入門DBSC
ynojima
0
130
Oracle Cloud Infrastructure:2026年2月度サービス・アップデート
oracle4engineer
PRO
0
220
Eight Engineering Unit 紹介資料
sansan33
PRO
1
6.9k
DX Improvement at Scale
ntk1000
2
290
「データとの対話」の現在地と未来
kobakou
0
1.3k
Evolution of Claude Code & How to use features
oikon48
1
250
Databricksアシスタントが自分で考えて動く時代に! エージェントモード体験もくもく会
taka_aki
0
320
Featured
See All Featured
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.1k
Max Prin - Stacking Signals: How International SEO Comes Together (And Falls Apart)
techseoconnect
PRO
0
110
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
0
220
Agile that works and the tools we love
rasmusluckow
331
21k
Optimizing for Happiness
mojombo
378
71k
The World Runs on Bad Software
bkeepers
PRO
72
12k
Done Done
chrislema
186
16k
Sam Torres - BigQuery for SEOs
techseoconnect
PRO
0
210
Build your cross-platform service in a week with App Engine
jlugia
234
18k
A brief & incomplete history of UX Design for the World Wide Web: 1989–2019
jct
1
310
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
12
1.1k
Code Reviewing Like a Champion
maltzj
528
40k
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