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
Developing Python Apps on Windows Azure
Search
Eric Shangkuan
June 10, 2012
Programming
0
70
Developing Python Apps on Windows Azure
How to put your Python apps on Windows Azure
Eric Shangkuan
June 10, 2012
Tweet
Share
More Decks by Eric Shangkuan
See All by Eric Shangkuan
Python on Windows Azure @ PyHUG
ericsk
0
190
Internet Explorer 10: 重新想像網站設計
ericsk
4
410
Windows App 開發嘉年華 Keynote
ericsk
0
81
Windows Store App 開發概論
ericsk
0
81
PyKinect: Body Iteration Application Development Using Python
ericsk
0
750
Windows Phone Mango 應用程式開發面面觀
ericsk
0
62
Wha's New in HTML5
ericsk
0
160
Windows Phone 7 開發指南
ericsk
0
37
Microsoft and jQuery
ericsk
0
63
Other Decks in Programming
See All in Programming
Conform を推す - Advocating for Conform
mizoguchicoji
3
690
チームリードになって変わったこと
isaka1022
0
190
バックエンドのためのアプリ内課金入門 (サブスク編)
qnighy
8
1.8k
昭和の職場からアジャイルの世界へ
kumagoro95
1
360
Ruby on cygwin 2025-02
fd0
0
140
GitHub Actions × RAGでコードレビューの検証の結果
sho_000
0
250
Compose でデザインと実装の差異を減らすための取り組み
oidy
1
300
法律の脱レガシーに学ぶフロントエンド刷新
oguemon
5
730
AIの力でお手軽Chrome拡張機能作り
taiseiue
0
170
さいきょうのレイヤードアーキテクチャについて考えてみた
yahiru
3
740
社内フレームワークとその依存性解決 / in-house framework and its dependency management
vvakame
1
550
GoとPHPのインターフェイスの違い
shimabox
2
170
Featured
See All Featured
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
114
50k
KATA
mclloyd
29
14k
Automating Front-end Workflow
addyosmani
1367
200k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
99
18k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
129
19k
How STYLIGHT went responsive
nonsquared
98
5.4k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
3
320
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
49
2.3k
RailsConf 2023
tenderlove
29
1k
Fashionably flexible responsive web design (full day workshop)
malarkey
406
66k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.7k
Transcript
None
NCTU 2000 ~ 2004 上官林傑 (Eric) Technical Evangelist, MS NTU
2004 ~ 2006 CHT 2007 ~ 2011 Taipei GTUG 2009 ~ 2010 Microsoft 2011 ~ ?
None
None
http://www.windowsazure.com/zh-tw/
Azure
Azure
Azure
None
How Python Runs
None
1. Create Project 2. Add Azure Cloud Service Project 3.
Publish
None
None
None
pip install azure
# init an azure table service instance from azure import
storage ts = storage.TableService(account_name='<STORAGE_NAME>', account_key='<STORAGE_KEY>') # create table ts.create_table('MY_TABLE_NAME') # add an entity ts.insert_entity('MY_TABLE_NAME', { 'PartitionKey': 'hello1234', 'RowKey': '20120610', 'name': 'Eric', 'say': 'PyCon Taiwan rocks!' }) # list entities... entities = ts.query_entities('MY_TABLE_NAME', '', 'name,say') for entity in entities: print '%s: %s' % (entity.name, entity.say)
None
None
http://www.windowsazure.com/zh-tw/ http://www.windowsazure.com/en-us/develop/python/ https://github.com/WindowsAzure https://github.com/WindowsAzure/azure-sdk-for-python