Skip to content

Commit a66ac30

Browse files
Update README.md
1 parent 7ef44e9 commit a66ac30

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,16 @@ with InfluxDBClient3.InfluxDBClient3(
131131

132132
```
133133

134+
### Pandas DF
135+
```python
136+
client._write_api.write(bucket="pokemon-codex", record=pd_df, data_frame_measurement_name='caught', data_frame_tag_columns=['trainer', 'id', 'num'], data_frame_timestamp_column='timestamp')
137+
```
138+
139+
### Polars DF
140+
```python
141+
client._write_api.write(bucket="pokemon-codex", record=pl_df, data_frame_measurement_name='caught', data_frame_tag_columns=['trainer', 'id', 'num'], data_frame_timestamp_column='timestamp')
142+
```
143+
134144
## Querying
135145

136146
### Querying with SQL

0 commit comments

Comments
 (0)