apyefa 1.0.0__tar.gz → 1.0.1__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.
Potentially problematic release.
This version of apyefa might be problematic. Click here for more details.
- {apyefa-1.0.0 → apyefa-1.0.1}/PKG-INFO +2 -2
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa.egg-info/PKG-INFO +2 -2
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa.egg-info/requires.txt +1 -1
- {apyefa-1.0.0 → apyefa-1.0.1}/pyproject.toml +2 -2
- {apyefa-1.0.0 → apyefa-1.0.1}/.github/labeler.yml +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/.github/release-drafter.yml +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/.github/workflows/labeler.yml +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/.github/workflows/python-package.yml +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/.github/workflows/release_drafter.yml +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/.gitignore +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/.vscode/settings.json +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/LICENSE +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/README.md +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/__init__.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/client.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/__init__.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_add_info.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_coord.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_departures.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_geoobject.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_line_list.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_line_stop.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_serving_lines.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_stop_finder.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_stop_list.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_system_info.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/command_trip.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/parsers/__init__.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/parsers/parser.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/parsers/rapid_json_parser.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/commands/parsers/xml_parser.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/data_classes.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/exceptions.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa/helpers.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa.egg-info/SOURCES.txt +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa.egg-info/dependency_links.txt +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/apyefa.egg-info/top_level.txt +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/examples.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/setup.cfg +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/conftest.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/integration/test_endpoints.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/__init__.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/parsers/__init__.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/parsers/test_json_parser.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/parsers/test_xml_parser.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/test_cmd.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/test_cmd_departures.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/test_cmd_line_list.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/test_cmd_line_stop.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/test_cmd_serving_lines.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/test_cmd_stop_finder.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/test_cmd_stop_list.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/commands/test_cmd_system_info.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/data_classes/__init__.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/data_classes/test_departure.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/data_classes/test_location.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/data_classes/test_system_info.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/data_classes/test_transportation.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/test_client.py +0 -0
- {apyefa-1.0.0 → apyefa-1.0.1}/tests/unit/test_helpers.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apyefa
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Python API for EFA(Elektronische Fahrplanauskunft) async requests
|
|
5
5
|
Author-email: Alex Jung <jungdevelop@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -32,7 +32,7 @@ Keywords: efa,public transport,traffic
|
|
|
32
32
|
Requires-Python: >=3.11
|
|
33
33
|
Description-Content-Type: text/markdown
|
|
34
34
|
License-File: LICENSE
|
|
35
|
-
Requires-Dist: aiohttp>=3.11.
|
|
35
|
+
Requires-Dist: aiohttp>=3.11.2
|
|
36
36
|
Requires-Dist: voluptuous>=0.15.2
|
|
37
37
|
Requires-Dist: tzdata>=2024.2
|
|
38
38
|
Provides-Extra: tests
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apyefa
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Python API for EFA(Elektronische Fahrplanauskunft) async requests
|
|
5
5
|
Author-email: Alex Jung <jungdevelop@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -32,7 +32,7 @@ Keywords: efa,public transport,traffic
|
|
|
32
32
|
Requires-Python: >=3.11
|
|
33
33
|
Description-Content-Type: text/markdown
|
|
34
34
|
License-File: LICENSE
|
|
35
|
-
Requires-Dist: aiohttp>=3.11.
|
|
35
|
+
Requires-Dist: aiohttp>=3.11.2
|
|
36
36
|
Requires-Dist: voluptuous>=0.15.2
|
|
37
37
|
Requires-Dist: tzdata>=2024.2
|
|
38
38
|
Provides-Extra: tests
|
|
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = "apyefa"
|
|
10
|
-
version = "1.0.
|
|
10
|
+
version = "1.0.1"
|
|
11
11
|
requires-python = ">= 3.11"
|
|
12
12
|
description = "Python API for EFA(Elektronische Fahrplanauskunft) async requests"
|
|
13
13
|
authors = [
|
|
@@ -18,7 +18,7 @@ license = {file = "LICENSE"}
|
|
|
18
18
|
keywords = ["efa", "public transport", "traffic"]
|
|
19
19
|
|
|
20
20
|
dependencies = [
|
|
21
|
-
"aiohttp>=3.11.
|
|
21
|
+
"aiohttp>=3.11.2",
|
|
22
22
|
"voluptuous>=0.15.2",
|
|
23
23
|
"tzdata>=2024.2"
|
|
24
24
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|