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
40
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
810
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.3k
Caches
jmkoni
0
1.3k
SQL! Fun, Delight, Only A Mild Amount Of Terror
jmkoni
0
4.2k
Parsing Job Listings
jmkoni
0
1.3k
User Stories: What, Why, And How
jmkoni
1
60
Other Decks in Technology
See All in Technology
Platform開発が先行する Platform Engineeringの違和感
kintotechdev
4
540
フィンテック養成勉強会#56
finengine
0
140
Kiroと学ぶコンテキストエンジニアリング
oikon48
6
9.8k
なぜテストマネージャの視点が 必要なのか? 〜 一歩先へ進むために 〜
moritamasami
0
210
企業の生成AIガバナンスにおけるエージェントとセキュリティ
lycorptech_jp
PRO
2
150
職種の壁を溶かして開発サイクルを高速に回す~情報透明性と職種越境から考えるAIフレンドリーな職種間連携~
daitasu
0
140
サラリーマンの小遣いで作るtoCサービス - Cloudflare Workersでスケールする開発戦略
shinaps
1
380
ChatGPTとPlantUML/Mermaidによるソフトウェア設計
gowhich501
1
120
「全員プロダクトマネージャー」を実現する、Cursorによる仕様検討の自動運転
applism118
17
7.1k
AI時代に非連続な成長を実現するエンジニアリング戦略
sansantech
PRO
3
1.2k
エラーとアクセシビリティ
schktjm
1
1.2k
[ JAWS-UG 東京 CommunityBuilders Night #2 ]SlackとAmazon Q Developerで 運用効率化を模索する
sh_fk2
3
370
Featured
See All Featured
The Art of Programming - Codeland 2020
erikaheidi
55
13k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
580
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.5k
The Pragmatic Product Professional
lauravandoore
36
6.9k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
36
2.5k
Code Review Best Practice
trishagee
70
19k
Visualization
eitanlees
148
16k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
126
53k
Become a Pro
speakerdeck
PRO
29
5.5k
How to train your dragon (web standard)
notwaldorf
96
6.2k
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.8k
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