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
84
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
AI Ramen Fight
yusukebe
0
110
AIのメモリー
watany
11
970
Googleの新しいコーディングAIエージェントJulesを使ってみた
tonionagauzzi
0
120
코딩 에이전트 체크리스트: Claude Code ver.
nacyot
0
990
顧客の画像データをテラバイト単位で配信する 画像サーバを WebP にした際に起こった課題と その対応策 ~継続的な取り組みを添えて~
takutakahashi
4
1.4k
[SRE NEXT] 複雑なシステムにおけるUser Journey SLOの導入
yakenji
0
750
抽象化という思考のツール - 理解と活用 - / Abstraction-as-a-Tool-for-Thinking
shin1x1
1
730
Gemini CLIの"強み"を知る! Gemini CLIとClaude Codeを比較してみた!
kotahisafuru
2
160
知って得する@cloudflare_vite-pluginのあれこれ
chimame
1
120
iOS開発スターターキットの作り方
akidon0000
0
180
可変性を制する設計: 構造と振る舞いから考える概念モデリングとその実装
a_suenami
3
610
バイブコーディング超えてバイブデプロイ〜CloudflareMCPで実現する、未来のアプリケーションデリバリー〜
azukiazusa1
2
710
Featured
See All Featured
We Have a Design System, Now What?
morganepeng
53
7.7k
The Straight Up "How To Draw Better" Workshop
denniskardys
235
140k
Facilitating Awesome Meetings
lara
54
6.5k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
21
1.3k
Designing for Performance
lara
610
69k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Become a Pro
speakerdeck
PRO
29
5.4k
A better future with KSS
kneath
238
17k
Building Applications with DynamoDB
mza
95
6.5k
YesSQL, Process and Tooling at Scale
rocio
173
14k
GraphQLの誤解/rethinking-graphql
sonatard
71
11k
How to Ace a Technical Interview
jacobian
278
23k
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