KEMBAR78
Building Python Applications on Windows Azure | PPTX
NCTU          CHT           Microsoft
                           2000 ~ 2004   2007 ~ 2011   2011 ~ ?




上官林傑 (Eric)                NTU           Taipei GTUG
Technical Evangelist, MS   2004 ~ 2006   2009 ~ 2010
http://www.windowsazure.com/zh-tw/
Azure
Azure
Azure
How Python Runs
1. Create Project

                                                         3. Publish




                    2. Add Azure Cloud Service Project
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)
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

Building Python Applications on Windows Azure