We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4af5c commit 2e88154Copy full SHA for 2e88154
neo4j/__init__.py
@@ -20,3 +20,12 @@
20
21
22
from .meta import version as __version__
23
+
24
+# Export current (v1) API. This should be updated to export the latest
25
+# version of the API when a new one is added. This gives the option to
26
+# `import neo4j.vX` for a specific version or `import neo4j` for the
27
+# latest.
28
+from .v1.constants import *
29
+from .v1.exceptions import *
30
+from .v1.session import *
31
+from .v1.types import *
0 commit comments