Skip to content

neox387/premiumizer

 
 

Repository files navigation

Premiumizer

Premiumizer is a download management tool for premiumize.me cloud downloads, which allows automatic downloading to your personal computer/server.

  • Web interface to manage premiumize.me downloads: cloud Torrent & Nzb and Filehosts links
  • Category based automatic downloader of finished cloud tasks to local file system
  • Picks up new taks through black hole
  • Integrates with nzbToMedia (post processing)

Enjoying it so far? Great! If you want to show your appreciation, feel free to:

About premiumize.me

Premiumize.me combines anonymous cloud torrent downloads, usenet and premium hosters in one subscription. Cloud torrent downloads are cached, meaning if some other premiumize.me member downloaded the torrent through premiumize.me before, you can immediately download the files from that torrent over HTTPS at top speeds.

How does it work?

Premiumizer will monitor download tasks on premiumize.me. Once the download in the cloud finishes and the download task has a category that needs to be automatically downloaded premiumizer will start downloading all the files to your local computer where premiumizer is running. Download tasks without a category will not be automatically downloaded locally. Categories can be setup through the web interface's setup page.

When enabled, premiumizer can inform nzbToMedia whenever the local download is finished.

Web Interface

By default, premiumizer's web interface listens on port 5000. When premiumizer is running you can access it at http://localhost:5000/

Installation using Docker Compose (recommended)

You need to set the correct PUID and PGID equal to the user that has rw access to the mounted volumes.

services:
  premiumizer:
    container_name: premiumizer
    image: neox387/premiumizer
    restart: unless-stopped
    ports:
      - 5000:5000
    volumes:
      - ./conf:/conf
      - /path/to/downloads:/downloads
      - /path/to/blackhole:/blackhole
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London

Synology DSM

  1. Create a folder using File Station where Premiumizer can store its config and logs (e.g. /volume1/docker/premiumizer)
  2. Identify (or create) the locations for blackhole and downloads that Premiumizer will use
  3. SSH into your syno and figure out the PUID and PGID of the user that has access to these folders
  4. Open Docker app
  5. Under 'Registry': Download the neox387/premiumizer image
  6. Under 'Image': Select the image and click 'launch'
  7. Map a port of your chosing to '5000' (e.g. Chosing 5555 to 5000, means your Premiumizer will be accessible through 5555)
  8. Map your blackhole folder to '/blackhole'
  9. Map your downloads folder to '/downloads'
  10. Map your premiumizer conf folder to '/conf'
  11. Set the following environment variables:
  • PUID (see step 3.)
  • PGID (see step 3.)
  • TZ (e.g. Europe/London)

Updating images on Synology

  1. Stop the container
  2. Right click the container: Action -> Clear/Rest
  3. Under 'Registry': Download the neox387/premiumizer image (this will pull in the latest image)
  4. Start the container

Windows Installer

PremiumizerInstaller

Open services.msc & edit Premiumizer service to logon using your account that is an administrator.

Manual Installation

Required: Git & Python 3 (with pip)

Windows

git clone https://github.com/neox387/premiumizer.git C:\Premiumizer
python -m pip install --upgrade pip
python -m pip install -pywin32
python -m pip install -r c:\Premiumizer\requirements.txt
python C:\Premiumizer\premiumizer\premiumizer.py

Unix / macOS

$ brew install python3
$ git clone https://github.com/neox387/premiumizer.git premiumizer
$ cd premiumizer
$ pip install -r requirements.txt
$ python premiumizer/premiumizer.py

Updating

Update from the settings page / enable automatic updates Update button & changes will be displayed when an update is available.

Settings

Once you can access the premiumizer web interface make sure you head over to the settings page.

Development

Want to contribute? Great! Just fork the github repo, do some awesome stuff and create a pull request.

Report issues or feature enhancements/requests on the Issues page

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.6%
  • JavaScript 0.8%
  • HTML 0.4%
  • Roff 0.1%
  • CSS 0.1%
  • Shell 0.0%