Created
November 8, 2021 23:29
-
-
Save anna-geller/a2b1dbbd91bbc7c355d294c6919336b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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