massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / requests / requests / packages / urllib3 / util / url.pyi
1 from typing import Any
2
3 from .. import exceptions
4
5 LocationParseError = exceptions.LocationParseError
6
7 url_attrs: Any
8
9 class Url:
10     slots: Any
11     def __new__(cls, scheme=..., auth=..., host=..., port=..., path=..., query=..., fragment=...): ...
12     @property
13     def hostname(self): ...
14     @property
15     def request_uri(self): ...
16     @property
17     def netloc(self): ...
18     @property
19     def url(self): ...
20
21 def split_first(s, delims): ...
22 def parse_url(url): ...
23 def get_host(url): ...