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
71
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
200
Internet Explorer 10: 重新想像網站設計
ericsk
4
410
Windows App 開發嘉年華 Keynote
ericsk
0
87
Windows Store App 開發概論
ericsk
0
84
PyKinect: Body Iteration Application Development Using Python
ericsk
0
790
Windows Phone Mango 應用程式開發面面觀
ericsk
0
63
Wha's New in HTML5
ericsk
0
160
Windows Phone 7 開發指南
ericsk
0
44
Microsoft and jQuery
ericsk
0
65
Other Decks in Programming
See All in Programming
testingを眺める
matumoto
1
140
今だからこそ入門する Server-Sent Events (SSE)
nearme_tech
PRO
3
250
複雑なフォームに立ち向かう Next.js の技術選定
macchiitaka
2
220
「待たせ上手」なスケルトンスクリーン、 そのUXの裏側
teamlab
PRO
0
560
CJK and Unicode From a PHP Committer
youkidearitai
PRO
0
110
go test -json そして testing.T.Attr / Kyoto.go #63
utgwkk
3
310
アセットのコンパイルについて
ojun9
0
130
速いWebフレームワークを作る
yusukebe
5
1.7k
GitHubとGitLabとAWS CodePipelineでCI/CDを組み比べてみた
satoshi256kbyte
4
250
奥深くて厄介な「改行」と仲良くなる20分
oguemon
1
560
Putting The Genie in the Bottle - A Crash Course on running LLMs on Android
iurysza
0
140
もうちょっといいRubyプロファイラを作りたい (2025)
osyoyu
1
450
Featured
See All Featured
Side Projects
sachag
455
43k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
113
20k
Practical Orchestrator
shlominoach
190
11k
BBQ
matthewcrist
89
9.8k
4 Signs Your Business is Dying
shpigford
184
22k
YesSQL, Process and Tooling at Scale
rocio
173
14k
Thoughts on Productivity
jonyablonski
70
4.8k
Navigating Team Friction
lara
189
15k
Imperfection Machines: The Place of Print at Facebook
scottboms
268
13k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
810
How to Think Like a Performance Engineer
csswizardry
26
1.9k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
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