FlightRadarAPI 1.3.33__tar.gz → 1.3.34__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.
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/__init__.py +1 -1
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/PKG-INFO +3 -1
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/README.md +2 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/.flake8 +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/.gitignore +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/api.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/core.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/entities/__init__.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/entities/airport.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/entities/entity.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/entities/flight.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/errors.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/FlightRadar24/request.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/LICENSE +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/pyproject.toml +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/requirements.txt +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/tests/conftest.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/tests/package.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/tests/test_api.py +0 -0
- {flightradarapi-1.3.33 → flightradarapi-1.3.34}/tests/util.py +0 -0
|
@@ -12,7 +12,7 @@ https://www.flightradar24.com/terms-and-conditions
|
|
|
12
12
|
"""
|
|
13
13
|
|
|
14
14
|
__author__ = "Jean Loui Bernard Silva de Jesus"
|
|
15
|
-
__version__ = "1.3.
|
|
15
|
+
__version__ = "1.3.34"
|
|
16
16
|
|
|
17
17
|
from .api import FlightRadar24API, FlightTrackerConfig
|
|
18
18
|
from .entities import Airport, Entity, Flight
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: FlightRadarAPI
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.34
|
|
4
4
|
Summary: SDK for FlightRadar24
|
|
5
5
|
Project-URL: Homepage, https://github.com/JeanExtreme002/FlightRadarAPI
|
|
6
6
|
Project-URL: Source Code, https://github.com/JeanExtreme002/FlightRadarAPI
|
|
@@ -29,6 +29,8 @@ Unofficial SDK for [FlightRadar24](https://www.flightradar24.com/) for Python 3
|
|
|
29
29
|
|
|
30
30
|
This SDK should only be used for your own educational purposes. If you are interested in accessing Flightradar24 data commercially, please contact business@fr24.com. See more information at [Flightradar24's terms and conditions](https://www.flightradar24.com/terms-and-conditions).
|
|
31
31
|
|
|
32
|
+
**Official FR24 API**: https://fr24api.flightradar24.com/
|
|
33
|
+
|
|
32
34
|
[](https://github.com/JeanExtreme002/FlightRadarAPI/actions)
|
|
33
35
|
[](https://pypi.org/project/FlightRadarAPI/)
|
|
34
36
|
[](https://github.com/JeanExtreme002/FlightRadarAPI)
|
|
@@ -3,6 +3,8 @@ Unofficial SDK for [FlightRadar24](https://www.flightradar24.com/) for Python 3
|
|
|
3
3
|
|
|
4
4
|
This SDK should only be used for your own educational purposes. If you are interested in accessing Flightradar24 data commercially, please contact business@fr24.com. See more information at [Flightradar24's terms and conditions](https://www.flightradar24.com/terms-and-conditions).
|
|
5
5
|
|
|
6
|
+
**Official FR24 API**: https://fr24api.flightradar24.com/
|
|
7
|
+
|
|
6
8
|
[](https://github.com/JeanExtreme002/FlightRadarAPI/actions)
|
|
7
9
|
[](https://pypi.org/project/FlightRadarAPI/)
|
|
8
10
|
[](https://github.com/JeanExtreme002/FlightRadarAPI)
|
|
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
|