mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 04:52:23 +08:00
Add requests.help submodule (#8486)
This commit is contained in:
34
stubs/requests/requests/help.pyi
Normal file
34
stubs/requests/requests/help.pyi
Normal file
@@ -0,0 +1,34 @@
|
||||
from typing_extensions import TypedDict
|
||||
|
||||
class _VersionDict(TypedDict):
|
||||
version: str
|
||||
|
||||
class _OptionalVersionDict(TypedDict):
|
||||
version: str | None
|
||||
|
||||
class _PlatformDict(TypedDict):
|
||||
system: str
|
||||
release: str
|
||||
|
||||
class _ImplementationDict(_VersionDict):
|
||||
name: str
|
||||
|
||||
class _PyOpenSSLDict(_OptionalVersionDict):
|
||||
openssl_version: str
|
||||
|
||||
class _InfoDict(TypedDict):
|
||||
platform: _PlatformDict
|
||||
implementation: _ImplementationDict
|
||||
system_ssl: _VersionDict
|
||||
using_pyopenssl: bool
|
||||
using_charset_normalizer: bool
|
||||
pyOpenSSL: _PyOpenSSLDict
|
||||
urllib3: _VersionDict
|
||||
chardet: _OptionalVersionDict
|
||||
charset_normalizer: _OptionalVersionDict
|
||||
cryptography: _VersionDict
|
||||
idna: _VersionDict
|
||||
requests: _VersionDict
|
||||
|
||||
def info() -> _InfoDict: ...
|
||||
def main() -> None: ...
|
||||
Reference in New Issue
Block a user