├── .gitignore ├── LICENSE ├── README.md ├── channel_finder.py ├── channels_list.txt ├── crawler.py └── requirments.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhdmsm/tg_crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhdmsm/tg_crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhdmsm/tg_crawler/HEAD/README.md -------------------------------------------------------------------------------- /channel_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhdmsm/tg_crawler/HEAD/channel_finder.py -------------------------------------------------------------------------------- /channels_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhdmsm/tg_crawler/HEAD/channels_list.txt -------------------------------------------------------------------------------- /crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhdmsm/tg_crawler/HEAD/crawler.py -------------------------------------------------------------------------------- /requirments.txt: -------------------------------------------------------------------------------- 1 | pytg==0.4.5 2 | --------------------------------------------------------------------------------