blob: f36d62ff20ddbcebc62fd7118320152a085066ec (
about) (
plain)
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
|
from typing 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: ...
|