MBTAclient 0.2.4__tar.gz → 0.2.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/PKG-INFO +1 -1
  2. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/pyproject.toml +1 -1
  3. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/MBTAclient.egg-info/PKG-INFO +1 -1
  4. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/MBTAclient.egg-info/SOURCES.txt +1 -0
  5. mbtaclient-0.2.5/src/mbtaclient/__init__.py +31 -0
  6. mbtaclient-0.2.5/src/mbtaclient/__version__.py +1 -0
  7. mbtaclient-0.2.4/src/mbtaclient/__init__.py +0 -0
  8. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/LICENSE +0 -0
  9. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/README.md +0 -0
  10. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/setup.cfg +0 -0
  11. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/MBTAclient.egg-info/dependency_links.txt +0 -0
  12. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/MBTAclient.egg-info/requires.txt +0 -0
  13. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/MBTAclient.egg-info/top_level.txt +0 -0
  14. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/base_handler.py +0 -0
  15. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/journey.py +0 -0
  16. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/journey_stop.py +0 -0
  17. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/journeys_handler.py +0 -0
  18. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/mbta_alert.py +0 -0
  19. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/mbta_client.py +0 -0
  20. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/mbta_prediction.py +0 -0
  21. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/mbta_route.py +0 -0
  22. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/mbta_schedule.py +0 -0
  23. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/mbta_stop.py +0 -0
  24. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/mbta_trip.py +0 -0
  25. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/mbta_utils.py +0 -0
  26. {mbtaclient-0.2.4 → mbtaclient-0.2.5}/src/mbtaclient/trip_handler.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MBTAclient
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: A Python client for interacting with the MBTA API
5
5
  Author-email: Luca Chiabrera <luca.chiabrera@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/chiabre/MBTAclient
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "MBTAclient"
7
- version = "0.2.4"
7
+ version = "0.2.5"
8
8
  description = "A Python client for interacting with the MBTA API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: MBTAclient
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: A Python client for interacting with the MBTA API
5
5
  Author-email: Luca Chiabrera <luca.chiabrera@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/chiabre/MBTAclient
@@ -7,6 +7,7 @@ src/MBTAclient.egg-info/dependency_links.txt
7
7
  src/MBTAclient.egg-info/requires.txt
8
8
  src/MBTAclient.egg-info/top_level.txt
9
9
  src/mbtaclient/__init__.py
10
+ src/mbtaclient/__version__.py
10
11
  src/mbtaclient/base_handler.py
11
12
  src/mbtaclient/journey.py
12
13
  src/mbtaclient/journey_stop.py
@@ -0,0 +1,31 @@
1
+ # mbtaclient/__init__.py
2
+
3
+
4
+ from .journey_stop import JourneyStop
5
+ from .journey import Journey
6
+ from .journeys_handler import JourneysHandler
7
+ from .mbta_alert import MBTAAlert
8
+ from .mbta_client import MBTAClient
9
+ from .mbta_prediction import MBTAPrediction
10
+ from .mbta_route import MBTARoute
11
+ from .mbta_schedule import MBTASchedule
12
+ from .mbta_stop import MBTAStop
13
+ from .mbta_trip import MBTATrip
14
+ from .trip_handler import TripHandler
15
+ from .__version__ import __version__
16
+
17
+ __all__ = [
18
+ "JourneyStop",
19
+ "Journey",
20
+ "JourneysHandler",
21
+ "MBTAAlert",
22
+ "MBTAClient",
23
+ "MBTARoute",
24
+ "MBTATrip",
25
+ "MBTAStop",
26
+ "MBTASchedule",
27
+ "MBTAPrediction",
28
+ "TripHandler",
29
+ ]
30
+
31
+ __version__ = __version__
@@ -0,0 +1 @@
1
+ __version__ = "0.2.5"
File without changes
File without changes
File without changes
File without changes