├── .github └── workflows │ └── extract_v2ray_links.yml ├── .last_file ├── .last_switch ├── README.md ├── base64 ├── base64_1 ├── base64_150.txt ├── last_150.txt ├── main.py ├── requirements.txt ├── run_counter.txt ├── v2tel_links1.txt └── v2tel_links2.txt /.github/workflows/extract_v2ray_links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamanGho/v2ray_collector/HEAD/.github/workflows/extract_v2ray_links.yml -------------------------------------------------------------------------------- /.last_file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.last_switch: -------------------------------------------------------------------------------- 1 | 1765123103 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # v2ray_collector 2 | Get V2ray from Telegram channels 3 | -------------------------------------------------------------------------------- /base64: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /base64_1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /base64_150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamanGho/v2ray_collector/HEAD/base64_150.txt -------------------------------------------------------------------------------- /last_150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamanGho/v2ray_collector/HEAD/last_150.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamanGho/v2ray_collector/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | beautifulsoup4 3 | urllib3 4 | -------------------------------------------------------------------------------- /run_counter.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /v2tel_links1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamanGho/v2ray_collector/HEAD/v2tel_links1.txt -------------------------------------------------------------------------------- /v2tel_links2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamanGho/v2ray_collector/HEAD/v2tel_links2.txt --------------------------------------------------------------------------------