Skip to content

Commit 9062cf5

Browse files
added a warning about encrypted connection to Neo4j 4.0 (#375)
1 parent 0e5a871 commit 9062cf5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ The official Neo4j driver for Python supports Neo4j 3.0 and above and Python ver
99
Python 2 support is deprecated and will be discontinued in the 2.x series driver releases.
1010

1111

12+
.. warning::
13+
14+
Connecting to Neo4j 4.X requires an unencrypted connection by default.
15+
16+
17+
.. code-block:: python
18+
19+
driver = GraphDatabase.driver("bolt://localhost:7687", auth=("neo4j", "password"), encrypted=False)
20+
1221
Quick Example
1322
=============
1423

0 commit comments

Comments
 (0)