Skip to content

Commit a23a1a4

Browse files
authored
Merge pull request #54 from python-hyper/i44_decoded_url
DecodedURL landing on master. For all your automatic encoding/decoding needs.
2 parents 17dc8d3 + e8616fa commit a23a1a4

File tree

5 files changed

+538
-19
lines changed

5 files changed

+538
-19
lines changed

TODO.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
* Get coverage up
77
* Switch off ctypes/socket for IP validation
88
* rebase method for path (prepends to path)
9-
* switch default percent encoding to upper case (a la RFC 3986 2.1)
9+
* sibling() should be maximal=False like child()
10+
* make subencoding an exposed parameter
1011

1112
## normalize method
1213

hyperlink/__init__.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11

2-
from ._url import URL, URLParseError, register_scheme, parse_host
2+
from ._url import (URL,
3+
parse,
4+
EncodedURL,
5+
DecodedURL,
6+
URLParseError,
7+
register_scheme)
38

49
__all__ = [
510
"URL",
11+
"parse",
12+
"EncodedURL",
13+
"DecodedURL",
614
"URLParseError",
715
"register_scheme",
8-
"parse_host"
916
]

0 commit comments

Comments
 (0)