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
73
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
420
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
64
Wha's New in HTML5
ericsk
0
160
Windows Phone 7 開發指南
ericsk
0
45
Microsoft and jQuery
ericsk
0
65
Other Decks in Programming
See All in Programming
Go言語はstack overflowの夢を見るか?
logica0419
0
640
ドメイン駆動設計のエッセンス
masuda220
PRO
14
5.6k
EMこそClaude Codeでコード調査しよう
shibayu36
0
460
GC25 Recap: The Code You Reviewed is Not the Code You Built / #newt_gophercon_tour
mazrean
0
120
Leading Effective Engineering Teams in the AI Era
addyosmani
7
660
alien-signals と自作 OSS で実現する フレームワーク非依存な ロジック共通化の探求 / Exploring Framework-Agnostic Logic Sharing with alien-signals and Custom OSS
aoseyuu
2
760
フロントエンド開発のためのブラウザ組み込みAI入門
masashi
7
3.6k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
530
Devoxx BE - Local Development in the AI Era
kdubois
0
150
kiroとCodexで最高のSpec駆動開発を!!数時間で web3ネイティブなミニゲームを作ってみたよ!
mashharuki
0
950
Goで実践するドメイン駆動開発 AIと歩み始めた新規プロダクト開発の現在地
imkaoru
4
920
CSC305 Lecture 09
javiergs
PRO
0
320
Featured
See All Featured
How GitHub (no longer) Works
holman
315
140k
Music & Morning Musume
bryan
46
6.9k
Gamification - CAS2011
davidbonilla
81
5.5k
Principles of Awesome APIs and How to Build Them.
keavy
127
17k
Product Roadmaps are Hard
iamctodd
PRO
55
11k
Speed Design
sergeychernyshev
32
1.2k
A Tale of Four Properties
chriscoyier
161
23k
For a Future-Friendly Web
brad_frost
180
10k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
10
620
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
116
20k
Why You Should Never Use an ORM
jnunemaker
PRO
59
9.6k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
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