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
75
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
210
Internet Explorer 10: 重新想像網站設計
ericsk
4
420
Windows App 開發嘉年華 Keynote
ericsk
0
89
Windows Store App 開發概論
ericsk
0
85
PyKinect: Body Iteration Application Development Using Python
ericsk
0
810
Windows Phone Mango 應用程式開發面面觀
ericsk
0
67
Wha's New in HTML5
ericsk
0
170
Windows Phone 7 開發指南
ericsk
0
47
Microsoft and jQuery
ericsk
0
67
Other Decks in Programming
See All in Programming
Cyrius ーLinux非依存にコンテナをネイティブ実行する専用OSー
n4mlz
0
130
ふつうの Rubyist、ちいさなデバイス、大きな一年
bash0c7
0
830
AI Assistants for Your Angular Solutions
manfredsteyer
PRO
0
130
株式会社 Sun terras カンパニーデック
sunterras
0
2.1k
Claude Codeセッション現状確認 2026福岡 / fukuoka-aicoding-00-beacon
monochromegane
4
410
モジュラモノリスにおける境界をGoのinternalパッケージで守る
magavel
0
3.5k
Windows on Ryzen and I
seosoft
0
250
New in Go 1.26 Implementing go fix in product development
sunecosuri
0
420
Claude Code Skill入門
mayahoney
0
200
DevinとClaude Code、SREの現場で使い倒してみた件
karia
1
1k
エラーログのマスキングの仕組みづくりに役立ったASTの話
kumoichi
0
180
Goの型安全性で実現する複数プロダクトの権限管理
ishikawa_pro
1
200
Featured
See All Featured
Building Adaptive Systems
keathley
44
2.9k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.3k
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
200
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.8k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Writing Fast Ruby
sferik
630
63k
Optimising Largest Contentful Paint
csswizardry
37
3.6k
Music & Morning Musume
bryan
47
7.1k
Six Lessons from altMBA
skipperchong
29
4.2k
Discover your Explorer Soul
emna__ayadi
2
1.1k
VelocityConf: Rendering Performance Case Studies
addyosmani
333
24k
The Pragmatic Product Professional
lauravandoore
37
7.2k
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