mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
18 lines
268 B
Python
18 lines
268 B
Python
class Response:
|
|
content_length: int
|
|
text: str
|
|
state_code: int
|
|
headers: dict
|
|
url: str
|
|
|
|
def json(self) -> dict: ...
|
|
|
|
|
|
def request(method: str, url: str) -> Response: ...
|
|
|
|
def urlencode(s: str) -> str: ...
|
|
|
|
|
|
def __init__(): ...
|
|
def __del__(): ...
|