@@ -12,10 +12,10 @@ Construction
1212
1313:class: `.Driver ` construction can either be carried out directly or via a `classmethod ` on the :class: `.GraphDatabase ` class.
1414
15- .. autoclass :: neo4j.v1. GraphDatabase
15+ .. autoclass :: neo4j.GraphDatabase
1616 :members:
1717
18- .. autoclass :: neo4j.v1. Driver(uri, **config)
18+ .. autoclass :: neo4j.Driver(uri, **config)
1919 :members:
2020
2121
@@ -42,7 +42,7 @@ This may be a standalone server or could be a specific member of a cluster.
4242
4343Connections established by a :class: `.DirectDriver ` are always made to the exact host and port detailed in the URI.
4444
45- .. autoclass :: neo4j.v1. DirectDriver
45+ .. autoclass :: neo4j.DirectDriver
4646 :members:
4747 :inherited-members:
4848
@@ -55,7 +55,7 @@ URI scheme:
5555Driver subclass:
5656 :class: `.RoutingDriver `
5757
58- .. autoclass :: neo4j.v1. RoutingDriver
58+ .. autoclass :: neo4j.RoutingDriver
5959 :members:
6060 :inherited-members:
6161
@@ -72,9 +72,9 @@ An authentication token for the server.
7272For basic auth, this can be a simple tuple, for example ``("neo4j", "password") ``.
7373Alternatively, one of the auth token functions can be used.
7474
75- .. autofunction :: neo4j.v1. basic_auth
75+ .. autofunction :: neo4j.basic_auth
7676
77- .. autofunction :: neo4j.v1. custom_auth
77+ .. autofunction :: neo4j.custom_auth
7878
7979``encrypted ``
8080-------------
@@ -88,14 +88,14 @@ Defaults to :py:const:`True` if TLS is available.
8888The trust level for certificates received from the server during TLS negotiation.
8989This setting does not have any effect if ``encrypted `` is set to :py:const: `False `.
9090
91- .. py :attribute :: neo4j.v1. TRUST_ALL_CERTIFICATES
91+ .. py :attribute :: neo4j.TRUST_ALL_CERTIFICATES
9292
9393 Trust any server certificate (default). This ensures that communication
9494 is encrypted but does not verify the server certificate against a
9595 certificate authority. This option is primarily intended for use with
9696 the default auto-generated server certificate.
9797
98- .. py :attribute :: neo4j.v1. TRUST_SYSTEM_CA_SIGNED_CERTIFICATES
98+ .. py :attribute :: neo4j.TRUST_SYSTEM_CA_SIGNED_CERTIFICATES
9999
100100 Trust server certificates that can be verified against the system
101101 certificate authority. This option is primarily intended for use with
@@ -173,7 +173,7 @@ For example:
173173
174174.. code-block :: python
175175
176- from neo4j.v1 import GraphDatabase
176+ from neo4j import GraphDatabase
177177
178178 class Application (object ):
179179
0 commit comments