本文整理汇总了Python中azure.storage.blob.BlobService.get_blob_to_text方法的典型用法代码示例。如果您正苦于以下问题:Python BlobService.get_blob_to_text方法的具体用法?Python BlobService.get_blob_to_text怎么用?Python BlobService.get_blob_to_text使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类azure.storage.blob.BlobService
的用法示例。
在下文中一共展示了BlobService.get_blob_to_text方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: StateThread
# 需要导入模块: from azure.storage.blob import BlobService [as 别名]
# 或者: from azure.storage.blob.BlobService import get_blob_to_text [as 别名]
def StateThread():
global initializeNow
global isPrimary
while 1:
try:
currentHost = socket.gethostname()
blob_service = BlobService(account_name=azureStorageAccountName, account_key=azureStorageAccountKey)
if (initializeNow == True):
initializeNow = False
print("Initializing '" + currentHost + "' as primary.")
newContents = currentHost
blob_service.create_container(container)
blob_service.put_block_blob_from_text(container, blob, newContents)
while 1:
print("Downloading current state.")
currentContents = blob_service.get_blob_to_text(container, blob)
if (currentContents==currentHost):
isPrimary = True
print("isPrimary = True")
# we have now received status, if second thread NOT running, start
if (t2.isAlive() == False):
t2.start()
elif (currentContents!=currentHost and currentContents.count>0):
isPrimary = False
print("isPrimary = False")
# we have now received status, if second thread NOT running, start
if (t2.isAlive() == False):
t2.start()
sleep(.1)
except Exception as e:
print ("Error in MainStateThread: " + e)
开发者ID:mattmcloughlin,项目名称:AzureCustomLoadBalancerProbe,代码行数:35,代码来源:LoadBalancerCustomProbeForPrimaryBackup.py
示例2: BlobService
# 需要导入模块: from azure.storage.blob import BlobService [as 别名]
# 或者: from azure.storage.blob.BlobService import get_blob_to_text [as 别名]
# ###Step 1. Read in the Data from blob
# In[64]:
#Connection String
CONTAINERNAME = 'test1'
STORAGEACCOUNTNAME = 'weigstoragefordsvm'
STORAGEACCOUNTKEY = 'FUyNCM83pY4K2srBfZv4yDr6ru7d+BfbmHPPtucqS7EIgvUSQBG4zPkznpCuClWVOMitAQXG3aJFbvuD7mBkhQ=='
BLOBNAME = 'demo_ex_9_stratified_1_1000_copy.csv'
blob_service = BlobService(account_name=STORAGEACCOUNTNAME,account_key=STORAGEACCOUNTKEY)
#Read in as text
t1 = time.time()
data = blob_service.get_blob_to_text(CONTAINERNAME,BLOBNAME).split("\n")
t2 = time.time()
print(("It takes %s seconds to read in "+BLOBNAME) % (t2 - t1))
#Add column names and separate columns
colnames = ['medallion','hack_license','vendor_id','rate_code','store_and_fwd_flag','pickup_datetime','dropoff_datetime',
'passenger_count','trip_time_in_secs','trip_distance','pickup_longitude','pickup_latitude','dropoff_longitude','dropoff_latitude',
'payment_type', 'fare_amount', 'surcharge', 'mta_tax', 'tolls_amount', 'total_amount', 'tip_amount', 'tipped', 'tip_class', 'rownum']
df1 = pd.DataFrame([sub.split(",") for sub in data], columns = colnames)
#Change some columns to numeric
cols_2_float = ['trip_time_in_secs','pickup_longitude','pickup_latitude','dropoff_longitude','dropoff_latitude',
'fare_amount', 'surcharge','mta_tax','tolls_amount','total_amount','tip_amount', 'passenger_count','trip_distance'
,'tipped','tip_class','rownum']
for col in cols_2_float:
开发者ID:MahsaBadami,项目名称:Azure-MachineLearning-DataScience,代码行数:32,代码来源:Azure+Data+Lake+-Python+Scripts.py