π§ Project Status: Early Development π§
This project is still in the early stages of development and is not yet ready for general use.
Contributions are welcome from anyone who wants to help shape the project! Hereβs how to jump in:
1. Start a discussion β Before diving in, use the repo's Discussions tab to share what youβre planning. This helps avoid overlap and keeps everyone on the same page.
2. Create a Fork β Fork the repository to create your own copy. Next, create a new branch within your fork for your changes. Push your branch so your progress is visible and when you're ready, submit a Pull Request (PR).
3. Recognition β Contributors who handle a significant part of the work will be added as maintainers of the project and the organisation to help guide the project forward.
Note: Be sure to check out TheWicklowWolf for reference and proof of concepts β it will serve as a guide for formats, docker builds, actions and overall structure/style.
Thanks for your interest! π
π Missing List β Read from Readarr, fetch missing books and auto-download via Annaβs Archive
π Manual Search β Search Annaβs Archive and download books (user selection and defined file structure)
π‘ Recommendations β Generate book suggestions based on Readarr library (using a background task to scrape from Goodreads) - with options to add or dismiss suggestions including filters and sorting
π½ Recommendations β Read Radarr library and suggest similar movies via TMDB (with options to add or dismiss suggestions including filters and sorting)
π Manual Search β Search via TMDB with option to add to Radarr
πΊ Recommendations β Read Sonarr library and suggest similar shows via TMDB (with options to add or dismiss suggestions including filters and sorting)
π Manual Search β Search via TMDB with option to add to Sonarr
πΆ Manual Search β Search Spotify for music and download via spotDL (which uses yt-dlp)
π€ Recommendations β Generate artist recommendations from LastFM based on Lidarr library (with options to add or dismiss suggestions including filters and sorting)
π Missing List β Read Lidarr library, fetch missing albums and download via yt-dlp
π§ Missing List β Read from Readarr library, fetch missing audiobooks and auto-download
π Manual Search β Search Spotify and download audiobooks (user selection and defined file structure)
π Recommendations β Generate audiobook suggestions based on Readarr library - with options to add or dismiss suggestions including filters and sorting
π½ Direct Download Page β Input YouTube or Spotify link and download video/audio using spotDL or yt-dlp
ποΈ Schedule System β Subscribe to YouTube Channels, Spotify or YouTube Playlists and download on a schedule
Layer | Technology |
---|---|
Frontend | Bootstrap |
Backend | Python with Flask |
Database | SQLite (SQLAlchemy) |
Scheduler | APScheduler (for cron-based scheduling) |
Downloader | spotdl and yt-dlp |
Containerization | Docker + Docker Compose |
π Proposed Project Structure
MediaWolf/
βββ backend/
β βββ __init__.py
β βββ api/
β β βββ __init__.py
β β βββ example_api.py # e.g. API for various sections
β βββ db/
β β βββ __init__.py
β β βββ example_db_handler.py # e.g. DB handler
β βββ services/
β β βββ __init__.py
β β βββ example_services.py # e.g. services for various integrations
β βββ utils/
β β βββ __init__.py
β β βββ string_cleaner.py
β βββ logger.py
β βββ main.py
βββ docker/
β βββ .dockerignore
β βββ Dockerfile
β βββ gunicorn_config.py
β βββ init.sh
β βββ requirements.txt
βββ frontend/
β βββ static/
β β βββ js/
β β β βββ example_script.js # e.g. script for various sections
β β βββ css/
β β β βββ example_style.css # e.g. styles
β β βββ assets/
β βββ templates/
β βββ base.html
β βββ example_template.html # e.g. template for various sections
βββ docs/
β βββ screenshot.png
βββ tests/
β βββ generate_recommendations_for_test.py
βββ README.md
Books (Readarr & Annaβs Archive)
- Readarr Missing List Scheduled Downloader -> Similar to BookBounty
- Manual Search -> Similar to calibre-web-automated-book-downloader
- Recommendations based on Readarr Book List -> Similar to eBookBuddy
- Download engine -> Similar to calibre-web-automated-book-downloader
Movies (Radarr & TMDB)
- Recommendations based on Radarr Movie List -> Similar to RadaRec
- Manual Search
TV Shows (Sonarr & TMDB)
- Recommendations based on Sonarr Show List -> Similar to SonaShow
- Manual Search
Music (Lidarr, LastFM, yt-dlp, Spotify)
- Lidarr Missing List Scheduled Downloader -> Similar to LidaTube
- Manual Search
- Recommendations
Audiobooks (Spotify & LibriVox??)
- Missing List Scheduled Downloader -> Similar to audiobookbay-automated
- Manual Search -> Similar to AudioBookRequest
- Recommendations based on Readarr Audiobook List
Downloads
- Download via SpotDL or yt-dlp directly -> Similar to SpotTube
Tasks
- Task Manager System (Cron schedule, Manual Start, Stop, Enable and Disable)
Subscriptions
- YouTube Channels (Audio, Video, Live) -> Similar to ChannelTube
- YouTube and Spotify Playlists (Audio) -> Similar to Syncify
- Playlist Generators (For Audio Files) -> Similar to PlaylistDir
Login Manager
- Login and User Management
Settings Manager
- Settings Loader & Saver
To quickly get started with the project, you can use the Docker Compose file.
- Make sure you have Docker and Docker Compose installed.
- Clone the repository.
- Run
docker compose up -d
. - Access the application at
http://127.0.0.1:5000
.
- Clone the repository.
- Create a virtual environment and activate it (You can use
pyenv
to manage multiple Python versions easily). - Run
pip install -r docker/requirements.txt
. - Run
export FLASK_APP=backend/main.py && flask run
. - Access the application at
http://127.0.0.1:5000
.
Ensure you have pre-commit hooks installed by running:
pre-commit install
- Run `git add .`
- Run `git commit -m "Commit Message"`
- Run `git push`
If pre-commit hooks flag any issues, follow the suggested fixes and commit again.
A recommended development setup includes:
- VSCode with Black formatting (line length set to 200 characters).
- isort configured for organising imports.
- Default formatters for JavaScript, CSS and HTML.
- Python 3.12.
services:
mediawolf:
image: ghcr.io/mediawolforg/mediawolf:develop_latest
container_name: mediawolf
environment:
- lidarr_address=http://localhost:8686
- lidarr_api_key=yourapikey
- readarr_address=http://localhost:8787
- readarr_api_key=yourapikey
- radarr_address=http://localhost:7878
- radarr_api_key=yourapikey
- sonarr_address=http://localhost:8989
- sonarr_api_key=yourapikey
- lastfm_api_key=yourapikey
- lastfm_api_secret=yourapikey
- tmdb_api_key=yourapikey
- tvdb_api_key=yourapikey
- spotify_client_id=yourclientid
- spotify_client_secret=yourclientsecret
volumes:
- /path/to/config:/config
- /path/to/downloads:/downloads
ports:
- 5000:5000
restart: unless-stopped
https://discord.gg/hxXzH9Xkcx