initial commit

This commit is contained in:
2025-02-27 22:41:38 +01:00
commit abb16938f8
59 changed files with 4169 additions and 0 deletions

9
src/aria.py Normal file
View File

@@ -0,0 +1,9 @@
import subprocess
def launch_aria2c():
subprocess.Popen(["aria2c", "--enable-rpc", "--rpc-listen-all"])
def kill_aria2c():
subprocess.Popen(["killall", "aria2c"])