Skip to content

Instantly share code, notes, and snippets.

@anna-geller
Created November 8, 2021 23:29
Show Gist options
  • Save anna-geller/a2b1dbbd91bbc7c355d294c6919336b2 to your computer and use it in GitHub Desktop.
Save anna-geller/a2b1dbbd91bbc7c355d294c6919336b2 to your computer and use it in GitHub Desktop.
records = [
{
"Time": now,
"TimeUnit": "MILLISECONDS",
"Dimensions": [{"Name": "crypto", "Value": "BTC"}],
"MeasureName": "Price",
"MeasureValue": str(btc),
"MeasureValueType": "DOUBLE",
},
{
"Time": now,
"TimeUnit": "MILLISECONDS",
"Dimensions": [{"Name": "crypto", "Value": "ETH"}],
"MeasureName": "Price",
"MeasureValue": str(eth),
"MeasureValueType": "DOUBLE",
},
{
"Time": now,
"TimeUnit": "MILLISECONDS",
"Dimensions": [{"Name": "crypto", "Value": "DASH"}],
"MeasureName": "Price",
"MeasureValue": str(dash),
"MeasureValueType": "DOUBLE",
},
{
"Time": now,
"TimeUnit": "MILLISECONDS",
"Dimensions": [{"Name": "crypto", "Value": "REP"}],
"MeasureName": "Price",
"MeasureValue": str(rep),
"MeasureValueType": "DOUBLE",
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment