def p_table (stations, datapoints): # Populate Table
with db_r.Table('weatherstation_data').batch_writer() as batch:
for station in trange(stations, desc='Stations'):
for datapoint in trange(datapoints, desc='Datapoints'):
item = item_gen(station)
batch.put_item(Item=item)
#------------------------------------------------------------------------------
weatherstation_data_populate.py 文件源码
python
阅读 20
收藏 0
点赞 0
评论 0
评论列表
文章目录