Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ To use this library, you need an authentication token provided by Navitia.io.
Create an instance of the NavitiaClient class with your authentication token:

```python
from navitia_client.client import NavitiaClient
from navitia_client import NavitiaClient

client = NavitiaClient(auth="YOUR_TOKEN_HERE")
```
Expand Down
3 changes: 3 additions & 0 deletions navitia_client/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# ruff: noqa: F401

from .client import NavitiaClient
3 changes: 3 additions & 0 deletions navitia_client/client/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# ruff: noqa: F401

from .navitia_client import NavitiaClient
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
version = "2.0.0"
version = "2.0.2"
requires-python = ">=3.10"
dependencies = [
"requests>=2.32, < 3",
Expand Down
Loading