-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyfaup.pyi
More file actions
61 lines (43 loc) · 1.08 KB
/
pyfaup.pyi
File metadata and controls
61 lines (43 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
class FaupCompat:
url: bytes
def __init__(self, url: str | None=None) -> None:
...
def decode(self, url: str) -> None:
...
def get_credential(self) -> str | None:
...
def get_domain(self) -> str | None:
...
def get_subdomain(self) -> str | None:
...
def get_fragment(self) -> str | None:
...
def get_host(self) -> str | None:
...
def get_resource_path(self) -> str | None:
...
def get_tld(self) -> str | None:
...
def get_query_string(self) -> str | None:
...
def get_scheme(self) -> str | None:
...
def get_domain_without_tld(self) -> str | None:
...
def get_port(self) -> int | None:
...
class Url:
orig: str
scheme: str
username: str | None
password: str | None
host: str
subdomain: str | None
domain: str | None
suffix: str | None
port: int | None
path: str | None
query: str | None
fragment: str | None
def __init__(self, url: str | None = None) -> None:
...