├── .gitignore ├── LICENSE ├── README.md ├── bilibili.py ├── douyu.py ├── huya.py ├── real-url-proxy-server.py ├── stream_tester.py └── youtube.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | /.vscode 3 | /.idea 4 | /__pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rain-dl/real-url-proxy-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rain-dl/real-url-proxy-server/HEAD/README.md -------------------------------------------------------------------------------- /bilibili.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rain-dl/real-url-proxy-server/HEAD/bilibili.py -------------------------------------------------------------------------------- /douyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rain-dl/real-url-proxy-server/HEAD/douyu.py -------------------------------------------------------------------------------- /huya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rain-dl/real-url-proxy-server/HEAD/huya.py -------------------------------------------------------------------------------- /real-url-proxy-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rain-dl/real-url-proxy-server/HEAD/real-url-proxy-server.py -------------------------------------------------------------------------------- /stream_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rain-dl/real-url-proxy-server/HEAD/stream_tester.py -------------------------------------------------------------------------------- /youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rain-dl/real-url-proxy-server/HEAD/youtube.py --------------------------------------------------------------------------------