A metasearch engine for torrents
Note: The frontend code lives in this repo
Currently supported trackers are:
- Piratebay
- YTS
- EZTV
- LinuxTracker
- Libgen
You can find a running instance at:
- https://testbay.onrender.com or,
- https://cleanbay.netlify.app if you prefer a frontend
- Clone this repo
git clone https://github.com/gr3atwh173/cleanbay.git
- Install with Poetry
cd cleanbay
poetry install
Optional: Create a .env
file with the following parameters in the project
root:
# directory where the plugins are located
# must have a __init__.py file
PLUGINS_DIRECTORY="./backend/plugins"
# rate limiting by IP
RATE_LIMIT="100/minute"
# cache size in 'entries'
CACHE_SIZE=128
# time (in seconds) before a cache item is invalidated
CACHE_TIMEOUT=300
# domain allowed to make cross-origin requests to the server
# '*' allows for any domain to request data
ALLOWED_ORIGIN="*"
- Run the web API
poetry run uvicorn app:app
POST /api/v1/search/
expects
{
"search_term": "...",
"include_categories": ["cinema", "tv"],
"exclude_categories": [],
"include_sites": ["linuxtracker", "piratebay"],
"exclude_sites": []
}
and returns JSON with the following structure:
{
"status": "ok",
"length": 123,
"cache_hit": true,
"elapsed": 2.324,
"data": [
{
"name": "...",
"magnet": "...",
"seeders": 12345,
"leechers": 1234,
"size": "...",
"uploader": "...",
"uploaded_at": "..."
}
]
}
in case of an error, the following is returned:
{
"status": "error",
"msg": "why it happened"
}
NOTE
Categories are mapped like so:
"all" or "*" => ALL: Everything under the sun
"general" => GENERAL: Plugins that track everything
"cinema" => CINEMA: Plugins that track movies
"tv" => TV: Plugins that track shows on TV, OTT or anything that's not a movie
"software" => SOFTWARE: Plugins that track software excluding games
"books" => BOOKS: Plugins that index books or audiobooks
GET /api/v1/status
returns JSON with the following structure
{
"status": "ok", // or "not ok"
"plugins": ["loaded", "plugins"]
}
This is a non-exhaustive list:
- Make a plugin (or two, or three, or four...)
- Add new features to the backend, or make existing ones better!
- Make a better frontend.
- Write better documentation for the API.
- Bug fixes, refactors, etc.
- Suggest a feature.
In any case, thanks for contributing!
Before making a change, please first discuss the change you want to make via raising an issue.
- Fork and clone the repo
- Run
poetry install
to install tha dependencies - Create a branch for your PR with
git checkout -b your-branch-name
- Code your changes.
- Push the changes to your fork
- Make a pull request!