kuasarr connects JDownloader with Radarr, Sonarr and LazyLibrarian. It also decrypts links protected by CAPTCHAs, using an additional CaptchaSolverr.
Project description
Kuasarr (Quasarr Fork)
Kuasarr connects JDownloader with Radarr, Sonarr and LazyLibrarian. It also decrypts links protected by CAPTCHAs.
Kuasarr pretends to be both Newznab Indexer and SABnzbd client. Therefore, do not try to use it with real usenet
indexers or download clients. It simply does not know what NZB or torrent files are.
Table of Contents
Quick Start
GHCR: ghcr.io/ritedt/kuasarr
docker run -d \
--name kuasarr \
-p 8080:8080 \
-v /path/to/config/:/config \
-e INTERNAL_ADDRESS=http://192.168.0.1:8080 \
-e EXTERNAL_ADDRESS=http://192.168.0.1:8080 \
-e TZ=Europe/Amsterdam \
ghcr.io/ritedt/kuasarr:latest
All configuration, Hostnames, Flaresolverr, etc. lives inside /config/kuasarr.ini. Hostnames and FlareSolverr can also be managed via the Web UI. Available image tags are listed on GitHub Container Registry.
Improvements
- Captcha Integration: Automatic captcha solving via DeathByCaptcha or 2Captcha. 2Captcha is up to 50% cheaper for certain captcha types (e.g. CutCaptcha).
- Hoster Filtering: Exclude unwanted mirrors directly via the UI.
- Multi-arch Docker images: Official images now published for
linux/amd64,linux/arm64, andlinux/arm/v7(from v1.8.1).
Instructions
- Set up and run FlareSolverr 3.4.4 or later.
- Set up and run JDownloader 2.
- Follow the next steps.
FlareSolverr
- Ensure your running FlareSolverr is reachable by Kuasarr.
- Provide your FlareSolverr URL to Kuasarr during the setup process.
- The full URL must include the version path, e.g.,
http://192.168.1.1:8191/v1.
Kuasarr
Tell Kuasarr which sites to search for releases. It requires at least one valid source to start up.
- By default, Kuasarr does not know which sites to scrape for download links.
- The setup will guide you through the process of providing valid hostnames for Kuasarr to scrape.
- If you need help, reach out on Matrix: @kuasarr-support:envs.net.
- You may check sites like Pastebin for user‑submitted suggestions.
JDownloader
- Ensure your running JDownloader is connected to the My JDownloader service.
- Provide your My‑JDownloader‑Credentials to Kuasarr during the setup process.
- Consider setting up a fresh JDownloader before you begin.
- JDownloader must be running and available to Kuasarr.
- Kuasarr will modify JDownloader’s settings so downloads can be handled by Radarr/Sonarr/LazyLibrarian.
- If using Docker, ensure that JDownloader’s download path is available to Radarr/Sonarr/LazyLibrarian with exactly the same internal and external path mapping (matching only the external path is not enough).
Radarr / Sonarr
Set up Kuasarr as a Newznab Indexer and SABnzbd Download Client:
- URL: Use the
URLfrom the API Information section of the console output (or copy it from the Kuasarr web UI). - API Key: Use the
API Keyfrom the API Information section of the console output (or copy it from the Kuasarr web UI). - Leave all other settings at their defaults.
Important notice for Sonarr
- Ensure all shows (including anime) are set to the Standard series type.
- Kuasarr will never find releases for shows set to Anime / Absolute.
LazyLibrarian
Important notice
- This feature is experimental and may not work as expected.
- Kuasarr cannot help you with metadata issues, missing covers, or other LazyLibrarian problems.
- Please report issues when one of your hostnames yields results through their website, but not in LazyLibrarian.
Set up Kuasarr as a SABnzbd+ Downloader
- SABnzbd URL/Port: Use port and host parts from
URLfound in the API Information section of the console output (or copy it from the Kuasarr web UI). - SABnzbd API Key: Use the
API Keyfrom the API Information section of the console output (or copy it from the Kuasarr web UI). - SABnzbd Category: Use
docsto ensure LazyLibrarian does not interfere with Radarr/Sonarr. - Press
Test SABnzbdto verify the connection, thenSave changes.
Set up Kuasarr as a Newznab Provider:
- Newznab URL: Use the
URLfrom the API Information section of the console output (or copy it from the Kuasarr web UI). - Newznab API Use the
API Keyfrom the API Information section of the console output (or copy it from the Kuasarr web UI). - Press
Testto verify the connection, thenSave changes.
Fix the Importing settings:
- Check
Enable OpenLibrary api for book/author information - Select
OpenLibrarybelowPrimary Information Source - Under
Import languagesadd, Unknown(and for German users:, de, ger, de-DE).
Fix the Processing settings:
- Under
Foldersadd the full Kuasarr download path, typically/downloads/Kuasarr/ - If you do not do this, processing after the download will fail.
Captcha Configuration
Kuasarr supports multiple captcha solving services. Add your credentials to kuasarr.ini:
[Captcha]
# Choose your service: "dbc" or "2captcha"
service = dbc
# --- DeathByCaptcha settings ---
# Option 1: Username/Password
dbc_username = your_username
dbc_password = your_password
# Option 2: Auth Token (recommended)
dbc_authtoken = your_auth_token
# --- 2Captcha settings ---
twocaptcha_api_key = your_2captcha_api_key
# --- Advanced settings (optional) ---
timeout = 120
max_retries = 3
retry_backoff = 5
Or use environment variables:
docker run -d \
--name kuasarr \
-p 8080:8080 \
-v /path/to/config/:/config \
-e INTERNAL_ADDRESS=http://192.168.0.1:8080 \
-e DBC_AUTHTOKEN=your_authtoken \
-e TWOCAPTCHA_API_KEY=your_2captcha_key \
-e TZ=Europe/Amsterdam \
ghcr.io/ritedt/kuasarr:latest
Available environment variables:
DBC_USERNAME- DeathByCaptcha usernameDBC_PASSWORD- DeathByCaptcha passwordDBC_AUTHTOKEN- DeathByCaptcha Auth tokenTWOCAPTCHA_API_KEY- 2Captcha API KeyCAPTCHA_TIMEOUT- Timeout in seconds (default: 120)CAPTCHA_MAX_RETRIES- Max retries (default: 3)CAPTCHA_RETRY_BACKOFF- Seconds between retries (default: 5)
Links:
WebUI Authentication (Optional)
Protect the Kuasarr WebUI with HTTP Basic Auth via ENV or kuasarr.ini.
Option 1: Environment variables
docker run -d \
--name kuasarr \
-p 8080:8080 \
-v /path/to/config/:/config \
-e INTERNAL_ADDRESS=http://192.168.0.1:8080 \
-e KUASARR_WEBUI_USER=admin \
-e KUASARR_WEBUI_PASS=your_secure_password \
-e TZ=Europe/Amsterdam \
ghcr.io/ritedt/kuasarr:latest
Option 2: kuasarr.ini
[WebUI]
user = admin
password = your_secure_password
Important:
- If both
KUASARR_WEBUI_USERandKUASARR_WEBUI_PASSare set, the WebUI requires login. - If either is missing or empty, authentication is disabled (backwards compatible).
- API endpoints (
/api,/download/,/dbc/api/) are never protected by BasicAuth – Radarr/Sonarr continue to work with the API key only. - For production use, always run behind HTTPS (reverse proxy recommended).
For systemd deployments, add to your unit file:
Environment=KUASARR_WEBUI_USER=admin
Environment=KUASARR_WEBUI_PASS=your_secure_password
Install as PWA (Progressive Web App)
Kuasarr can be installed as a standalone app on your device:
- Desktop (Chrome/Edge): Click the install icon in the address bar or use the browser menu → "Install Kuasarr"
- Android: Open Kuasarr in Chrome, tap the menu (⋮) → "Add to Home screen"
- iOS: Open Kuasarr in Safari, tap Share → "Add to Home Screen"
Note: PWA installation requires HTTPS. If running locally without TLS, use a reverse proxy (e.g., Nginx, Caddy) or access via
localhost.
Kuasarr Docs
License
- MIT (see
LICENSE) - Fork of
rix1337/quasarr
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kuasarr-1.13.0-py3-none-any.whl.
File metadata
- Download URL: kuasarr-1.13.0-py3-none-any.whl
- Upload date:
- Size: 947.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eaf21f6a4737427e45b53754f87f6561c420257209c6687106a0622819954ac
|
|
| MD5 |
707aedbd898334b93330592e5ccdc929
|
|
| BLAKE2b-256 |
ec70c48d77c0fe68e2b2a1fd8b060102d8fee31963381bfc3f3b74881d3423ce
|