Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergiotapia/torrentinim
A very low memory-footprint, self hosted API-only torrent search engine. Sonarr + Radarr Compatible, native support for Linux, Mac and Windows.
https://github.com/sergiotapia/torrentinim
bittorrent p2p radarr search-engine self-hosted sonarr torrent torrent-search-engine
Last synced: about 20 hours ago
JSON representation
A very low memory-footprint, self hosted API-only torrent search engine. Sonarr + Radarr Compatible, native support for Linux, Mac and Windows.
- Host: GitHub
- URL: https://github.com/sergiotapia/torrentinim
- Owner: sergiotapia
- License: mit
- Created: 2019-12-22T00:54:17.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-29T20:06:08.000Z (10 months ago)
- Last Synced: 2024-11-03T20:35:52.090Z (10 days ago)
- Topics: bittorrent, p2p, radarr, search-engine, self-hosted, sonarr, torrent, torrent-search-engine
- Language: Nim
- Homepage:
- Size: 3.45 MB
- Stars: 781
- Watchers: 19
- Forks: 34
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
![image](https://user-images.githubusercontent.com/686715/93164356-53add180-f6e7-11ea-83ab-6cff289dab7e.png)
# Torrentinim
Torrentinim is a self-hosted API-only, low memory footprint, torrent search engine and crawler.
Native support for Linux, Mac and Windows. [You can find a release for your platform in our releases](https://github.com/sergiotapia/torrentinim/releases).
### Community
Want to talk about Torrentinim or suggest features? We have an official Discord server.
[Click to join our official Discord server](https://discord.gg/CFtGUaW)
### Goals
- **API-only**
- Native support for: Linux, Mac and Windows.
- Crawl multiple index sites for torrents and magnet links.
- **[TODO]** Easily integrates with both [Sonarr](https://github.com/Sonarr/Sonarr) and [Radarr](https://github.com/Radarr/Radarr).
- Run without ceremony. You download a binary, run it, that's it. Really.
- Easy to understand source code. Special care is taken to keep code lean and understandable. No code golf here.
- High performance, extremely low memory footprint.
- RAM usage (avg.): **24MB**
- Binary application size: **700KB**We work closely with other providers and search engines to be respectful of their
hardware and minimize our impact to their systems. Want torrentinim to support your
site? Please open a Github Issue in this repo.### Usage Guide
Torrentinim was designed to be painless to run. You download an executable, and run it. Done.
It will start slurping up data from supported sources automatically.The `NUKE_MY_DATABASE` environment variable initializes the database. All subsequent runs should not
include `NUKE_MY_DATABASE` or you will nuke your entire database.```
$ NUKE_MY_DATABASE=true ./torrentinim
[system] Database nuke requested. Clearing all database tables and data.
[system] Initializing database
Torrentinim is running, bambino. http://localhost:50123
```Subsequent runs, don't use the `NUKE_MY_DATABASE` flag!
```
$ ./torrentinim
Torrentinim is running, bambino. http://localhost:50123
```Environment variables:
- `TORRENTINIM_PORT` - what port the app will run on.
- `ALLOW_ORIGINS` - CORS allowed origins.Example:
```
TORRENTINIM_PORT=60000 ALLOW_ORIGINS="https://example.com" ./torrentinim
```Use the search JSON endpoint to perform searches against all the scraped torrents
you have saved locally.```
http://localhost:50123/search?query=the other guys&page=1
```### Development
You need at least Nim 1.2.0
1. Clone the project
2. `asdf install` (to install the version of Nim in .tool-versions)
3. `make deps`
4. `make run`To compile release:
1. `make build`
### Github Releases
1. Update `torrentinim.nimble` package version with the tag version.
```
version = "0.4.0"
git tag v0.4.0
```2. Push up your tags
```
git push origin --tags
```### Supported websites
The following websites are fully supported.
- eztv
- 1337x
- nyaa
- rarbg
- torrentdownloads.me
- ytsThese websites were supported but they have gone down.
- thepiratebay
### Thank you's:
- @chhdamian for the Torrentinim logo
- @scroot
- @srozb
- @anacrolix
- The Nim discord server and the people who volunteer their
time.