neo4j / neo4j-python-driver

Neo4j Bolt driver for Python
https://neo4j.com/docs/api/python-driver/current/
Other
898 stars 186 forks source link

Add support for Bolt 5.4 an API telemetry #965

Closed robsdedude closed 1 year ago

robsdedude commented 1 year ago

Starting with Bolt 5.4, the driver will, by default, send anonymous API usage statistics to the server if requested.

The driver configuration telemetry_disabled=True can be used to disable this.

import neo4j

with neo4j.GraphDatabase.driver(..., telemetry_disabled=True) as driver:
    ...

The driver transmits the following information:

Depends on: