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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
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
90
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
68
Other Decks in Programming
See All in Programming
脱 雰囲気実装!AgentCoreを良い感じにWEBアプリケーションに組み込むために
takuyay0ne
3
400
存在論的プログラミング: 時間と存在を記述する
koriym
5
530
AI Assistants for YourAngular Solutions @Angular Graz, March 2026
manfredsteyer
PRO
0
110
へんな働き方
yusukebe
6
2.8k
ベクトル検索のフィルタを用いた機械学習モデルとの統合 / python-meetup-fukuoka-06-vector-attr
monochromegane
2
560
どんと来い、データベース信頼性エンジニアリング / Introduction to DBRE
nnaka2992
1
340
Cyrius ーLinux非依存にコンテナをネイティブ実行する専用OSー
n4mlz
0
250
Strategy for Finding a Problem for OSS: With Real Examples
kibitan
0
110
Everything Claude Code OSS詳細 — 5層構造の中身と導入方法
targe
0
150
Windows on Ryzen and I
seosoft
0
410
Nostalgia Meets Technology: Super Mario with TypeScript
manfredsteyer
PRO
0
110
飯MCP
yusukebe
0
390
Featured
See All Featured
How to audit for AI Accessibility on your Front & Back End
davetheseo
0
230
The Curious Case for Waylosing
cassininazir
0
280
Automating Front-end Workflow
addyosmani
1370
200k
For a Future-Friendly Web
brad_frost
183
10k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
860
YesSQL, Process and Tooling at Scale
rocio
174
15k
Being A Developer After 40
akosma
91
590k
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
3.3k
4 Signs Your Business is Dying
shpigford
187
22k
The Limits of Empathy - UXLibs8
cassininazir
1
270
Bash Introduction
62gerente
615
210k
Avoiding the “Bad Training, Faster” Trap in the Age of AI
tmiket
0
110
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