├── .gitignore ├── LICENSE ├── README.md ├── examples ├── create_tgnet.py ├── read_dcid_and_authkey.py └── write_authkey.py ├── poetry.lock ├── pyproject.toml ├── test.py └── tgnet ├── __init__.py ├── low ├── __init__.py ├── auth.py ├── datacenter.py ├── headers.py ├── ip.py ├── salt.py ├── session.py └── tgnet_reader.py ├── tgnet.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | venv 3 | tgnets 4 | .local 5 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/README.md -------------------------------------------------------------------------------- /examples/create_tgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/examples/create_tgnet.py -------------------------------------------------------------------------------- /examples/read_dcid_and_authkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/examples/read_dcid_and_authkey.py -------------------------------------------------------------------------------- /examples/write_authkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/examples/write_authkey.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/test.py -------------------------------------------------------------------------------- /tgnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/__init__.py -------------------------------------------------------------------------------- /tgnet/low/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/low/__init__.py -------------------------------------------------------------------------------- /tgnet/low/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/low/auth.py -------------------------------------------------------------------------------- /tgnet/low/datacenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/low/datacenter.py -------------------------------------------------------------------------------- /tgnet/low/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/low/headers.py -------------------------------------------------------------------------------- /tgnet/low/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/low/ip.py -------------------------------------------------------------------------------- /tgnet/low/salt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/low/salt.py -------------------------------------------------------------------------------- /tgnet/low/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/low/session.py -------------------------------------------------------------------------------- /tgnet/low/tgnet_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/low/tgnet_reader.py -------------------------------------------------------------------------------- /tgnet/tgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/tgnet.py -------------------------------------------------------------------------------- /tgnet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuslanUC/tgnet/HEAD/tgnet/utils.py --------------------------------------------------------------------------------