mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
17 lines
209 B
Python
17 lines
209 B
Python
from .aria2p_server import run_aria2p
|
|
# from .scraper import uri
|
|
def start_client():
|
|
global aria2
|
|
aria2 = run_aria2p()
|
|
|
|
def add_magnet(uri):
|
|
aria2.add_magnet(uri)
|
|
|
|
|
|
def terminate():
|
|
return
|
|
|
|
|
|
|
|
|