@@ -128,7 +128,7 @@ Please follow the `Installation`_ and then run the following:
128128
129129 p = Point(" my_measurement" ).tag(" location" , " Prague" ).field(" temperature" , 25.3 )
130130
131- write_api.write(bucket = bucket, org = " my-org " , record = p)
131+ write_api.write(bucket = bucket, record = p)
132132
133133 # # using Table structure
134134 tables = query_api.query(' from(bucket:"my-bucket") |> range(start: -10m)' )
@@ -435,7 +435,7 @@ The API also support streaming ``FluxRecord`` via `query_stream <https://github.
435435 _point1 = Point(" my_measurement" ).tag(" location" , " Prague" ).field(" temperature" , 25.3 )
436436 _point2 = Point(" my_measurement" ).tag(" location" , " New York" ).field(" temperature" , 24.3 )
437437
438- write_api.write(bucket = " my-bucket" , org = " my-org " , record = [_point1, _point2])
438+ write_api.write(bucket = " my-bucket" , record = [_point1, _point2])
439439
440440 """
441441 Query: using Table structure
@@ -514,7 +514,7 @@ The ``client`` is able to retrieve data in `Pandas DataFrame <https://pandas.pyd
514514 _point1 = Point(" my_measurement" ).tag(" location" , " Prague" ).field(" temperature" , 25.3 )
515515 _point2 = Point(" my_measurement" ).tag(" location" , " New York" ).field(" temperature" , 24.3 )
516516
517- write_api.write(bucket = " my-bucket" , org = " my-org " , record = [_point1, _point2])
517+ write_api.write(bucket = " my-bucket" , record = [_point1, _point2])
518518
519519 """
520520 Query: using Pandas DataFrame
@@ -624,7 +624,7 @@ If you would like to import gigabytes of data then use our multiprocessing examp
624624 """
625625 Write data into InfluxDB
626626 """
627- write_api.write(org = " my-org " , bucket = " my-bucket" , record = data)
627+ write_api.write(bucket = " my-bucket" , record = data)
628628 write_api.__del__ ()
629629
630630 """
@@ -634,7 +634,7 @@ If you would like to import gigabytes of data then use our multiprocessing examp
634634 ' |> range(start: 0, stop: now())' \
635635 ' |> filter(fn: (r) => r._measurement == "financial-analysis")' \
636636 ' |> max()'
637- result = client.query_api().query(org = " my-org " , query = query)
637+ result = client.query_api().query(query = query)
638638
639639 """
640640 Processing results
@@ -729,7 +729,7 @@ Efficiency write data from IOT sensor
729729 Create client that writes data into InfluxDB
730730 """
731731 _write_api = _db_client.write_api(write_options = WriteOptions(batch_size = 1 ))
732- _write_api.write(org = " my-org " , bucket = " my-bucket" , record = data)
732+ _write_api.write(bucket = " my-bucket" , record = data)
733733
734734
735735 """
0 commit comments