I'm trying to create a table using Azure storage account, but I got following error.
Traceback (most recent call last):
File "./table.py", line 10, in <module>
table_service.create_table('tasktable')
File "/usr/local/lib/python2.7/dist-packages/azure/storage/table/tableservice.py", line 525, in create_table
_dont_fail_on_exist(ex)
File "/usr/local/lib/python2.7/dist-packages/azure/storage/_error.py", line 81, in _dont_fail_on_exist
raise error
azure.common.AzureHttpError: Not Implemented
{"odata.error":{"code":"NotImplemented","message":{"lang":"en-US","value":"The requested operation is not implemented on the specified resource.\nRequestId:xxxxxxxxxxxxxxx\nTime:2017-02-06T09:23:30.6719100Z"}}}
My code is here:
#!/usr/bin/env python
from azure.storage.table import TableService, TablePermissions #Entity
from azure.storage.blob import BlockBlobService
table_service = TableService(account_name='myAccount', account_key='myKey')
table_service.create_table('tasktable')
task = Entity()
task.PartitionKey = 'tasksSeattle'
task.RowKey = '2'
task.description = 'Wash the car'
task.priority = 100
table_service.insert_entity('tasktable', task)
Someone help me.