Skip to content

Commit 7a871f4

Browse files
authored
Upgrade to 2.6.0, add IDNA functions to library (#23)
1 parent 7d910f5 commit 7a871f4

File tree

7 files changed

+570
-158
lines changed

7 files changed

+570
-158
lines changed

Diff for: ada_url/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
from ada_url.ada_adapter import (
22
URL,
33
check_url,
4+
idna,
5+
idna_to_ascii,
6+
idna_to_unicode,
47
join_url,
58
normalize_url,
69
parse_url,
@@ -10,6 +13,9 @@
1013
__all__ = [
1114
'URL',
1215
'check_url',
16+
'idna',
17+
'idna_to_ascii',
18+
'idna_to_unicode',
1319
'join_url',
1420
'normalize_url',
1521
'parse_url',

Diff for: ada_url/ada.cpp

+118-101
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)