本文整理汇总了Python中azure.storage.Entity.x方法的典型用法代码示例。如果您正苦于以下问题:Python Entity.x方法的具体用法?Python Entity.x怎么用?Python Entity.x使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类azure.storage.Entity
的用法示例。
在下文中一共展示了Entity.x方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TableService
# 需要导入模块: from azure.storage import Entity [as 别名]
# 或者: from azure.storage.Entity import x [as 别名]
my_key = 'BJNu+LXFAAoaSYm8GRNmaRcBvyM6OySC9BgKc8fr03Z9myqzVXUHtsJNpsfD7uI9a6PPi1tZwUMvkx9C2z/4Zg=='
table_service = TableService(account_name=my_account, account_key=my_key)
table_service.create_table('accel')
def analog_read(channel):
r = spi.xfer2([1, (8 + channel) << 4, 0])
adc_out = ((r[1]&3) << 8) + r[2]
return adc_out
while True:
x = analog_read(0)
y = analog_read(1)
z = analog_read(2)
accel = Entity()
accel.PartitionKey = 'accelValue'
accel.RowKey = '1'
accel.x = x
accel.y = y
accel.z = z
table_service.insert_or_replace_entity('accel', 'accelValue', '1', accel)
print("X=%d\tY=%d\tZ=%d" %(x, y, z))
#accelFrom = table_service.get_entity('accel', 'accelValue', '1')
#print(accelFrom.x)
time.sleep(1)