mirror of
https://gitea.invidious.io/iv-org/Invidious-quic-proxy.git
synced 2024-08-15 00:43:22 +00:00
No description
.gitignore | ||
LICENSE | ||
main.py | ||
quicclient.py | ||
README.md | ||
requirements.txt |
[WIP] Quic proxy built in Python for the Invidious project.
Usage
All requests is done through POST. A data content of
{"headers": {"Content-Type": "application/json"},
"url": "https://www.youtube.com/youtubei/v1/browse?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8",
"method": "POST", "data": {"context": {...}}
Will use HTTP/3 to query the specified URL with the specified data, method and headers.
Configuration
The port and address can be changed in config.toml, located in the default OS config location.
# Host address to bind to
host = "0.0.0.0"
# Port to listen on
port = 7192
# Amount of workers to process quic requests
open_connections = 5