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
37
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
770
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.3k
Building A Community For Beginners
jmkoni
0
5.2k
Caches
jmkoni
0
1.3k
SQL! Fun, Delight, Only A Mild Amount Of Terror
jmkoni
0
4.1k
Parsing Job Listings
jmkoni
0
1.3k
User Stories: What, Why, And How
jmkoni
1
58
Other Decks in Technology
See All in Technology
なぜ私はいま、ここにいるのか? #もがく中堅デザイナー #プロダクトデザイナー
bengo4com
0
1.2k
Github Copilot エージェントモードで試してみた
ochtum
0
130
GitHub Copilot の概要
tomokusaba
1
140
Tokyo_reInforce_2025_recap_iam_access_analyzer
hiashisan
0
130
ひとり情シスなCTOがLLMと始めるオペレーション最適化 / CTO's LLM-Powered Ops
yamitzky
0
460
Microsoft Build 2025 技術/製品動向 for Microsoft Startup Tech Community
torumakabe
2
320
「Chatwork」の認証基盤の移行とログ活用によるプロダクト改善
kubell_hr
1
230
米国国防総省のDevSecOpsライフサイクルをAWSのセキュリティサービスとOSSで実現
syoshie
2
1.2k
無意味な開発生産性の議論から抜け出すための予兆検知とお金とAI
i35_267
0
300
生成AI開発案件におけるClineの業務活用事例とTips
shinya337
0
160
マーケットプレイス版Oracle WebCenter Content For OCI
oracle4engineer
PRO
3
930
プロダクトエンジニアリング組織への歩み、その現在地 / Our journey to becoming a product engineering organization
hiro_torii
0
130
Featured
See All Featured
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
48
5.4k
Statistics for Hackers
jakevdp
799
220k
Music & Morning Musume
bryan
46
6.6k
Producing Creativity
orderedlist
PRO
346
40k
Writing Fast Ruby
sferik
628
62k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
Optimising Largest Contentful Paint
csswizardry
37
3.3k
YesSQL, Process and Tooling at Scale
rocio
173
14k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
35
2.4k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
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