mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
3837c3aafd
requests.get() method ok test requests.get passed
19 lines
290 B
Python
19 lines
290 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, **kwargs) -> Response: ...
|
|
|
|
|
|
def get(url: str, **kwargs) -> Response: ...
|
|
|
|
|
|
def __init__(): ...
|
|
def __del__(): ...
|