An automated scraper tool to send entries from your Douban lists to Servarr servers.
- Properly configured Sonarr, Radarr and Lidarr servers.
- A Douban user account, of which you must possess full legal rights before running this script with it. Any violation of the EULA of Douban is not the responsibility of the project.
- Copy
user_config_template.yml
touser_config.yml
and set all the options to the actual values from your environment. - Run the script.
- Open the workspace folder and launch with your launching option.
- Build the Docker image by
docker build -t douban_to_servarr . -f Dockerfile --platform linux/amd64
(the platform parameter should be a suitable one for your target platform). - Start the container with either docker-compose (recommended):
version: "2.1" services: douban_to_servarr: image: docker.io/library/douban_to_servarr container_name: douban_to_servarr network_mode: 'host' environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC
- Or start with docker-cli:
docker run -d \ --name=douban_to_servarr \ -e PUID=1000 \ -e PGID=1000 \ --network="host" \ -e TZ=Etc/UTC \ docker.io/library/douban_to_servarr
- Check the log file and see if there are any warnings or errors.
- Check your Servarr configurations.