https://github.com/stabldev/torrra
A Python tool that lets you find and download torrents without leaving your CLI.
https://github.com/stabldev/torrra
libtorrent-python python-cli torrent torrent-downloader
Last synced: 3 months ago
JSON representation
A Python tool that lets you find and download torrents without leaving your CLI.
- Host: GitHub
- URL: https://github.com/stabldev/torrra
- Owner: stabldev
- License: mit
- Created: 2025-07-06T12:02:20.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-07-16T15:14:26.000Z (3 months ago)
- Last Synced: 2025-07-17T05:29:17.703Z (3 months ago)
- Topics: libtorrent-python, python-cli, torrent, torrent-downloader
- Language: Python
- Homepage: https://pypi.org/project/torrra
- Size: 4.06 MB
- Stars: 210
- Watchers: 2
- Forks: 11
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `torrra`
> A Python tool that lets you find and download torrents without leaving your CLI.
[](https://pypi.org/project/torrra/)
[](https://aur.archlinux.org/packages/torrra)
[](https://github.com/stabldev/torrra/releases)
[](https://github.com/stabldev/torrra/blob/main/LICENSE)
[](https://github.com/stabldev/torrra/issues)
## Overview
`torrra` provides a streamlined command-line interface for your torrent needs. It allows you to search for and download torrents, and manage active downloads without leaving your terminal, offering a fast and efficient solution for command-line users.
## Table of Contents
- [Features](#features)
- [Installation](#installation)
- [Cross-Platform](#cross-platform-recommended)
- [Arch Linux](#arch-linux)
- [Standalone Binaries](#standalone-binaries-no-python-required)
- [Docker](#docker)
- [Local Development](#local-development)
- [Usage](#usage)
- [CLI Commands & Flags](#cli-commands--flags)
- [TUI Controls](#tui-controls)
- [Configuration](#configuration)
- [Managing Your Configuration](#managing-your-configuration)
- [Config Options](#config-options)
- [Indexer Support](#indexer-support)
- [Roadmap](#roadmap)
- [Contributing](#contributing)
- [License](#license)## Features
- Integrate with services like [`Jackett`](https://github.com/Jackett/Jackett) and [`Prowlarr`](https://github.com/Prowlarr/Prowlarr).
- Fetch and download magnet links directly, powered by [`Libtorrent`](https://libtorrent.org/).
- A responsive download manager built with [`Textual`](https://textual.textualize.io/).
- Pause and resume torrent downloads using keyboard shortcuts.
- Operates as both a `CLI` tool and a full-screen terminal `UI`.
- Toggle between dark and light themes.## Installation
`torrra` offers several installation methods to suit your environment.
### Cross-Platform (recommended)
Using `pipx` ensures `torrra` is installed in an isolated environment, preventing conflicts with your system's Python packages.
```bash
pipx install torrra
```> This method supports **Linux**, **macOS**, and **Windows**. `libtorrent` is installed automatically via pip.
### Arch Linux
1. **From AUR (builds from source):**
```bash
yay -S torrra
```2. **From AUR Binary Package (faster installation):**
```bash
yay -S torrra-bin
```> `torrra-bin` includes a precompiled standalone binary for x86_64 Linux, requiring no Python dependencies.
### Standalone Binaries (No Python Required)
Download pre-built executables directly from [GitHub Releases](https://github.com/stabldev/torrra/releases):
| OS | File |
| :------ | :--------------------------- |
| Linux | `torrra-vX.Y.Z-linux-x86_64` |
| Windows | `torrra-vX.Y.Z-windows.exe` |
| macOS | `torrra-vX.Y.Z-macos-x86_64` |> On Linux/macOS, ensure the binary is executable: `chmod +x torrra-vX.Y.Z-*-x86_64`.
### Docker
`torrra` is also available as a Docker image, allowing you to run it in an isolated environment without installing Python dependencies directly on your host system.
The official image is hosted on Docker Hub: [`stabldev/torrra`](https://hub.docker.com/r/stabldev/torrra).
#### Quick Usage
```bash
docker run --rm -it stabldev/torrra:latest --jackett
```> Replace `--jackett` with your preferred provider flag. You can also pass URL and API key directly: `--jackett http://localhost:9117 your_api_key`.
> You must mount any required config or download directories if needed.#### With Config and Downloads Folder Mounted
```bash
docker run --rm -it \
-v ~/.config/torrra:/root/.config/torrra \
-v ~/Downloads:/downloads \
stabldev/torrra:latest --jackett
```> Ensure your `config.toml` inside `~/.config/torrra` is set up correctly.
#### Image Tags
- `stabldev/torrra:latest` - always points to the latest release
- `stabldev/torrra:` - for a specific release (e.g., `x.y.z`)### Local Development
To set up `torrra` for development:
```bash
git clone https://github.com/stabldev/torrra
cd torrra
uv sync # or `pip install -e .`
uv run torrra
```## Usage
To start `torrra`, you must specify a provider. For example, to use [`Jackett`](https://github.com/Jackett/Jackett):
```bash
torrra --jackett
```> Uses Jackett with credentials from your saved configuration.
Or pass your own `URL` and `API_KEY` directly. For example, to use [`Prowlarr`](https://github.com/Prowlarr/Prowlarr):
```bash
torrra --prowlarr http://localhost:9696 your_api_key
```> Omitting a provider flag will result in an error.
### CLI Commands & Flags
#### Top-level commands
| Command | Description |
| :-------------- | :------------------------------------------- |
| `torrra` | Launches the interactive TUI |
| `torrra config` | Manages configuration settings |
| `torrra --help` | Displays help for the top-level CLI commands |#### Provider flags (used with `torrra`)
| Flag | Description |
| :----------------- | :---------------------------------------------------------------------------- |
| `-h`, `--help` | Displays help for the main application |
| `-v`, `--version` | Shows the current `torrra` version |
| `-j`, `--jackett` | Uses Jackett as the torrent indexer. Optionally accepts `URL` and `API_KEY`. |
| `-p`, `--prowlarr` | Uses Prowlarr as the torrent indexer. Optionally accepts `URL` and `API_KEY`. |### TUI Controls
| Key | Action |
| :------ | :--------------------------- |
| `↑↓` | Navigate through results |
| `Tab` | Focus the next widget |
| `Enter` | Start download for selection |
| `p` | Pause the current download |
| `r` | Resume a paused download |
| `q` | Quit `torrra` |## Configuration
`torrra`'s behavior can be customized via a `config.toml` file located in your OS-specific user config directory:
- **Linux/macOS:** `~/.config/torrra/config.toml`
- **Windows:** `%APPDATA%\torrra\config.toml`> The actual path is automatically resolved using [`platformdirs`](https://pypi.org/project/platformdirs/).
Example `config.toml`:
```toml
[general]
download_path = "/home/username/Downloads" # Default folder for saving torrents
remember_last_path = true # Reuse the last used path as default
```### Managing Your Configuration
Use the built-in `torrra config` command to manage settings:
```bash
torrra config -g general.download_path # Get a specific config value
torrra config -s general.remember_last_path False # Set a key-value pair
torrra config -l # List all config settings
```#### Config Options
| Flag | Description |
| :---------------------- | :------------------------------------------------------- |
| `-g`, `--get KEY` | Retrieves a config value (e.g., `general.download_path`) |
| `-s`, `--set KEY VALUE` | Sets a key-value pair |
| `-l`, `--list` | Lists all configuration settings |
| `-h`, `--help` | Displays help for the config command |## Indexer Support
Currently supported:
- [`Jackett`](https://github.com/Jackett/Jackett) (via `--jackett` or `-j`)
- [`Prowlarr`](https://github.com/Prowlarr/Prowlarr) (via `--prowlarr` or `-p`)Planned:
- Support for custom indexers
## Roadmap
Ongoing development focuses on enhancing `torrra`'s capabilities:
- [x] Jackett integration
- [x] Prowlarr support
- [x] Torrent download `UI` with pause/resume
- [x] Config file support
- [x] Standalone binary & AUR packaging
- [x] Magnet info preview (seeders/leechers before download)
- [ ] Advanced filtering/sorting
- [ ] Nyaa & anime-specific indexers
- [ ] Keyboard shortcuts overlay / help screen## Contributing
`torrra` is an open-source project, and contributions are highly valued.
- If you find an issue, please [open an issue](https://github.com/stabldev/torrra/issues) with detailed steps to reproduce.
- We welcome new features or indexer integrations. Fork the repository and submit a Pull Request.
- General feedback and feature requests are always appreciated.## License
**MIT License.** Copyright (c) [stabldev](https://github.com/stabldev)