first commit

This commit is contained in:
gru
2026-05-03 12:35:57 +01:00
commit 4fac1716a6
31 changed files with 5949 additions and 0 deletions

7
app.py Normal file
View File

@@ -0,0 +1,7 @@
from pytorrent import create_app, socketio
from pytorrent.config import HOST, PORT, DEBUG
app = create_app()
if __name__ == "__main__":
socketio.run(app, host=HOST, port=PORT, debug=DEBUG, allow_unsafe_werkzeug=True)