Documentation

InfluxDB client libraries

This page documents an earlier version of InfluxDB OSS. InfluxDB 3 Core is the latest stable version.

InfluxDB v2 client libraries are language-specific packages that integrate with the InfluxDB v2 API and support both InfluxDB 1.8+ and InfluxDB 2.x.

If you’re getting started with InfluxDB v1, we recommend using the InfluxDB v1 client libraries and InfluxQL for InfluxDB 3 compatibility.

For more information about API and client library compatibility, see the InfluxDB v1 API reference.

Client libraries

Functionality varies between client libraries. Refer to client libraries on GitHub for specifics regarding each client library.

Arduino

C#

C++

Go

Java

JavaScript

PHP

Python

Ruby

Install and use a client library

To install and use the Python client library, follow the instructions below. To install and use other client libraries, refer to the client library documentation for detail.

Install and use the Python client library

  1. Install the Python client library.

    pip install influxdb-client
  2. Ensure that InfluxDB is running. If running InfluxDB locally, visit http://localhost:8086. (If using InfluxDB Cloud, visit the URL of your InfluxDB Cloud UI.)

  3. In your program, import the client library and use it to write data to InfluxDB. For example:

    import influxdb_client
    from influxdb_client.client.write_api import SYNCHRONOUS
  4. Define your database and token variables, and create a client and writer object. The InfluxDBClient object takes 2 parameters: url and token

    database = "<my-db>"
    token = "<my-token>"
    client = influxdb_client.InfluxDBClient(
    url="http://localhost:8086",
    token=token,

    The database (and retention policy, if applicable) are converted to a bucket data store compatible with InfluxDB v2.

  5. Instantiate a writer object using the client object and the write_api method. Use the write_api method to configure the writer object.

    client = influxdb_client.InfluxDBClient(url=url, token=token)
    write_api = client.write_api(write_options=SYNCHRONOUS)
  6. Create a point object and write it to InfluxDB using the write method of the API writer object. The write method requires three parameters: database, (optional) retention policy, and record.

    p = influxdb_client.Point("my_measurement").tag("location", "Prague").field("temperature", 25.3)
    write_api.write(database:rp, record=p)

Was this page helpful?

Thank you for your feedback!


New in InfluxDB 3.5

Key enhancements in InfluxDB 3.5 and the InfluxDB 3 Explorer 1.3.

See the Blog Post

InfluxDB 3.5 is now available for both Core and Enterprise, introducing custom plugin repository support, enhanced operational visibility with queryable CLI parameters and manual node management, stronger security controls, and general performance improvements.

InfluxDB 3 Explorer 1.3 brings powerful new capabilities including Dashboards (beta) for saving and organizing your favorite queries, and cache querying for instant access to Last Value and Distinct Value caches—making Explorer a more comprehensive workspace for time series monitoring and analysis.

For more information, check out:

InfluxDB Docker latest tag changing to InfluxDB 3 Core

On November 3, 2025, the latest tag for InfluxDB Docker images will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your Docker deployments.

If using Docker to install and run InfluxDB, the latest tag will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your Docker deployments. For example, if using Docker to run InfluxDB v2, replace the latest version tag with a specific version tag in your Docker pull command–for example:

docker pull influxdb:2