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
67
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
190
Internet Explorer 10: 重新想像網站設計
ericsk
4
410
Windows App 開發嘉年華 Keynote
ericsk
0
79
Windows Store App 開發概論
ericsk
0
81
PyKinect: Body Iteration Application Development Using Python
ericsk
0
720
Windows Phone Mango 應用程式開發面面觀
ericsk
0
59
Wha's New in HTML5
ericsk
0
160
Windows Phone 7 開發指南
ericsk
0
36
Microsoft and jQuery
ericsk
0
63
Other Decks in Programming
See All in Programming
初めてDefinitelyTypedにPRを出した話
syumai
0
430
Outline View in SwiftUI
1024jp
1
340
3rd party scriptでもReactを使いたい! Preact + Reactのハイブリッド開発
righttouch
PRO
1
610
ECS Service Connectのこれまでのアップデートと今後のRoadmapを見てみる
tkikuc
2
260
Modular Monolith Monorepo ~シンプルさを保ちながらmonorepoのメリットを最大化する~
yuisakamoto
9
960
ふかぼれ!CSSセレクターモジュール / Fukabore! CSS Selectors Module
petamoriken
0
150
RubyLSPのマルチバイト文字対応
notfounds
0
120
React への依存を最小にするフロントエンド設計
takonda
19
5k
Nurturing OpenJDK distribution: Eclipse Temurin Success History and plan
ivargrimstad
0
1.1k
イマのCSSでできる インタラクション最前線 + CSS最新情報
clockmaker
5
2.9k
WebAssembly Unleashed: Powering Server-Side Applications
chrisft25
0
120
광고 소재 심사 과정에 AI를 도입하여 광고 서비스 생산성 향상시키기
kakao
PRO
0
180
Featured
See All Featured
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
329
21k
Done Done
chrislema
181
16k
Side Projects
sachag
452
42k
Gamification - CAS2011
davidbonilla
80
5k
Large-scale JavaScript Application Architecture
addyosmani
510
110k
Intergalactic Javascript Robots from Outer Space
tanoku
269
27k
[RailsConf 2023] Rails as a piece of cake
palkan
52
4.9k
Speed Design
sergeychernyshev
25
620
Fashionably flexible responsive web design (full day workshop)
malarkey
405
65k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
229
52k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
31
2.7k
GraphQLの誤解/rethinking-graphql
sonatard
67
10k
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