Skip to main content

control-rutorrent

Control ruTorrent/rTorrent via HTTPRPC. List torrents, inspect files/peers/trackers, add torrents from URL or magnet links, run lifecycle actions (start/stop/pause/unpause/recheck/remove), or read global transfer statistics.

Ir a la instalación

Datos de origen

Repositorio
wei/rutorrent-skill
Última actividad en el origen
11 de febrero de 2026 a las 05:07
Idioma detectado de SKILL.md
inglés
Estrellas
1
Forks
0

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Explorador de archivos
3 archivos

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
name
control-rutorrent
description
Control ruTorrent/rTorrent via HTTPRPC. List torrents, inspect files/peers/trackers, add torrents from URL or magnet links, run lifecycle actions (start/stop/pause/unpause/recheck/remove), or read global transfer statistics.
# ruTorrent HTTPRPC Use `scripts/rutorrent_client.py` to call ruTorrent HTTPRPC endpoints. ## Prepare Connection 1. Verify that the ruTorrent `httprpc` plugin is installed and enabled. 2. Export connection variables: - `RUTORRENT_URL` - `RUTORRENT_USER` (Optional) - `RUTORRENT_PASS` (Optional) 3. Run commands with `python scripts/rutorrent_client.py <command>`. ## CLI Examples ```bash python scripts/rutorrent_client.py list python scripts/rutorrent_client.py add "magnet:?xt=..." python scripts/rutorrent_client.py start <hash> python scripts/rutorrent_client.py stop <hash> python scripts/rutorrent_client.py remove <hash> python scripts/rutorrent_client.py global-stats ``` ## Library Usage ```python from scripts.rutorrent_client import RuTorrentHttprpcClient c = RuTorrentHttprpcClient("https://host/rutorrent", "user", "pass") torrents = c.list_torrents() c.start("INFO_HASH") ```
Ver en GitHub