fastgpx 0.2.1__cp311-cp311-win_amd64.whl → 0.3.0__cp311-cp311-win_amd64.whl
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.
- fastgpx/__init__.pyi +1 -1
- fastgpx/fastgpx/__init__.pyi +8 -0
- fastgpx/fastgpx.cp311-win_amd64.pyd +0 -0
- {fastgpx-0.2.1.dist-info → fastgpx-0.3.0.dist-info}/METADATA +14 -1
- {fastgpx-0.2.1.dist-info → fastgpx-0.3.0.dist-info}/RECORD +9 -9
- {fastgpx-0.2.1.dist-info → fastgpx-0.3.0.dist-info}/WHEEL +1 -1
- lib/pkgconfig/pugixml.pc +3 -3
- lib/pugixml.lib +0 -0
- {fastgpx-0.2.1.dist-info → fastgpx-0.3.0.dist-info}/licenses/LICENSE.md +0 -0
fastgpx/__init__.pyi
CHANGED
@@ -9,4 +9,4 @@ from fastgpx.fastgpx import geo
|
|
9
9
|
from fastgpx.fastgpx import parse
|
10
10
|
from fastgpx.fastgpx import polyline
|
11
11
|
from . import fastgpx
|
12
|
-
__all__ = ['Bounds', 'Gpx', 'LatLong', 'Segment', 'TimeBounds', 'Track', '
|
12
|
+
__all__: list = ['Bounds', 'Gpx', 'LatLong', 'Segment', 'TimeBounds', 'Track', 'geo', 'parse', 'polyline']
|
fastgpx/fastgpx/__init__.pyi
CHANGED
@@ -101,8 +101,16 @@ class TimeBounds:
|
|
101
101
|
@typing.overload
|
102
102
|
def __init__(self, start_time: datetime.datetime | None, end_time: datetime.datetime | None) -> None:
|
103
103
|
...
|
104
|
+
@typing.overload
|
105
|
+
def add(self, datetime: datetime.datetime) -> None:
|
106
|
+
...
|
107
|
+
@typing.overload
|
108
|
+
def add(self, timebounds: TimeBounds) -> None:
|
109
|
+
...
|
104
110
|
def is_empty(self) -> bool:
|
105
111
|
...
|
112
|
+
def is_range(self) -> bool:
|
113
|
+
...
|
106
114
|
class Track:
|
107
115
|
comment: str | None
|
108
116
|
description: str | None
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fastgpx
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.3.0
|
4
4
|
Summary: An experimental Python library for parsing GPX files fast.
|
5
5
|
Keywords: gpx,parser,fast
|
6
6
|
Author: Thomas Thomassen
|
@@ -45,6 +45,19 @@ for track in gpx.tracks:
|
|
45
45
|
|
46
46
|
[Documentation](https://thomthom.github.io/fastgpx/)
|
47
47
|
|
48
|
+
## Requirements
|
49
|
+
|
50
|
+
* Python 3.11+ (Tested with 3.11, 3.12)
|
51
|
+
* C++23 Compiler
|
52
|
+
|
53
|
+
### Windows
|
54
|
+
|
55
|
+
* Tested with MSVC 17.12.4+ and Clang-cl 19+.
|
56
|
+
|
57
|
+
### Linux (Tested on Ubuntu)
|
58
|
+
|
59
|
+
* C++23 compatible runtime (GCC libstdc++ 14+ or Clang libc++ 18.1+)
|
60
|
+
|
48
61
|
## GPX/XML Performance (Background)
|
49
62
|
|
50
63
|
`gpxpy` appear to be the most popular GPX library for Python.
|
@@ -1,9 +1,9 @@
|
|
1
1
|
fastgpx/__init__.py,sha256=Dhn14Vj7rvcXHlI3d5U7YUJ9kpiNqwyN5jjx21vhX6U,305
|
2
|
-
fastgpx/__init__.pyi,sha256=
|
3
|
-
fastgpx/fastgpx/__init__.pyi,sha256=
|
2
|
+
fastgpx/__init__.pyi,sha256=nu4xDOF38W_idkVp06ot1snKPDVrEteFAnH9hyVGUrI,491
|
3
|
+
fastgpx/fastgpx/__init__.pyi,sha256=zh7fw_KDG1pefEj0Q18trQCJlKTALwMogRquo39vmAo,3687
|
4
4
|
fastgpx/fastgpx/geo.pyi,sha256=ZVwdoWV2S2T_flLjubZP5w-8KBpSdCu9_XJiv_Nk1C8,396
|
5
5
|
fastgpx/fastgpx/polyline.pyi,sha256=-rA0DhdBy_iifRD4Z_6fxolprXZAcjCsf7RbeVnn4sI,1619
|
6
|
-
fastgpx/fastgpx.cp311-win_amd64.pyd,sha256=
|
6
|
+
fastgpx/fastgpx.cp311-win_amd64.pyd,sha256=KovbhJx4j43MczmU16KGkQuWUcGT4Gf6WJz9dmS5AK4,1229824
|
7
7
|
fastgpx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
include/pugiconfig.hpp,sha256=jlfegptw715KDgZqHwl0-jcYoO5cerHNphaM9WDoJPg,2973
|
9
9
|
include/pugixml.hpp,sha256=geW_lTG67YQpTQy-OMqtttkNEPd8LXk-Lc6MX16vbCY,55813
|
@@ -11,9 +11,9 @@ lib/cmake/pugixml/pugixml-config-version.cmake,sha256=1JpMX7bIytKDIQj-0sYRyWi3Ou
|
|
11
11
|
lib/cmake/pugixml/pugixml-config.cmake,sha256=o26SUzcgGUIZx707opSfpPJulzF9qdZ5UhdxMPppIHE,1002
|
12
12
|
lib/cmake/pugixml/pugixml-targets-relwithdebinfo.cmake,sha256=Q4VX-_0WNB1rP4unAefSUak4UoJWdLzd4FxMMlmxHe4,902
|
13
13
|
lib/cmake/pugixml/pugixml-targets.cmake,sha256=Y_kk2s6vZuC3KKzBrBNUDVSHM-T_27jYwjl09j8amZU,4712
|
14
|
-
lib/pkgconfig/pugixml.pc,sha256=
|
15
|
-
lib/pugixml.lib,sha256=
|
16
|
-
fastgpx-0.
|
17
|
-
fastgpx-0.
|
18
|
-
fastgpx-0.
|
19
|
-
fastgpx-0.
|
14
|
+
lib/pkgconfig/pugixml.pc,sha256=zfTxRAVV1V7e4iKFdgPs_W0yqtrTFDIWHL8JrZpDMGA,457
|
15
|
+
lib/pugixml.lib,sha256=rz6eXgVHNZLOjtI_pSkWDnPPQlOr5L71bl6alDO7ROk,1502438
|
16
|
+
fastgpx-0.3.0.dist-info/METADATA,sha256=f1YedSwVkqjM0bydc-DQLestMzliTIHLnkGtnDJ9oyc,4318
|
17
|
+
fastgpx-0.3.0.dist-info/WHEEL,sha256=RKWfL8d6R7y9dzb5_AyhPLMoBaKZaDpOTwy7YMg9zGI,106
|
18
|
+
fastgpx-0.3.0.dist-info/licenses/LICENSE.md,sha256=uiiKRcSY4AXOaDKTBOVF_1FW-8W6ATVoXYPm3UTOpu0,1111
|
19
|
+
fastgpx-0.3.0.dist-info/RECORD,,
|
lib/pkgconfig/pugixml.pc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
prefix=C:/Users/runneradmin/AppData/Local/Temp/
|
1
|
+
prefix=C:/Users/runneradmin/AppData/Local/Temp/tmp0ug85guu/wheel/platlib
|
2
2
|
exec_prefix=${prefix}
|
3
|
-
includedir=C:/Users/runneradmin/AppData/Local/Temp/
|
4
|
-
libdir=C:/Users/runneradmin/AppData/Local/Temp/
|
3
|
+
includedir=C:/Users/runneradmin/AppData/Local/Temp/tmp0ug85guu/wheel/platlib/include
|
4
|
+
libdir=C:/Users/runneradmin/AppData/Local/Temp/tmp0ug85guu/wheel/platlib/lib
|
5
5
|
|
6
6
|
Name: pugixml
|
7
7
|
Description: Light-weight, simple and fast XML parser for C++ with XPath support.
|
lib/pugixml.lib
CHANGED
Binary file
|
File without changes
|