Skip to content

Commit 38afc03

Browse files
authored
Data types
I wanted to know supported data types of influxDB. I know it's in docs, but this might help too!!
1 parent 17c1e1e commit 38afc03

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/tutorial.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ def main(host='localhost', port=8086):
1919
},
2020
"time": "2009-11-10T23:00:00Z",
2121
"fields": {
22-
"value": 0.64
22+
"Float_value": 0.64,
23+
"Int_value": 3,
24+
"String_value": "Text",
25+
"Bool_value": True
2326
}
2427
}
2528
]

0 commit comments

Comments
 (0)