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
PythonでフィットネスデータをIFTTTに繋いでみた
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
しみず ゆうき
July 20, 2019
Programming
1
290
PythonでフィットネスデータをIFTTTに繋いでみた
しみず ゆうき
July 20, 2019
Tweet
Share
More Decks by しみず ゆうき
See All by しみず ゆうき
2025年 山梨の技術コミュニティを振り返る
yuukis
0
330
サイトを作ったらNFCタグキーホルダーを爆速で作れ!
yuukis
0
1.1k
Perlで痩せる
yuukis
1
840
Pythonで遊べるLEDボードの紹介
yuukis
0
120
今話題のMCPサーバーをFastAPIでサッと作ってみた
yuukis
0
610
地域ITコミュニティの活性化とAWSに移行してみた話
yuukis
0
550
Gemini API を試した話と山梨でオススメのものを語るLT
yuukis
0
110
山梨のIT勉強会コミュニティを盛り上げるためにアレ作ってみた!
yuukis
0
110
FastAPI を活用した オープンデータAPI の作成
yuukis
0
1.1k
Other Decks in Programming
See All in Programming
Codexに役割を持たせる 他のAIエージェントと組み合わせる実務Tips
o8n
4
1.3k
エージェント開発初心者の僕がエージェントを作った話と今後やりたいこと
thasu0123
0
250
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
13
8.1k
Fundamentals of Software Engineering In the Age of AI
therealdanvega
1
260
AWS Infrastructure as Code の新機能 2025 総まとめ 〜SA 4人による怒涛のデモ祭り〜
konokenj
10
3.4k
GoのDB アクセスにおける 「型安全」と「柔軟性」の両立 - Bob という選択肢
tak848
0
110
AIとペアプロして処理時間を97%削減した話 #pyconshizu
kashewnuts
1
240
モダンOBSプラグイン開発
umireon
0
140
Claude Code Skill入門
mayahoney
0
400
モックわからないマン卒業記 ~振る舞いを起点に見直した、フロントエンドテストにおけるモックの使いどころ~
tasukuwatanabe
2
390
Swift ConcurrencyでよりSwiftyに
yuukiw00w
0
270
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
590
Featured
See All Featured
Tell your own story through comics
letsgokoyo
1
850
Navigating Algorithm Shifts & AI Overviews - #SMXNext
aleyda
1
1.2k
The Language of Interfaces
destraynor
162
26k
Imperfection Machines: The Place of Print at Facebook
scottboms
269
14k
Speed Design
sergeychernyshev
33
1.6k
Crafting Experiences
bethany
1
88
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
55k
Fashionably flexible responsive web design (full day workshop)
malarkey
408
66k
Building Adaptive Systems
keathley
44
3k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
47
8k
Practical Orchestrator
shlominoach
191
11k
Ruling the World: When Life Gets Gamed
codingconduct
0
180
Transcript
【Shingen.py #7 LT】 Python でフィットネスデータを IFTTT に繋いでみた 2019. 7.
20 しみず ゆうき 1
おまえ誰よ? しみず ゆうき • モバイルアプリエンジニア(Android/iOS) • 甲府生まれ 甲府育ち ※ 現在は東京に出稼ぎ中(3年目)
2
3 の話をします
4 背景について
4ヶ月前にダイエットネタで LT やりました 5
で、結局 効果あったの? 6
効果ありませんでした 7
痩せない原因 • 運動していない • (ほぼ)毎晩お酒を飲んでいる • 応援に慣れてしまった • 結果をすぐに忘れる 8
データ連携させて 色々な方法を試してみたい! 9
IFTTT • 数ある Web サービス(Facebook、Evernote、Weather、Dropbox など)同士で連携することができるWebサービス • Web サービスだけでなく iOS、Android
とも連携できる • 最近では、Google Assistant や amazon alexa などのAIスピーカー (スマートスピーカー)との連携が進んでいる ※一部、Wikipedia より抜粋 10
Webhook が利用できる!! 11
Python で IFTTT にデータ送信 import requests requests.post( 'https://maker.ifttt.com/trigger/[event]/with/key/[key]', data={'value1': 'テスト',
'value2': 'てすと', 'value3': 'test'} ) 12
例)Wi-Fi スマート電球と連携させる 13
体重の増減で照明の色を変える 14 ▼通常時 ▼体重 増 照明が赤かったら お酒を控える
まとめ • 自作の Python プログラムを IFTTT に繋げると、 色々遊べそう! 15