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
200
Internet Explorer 10: 重新想像網站設計
ericsk
4
410
Windows App 開發嘉年華 Keynote
ericsk
0
82
Windows Store App 開發概論
ericsk
0
81
PyKinect: Body Iteration Application Development Using Python
ericsk
0
780
Windows Phone Mango 應用程式開發面面觀
ericsk
0
62
Wha's New in HTML5
ericsk
0
160
Windows Phone 7 開發指南
ericsk
0
43
Microsoft and jQuery
ericsk
0
64
Other Decks in Programming
See All in Programming
Team operations that are not burdened by SRE
kazatohiei
1
210
GraphRAGの仕組みまるわかり
tosuri13
8
480
Create a website using Spatial Web
akkeylab
0
300
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
380
Gleamという選択肢
comamoca
6
760
技術同人誌をMCP Serverにしてみた
74th
1
350
LINEヤフー データグループ紹介
lycorp_recruit_jp
0
890
datadog dash 2025 LLM observability for reliability and stability
ivry_presentationmaterials
0
110
LT 2025-06-30: プロダクトエンジニアの役割
yamamotok
0
430
エンジニア向け採用ピッチ資料
inusan
0
160
NPOでのDevinの活用
codeforeveryone
0
190
GoのGenericsによるslice操作との付き合い方
syumai
3
690
Featured
See All Featured
Six Lessons from altMBA
skipperchong
28
3.8k
Designing Experiences People Love
moore
142
24k
Bash Introduction
62gerente
614
210k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.8k
Making Projects Easy
brettharned
116
6.3k
Code Review Best Practice
trishagee
68
18k
It's Worth the Effort
3n
185
28k
Scaling GitHub
holman
459
140k
Speed Design
sergeychernyshev
32
1k
Visualization
eitanlees
146
16k
Optimizing for Happiness
mojombo
379
70k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
46
9.6k
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