ada-url 1.24.0__cp312-cp312-macosx_11_0_arm64.whl → 1.29.0__cp312-cp312-macosx_11_0_arm64.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.
- ada_url/__init__.py +2 -0
- ada_url/_ada_wrapper.abi3.so +0 -0
- ada_url/ada.cpp +2527 -1931
- ada_url/ada.h +1312 -589
- ada_url/ada_adapter.py +3 -0
- ada_url/ada_c.h +10 -0
- {ada_url-1.24.0.dist-info → ada_url-1.29.0.dist-info}/METADATA +14 -15
- ada_url-1.29.0.dist-info/RECORD +14 -0
- {ada_url-1.24.0.dist-info → ada_url-1.29.0.dist-info}/WHEEL +1 -1
- ada_url-1.24.0.dist-info/RECORD +0 -14
- {ada_url-1.24.0.dist-info → ada_url-1.29.0.dist-info}/licenses/LICENSE +0 -0
- {ada_url-1.24.0.dist-info → ada_url-1.29.0.dist-info}/top_level.txt +0 -0
ada_url/ada_adapter.py
CHANGED
ada_url/ada_c.h
CHANGED
|
@@ -184,4 +184,14 @@ ada_string_pair ada_search_params_entries_iter_next(
|
|
|
184
184
|
bool ada_search_params_entries_iter_has_next(
|
|
185
185
|
ada_url_search_params_entries_iter result);
|
|
186
186
|
|
|
187
|
+
// Definitions for Ada's version number.
|
|
188
|
+
typedef struct {
|
|
189
|
+
int major;
|
|
190
|
+
int minor;
|
|
191
|
+
int revision;
|
|
192
|
+
} ada_version_components;
|
|
193
|
+
|
|
194
|
+
const char* ada_get_version();
|
|
195
|
+
ada_version_components ada_get_version_components();
|
|
196
|
+
|
|
187
197
|
#endif // ADA_C_H
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ada-url
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.29.0
|
|
4
4
|
Summary: URL parser and manipulator based on the WHAT WG URL standard
|
|
5
5
|
Author-email: Bo Bayles <bo@bbayles.com>
|
|
6
|
-
License: Apache
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://www.ada-url.com/
|
|
8
8
|
Project-URL: Documentation, https://ada-url.readthedocs.io
|
|
9
9
|
Project-URL: Repository, https://github.com/ada-url/ada-python
|
|
10
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
10
|
Classifier: Programming Language :: Python :: 3
|
|
12
11
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.10
|
|
14
13
|
Description-Content-Type: text/x-rst
|
|
15
14
|
License-File: LICENSE
|
|
16
15
|
Requires-Dist: cffi
|
|
@@ -19,9 +18,6 @@ Dynamic: license-file
|
|
|
19
18
|
ada-url
|
|
20
19
|
========
|
|
21
20
|
|
|
22
|
-
The `urlib.parse` module in Python does not follow the legacy RFC 3978 standard nor
|
|
23
|
-
does it follow the newer WHATWG URL specification. It is also relatively slow.
|
|
24
|
-
|
|
25
21
|
This is ``ada_url``, a fast standard-compliant Python library for working with URLs based on the ``Ada`` URL
|
|
26
22
|
parser.
|
|
27
23
|
|
|
@@ -45,7 +41,7 @@ Parsing URLs
|
|
|
45
41
|
^^^^^^^^^^^^
|
|
46
42
|
|
|
47
43
|
The ``URL`` class is intended to match the one described in the
|
|
48
|
-
`WHATWG URL spec <https://url.spec.whatwg.org/#url-class>`_
|
|
44
|
+
`WHATWG URL spec <https://url.spec.whatwg.org/#url-class>`_.
|
|
49
45
|
|
|
50
46
|
.. code-block:: python
|
|
51
47
|
|
|
@@ -145,7 +141,8 @@ that it properly encodes IDNs and resolves paths:
|
|
|
145
141
|
>>> parsed_url.pathname
|
|
146
142
|
'/path2/'
|
|
147
143
|
|
|
148
|
-
Contrast that with the Python standard library's ``
|
|
144
|
+
Contrast that with the Python standard library's ``urllib.parse`` module, which loosely
|
|
145
|
+
follows the older `RFC 3978 <https://datatracker.ietf.org/doc/html/rfc3978>`__ standard:
|
|
149
146
|
|
|
150
147
|
.. code-block:: python
|
|
151
148
|
|
|
@@ -156,11 +153,13 @@ Contrast that with the Python standard library's ``urlib.parse`` module:
|
|
|
156
153
|
>>> parsed_url.path
|
|
157
154
|
'/./path/../path2/'
|
|
158
155
|
|
|
159
|
-
|
|
160
|
-
|
|
156
|
+
Performance
|
|
157
|
+
-----------
|
|
161
158
|
|
|
162
159
|
This package uses `CFFI <https://github.com/ada-url/ada-python/>`__ to call
|
|
163
|
-
the ``Ada`` library's functions, which
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
160
|
+
the ``Ada`` C library's functions, which makes it faster than the Python standard
|
|
161
|
+
library's ``urllib.parse`` module for most applications.
|
|
162
|
+
|
|
163
|
+
An alternative package, `can_ada <https://github.com/tktech/can_ada>`__, uses
|
|
164
|
+
`pybind11 <https://pybind11.readthedocs.io/en/stable/>`__ to interact with the ``Ada``
|
|
165
|
+
C++ library functions, which is even faster.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
ada_url-1.29.0.dist-info/RECORD,,
|
|
2
|
+
ada_url-1.29.0.dist-info/WHEEL,sha256=PGEjBn_DBy4zY34qc1eLGGEnKZ7LwPHqmx2QF5YAkUc,110
|
|
3
|
+
ada_url-1.29.0.dist-info/top_level.txt,sha256=8YlQkS2I0hQyH611C1dxEv7gVFgeljn-aQcwaQL8qcY,49
|
|
4
|
+
ada_url-1.29.0.dist-info/METADATA,sha256=-TJFW_Rzld-0PiQtI2Sd6LpDATNKA8iBlx0eaN4HyLs,4773
|
|
5
|
+
ada_url-1.29.0.dist-info/licenses/LICENSE,sha256=9D0P_RQ1VlnPOXk6EgYFdtrLIXu1d2jtwnDnMS67qEQ,1060
|
|
6
|
+
docs/conf.py,sha256=cn270pOmLLUH2msNwTcHCa1uo1un0qR1_pz8WSuoRi8,636
|
|
7
|
+
ada_url/_ada_wrapper.abi3.so,sha256=WIKiHvaMui8WPNebnpB8GscP1ZLheR0Hb6R5360UfoE,685368
|
|
8
|
+
ada_url/ada_c.h,sha256=zfezAA0lMCoKPEhrrbr38gghdfShTrCY_sRWUj3XV4k,7561
|
|
9
|
+
ada_url/__init__.py,sha256=TNvshOzbbgNsTAXd1cR6E03ht2JT_mTHY3lmyYnAnl0,599
|
|
10
|
+
ada_url/ada.h,sha256=5iy7v4vnZqUb_bCqh3qERBk4vgIGa6AOrq_eSRGoWz0,411661
|
|
11
|
+
ada_url/ada_build.py,sha256=jpg4zcFSkprqDlE4c6Vvo0zB0IGTCeaNs5NAO2nT7KE,925
|
|
12
|
+
ada_url/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
ada_url/ada_adapter.py,sha256=zkWq5HPzbEoy7xTCIoQVIAg0ehXxwiAKt4-mSfw9e24,21668
|
|
14
|
+
ada_url/ada.cpp,sha256=Jfmht15hRakfm2p3530Asu-3Y_2vQoZapsxsqbWhpik,976668
|
ada_url-1.24.0.dist-info/RECORD
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
docs/conf.py,sha256=cn270pOmLLUH2msNwTcHCa1uo1un0qR1_pz8WSuoRi8,636
|
|
2
|
-
ada_url/_ada_wrapper.abi3.so,sha256=hngb7UODg5S5BM08x9Uf7mUZM_NcWovwTo0_JR_4Uyk,668104
|
|
3
|
-
ada_url/ada_c.h,sha256=lkVK8vQs1woICCDOp_S9aw2_Y4Y7THRiTFBrkCYKnFI,7349
|
|
4
|
-
ada_url/__init__.py,sha256=spKYm9if-a8MLSbi5BuqiGerwUOBangUbev4XG3jEGA,563
|
|
5
|
-
ada_url/ada.h,sha256=RddDyl_KUNTRt8dhboVrw2-AOQfdH8O79bOA3FbKP5A,384002
|
|
6
|
-
ada_url/ada_build.py,sha256=jpg4zcFSkprqDlE4c6Vvo0zB0IGTCeaNs5NAO2nT7KE,925
|
|
7
|
-
ada_url/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
ada_url/ada_adapter.py,sha256=37WOSXf1b67xCIKvdhFOEXVC_59R1ExRwpbUg3XyQRw,21594
|
|
9
|
-
ada_url/ada.cpp,sha256=yu-B_LgMuUfLFAQAPs50hGkquStewG-ASy5NGN6bANM,954526
|
|
10
|
-
ada_url-1.24.0.dist-info/RECORD,,
|
|
11
|
-
ada_url-1.24.0.dist-info/WHEEL,sha256=CltXN3lQvXbHxKDtiDwW0RNzF8s2WyBuPbOAX_ZeQlA,109
|
|
12
|
-
ada_url-1.24.0.dist-info/top_level.txt,sha256=8YlQkS2I0hQyH611C1dxEv7gVFgeljn-aQcwaQL8qcY,49
|
|
13
|
-
ada_url-1.24.0.dist-info/METADATA,sha256=JcsmXuSBk-G7iO4k6RaAqVvt7ZUs8adYtiBNaSVlrog,4845
|
|
14
|
-
ada_url-1.24.0.dist-info/licenses/LICENSE,sha256=9D0P_RQ1VlnPOXk6EgYFdtrLIXu1d2jtwnDnMS67qEQ,1060
|
|
File without changes
|
|
File without changes
|