Skip to content

Download manager for premiumize.me cloud downloads

License

Notifications You must be signed in to change notification settings

jan-auer/premiumizer

 
 

Repository files navigation

Premiumizer

Premiumizer is a download management tool for premiumize.me cloud downloads.

  • 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
  • Integrates with SickRage, CouchPotato, ... (BlackHole)
  • Integrates with nzbToMedia (post processing)

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.

More info and get your account right here.

How does this thing work?

This tool will monitor your 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 premiumizer server. Download tasks without a category will not be automatically downloaded to the local server. You can add/change a category whilst it's downloading through the web interface, but third party tools like CouchPotato and SickRage will automatically submit download tasks with a specific category.

When enabled, premiumizer can inform nzbToMedia whenever the local download is finished. Categories can be setup through the web interface's setup page.

Web Interface

By default, premiumizer's web interface listens on port 5000. When premiumizer is running you can access it at http:https://127.0.0.1:5000/ If premiumizer is running on a different PC replace Bind ip in settings with that computer's IP.

Support for reverse proxy: nginx example:

...
##PREMIUMIZER
    location /premiumizer {
        proxy_pass http:https://'ip':port;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Scheme $scheme;
        proxy_set_header X-Script-Name /premiumizer;

    }

    location /socket.io {
        proxy_pass http:https://'ip'/socket.io;
        proxy_redirect off;
        proxy_buffering off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
    }
...

Installation

Requirements

Git & Python 2.7 (with pip)

Optional:

virtualenv

NzbToMedia version 10.14 & higher

Synology

Package coming soon(ish).

Windows

Automatic installation:

Use the PremiumizerInstaller

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

Edit autoProcessMedia.cfg.spc & save it to autoProcessMedia.cfg

Manual installation:

Install Git & select: Use git from the windows command prompt.

Download Python

  1. git clonehttps://github.com/piejanssens/premiumizer.git [to a folder]
  2. pip.exe install virtualenv
  3. virtualenv [your folder]\env
  4. env\Scripts\activate.bat
  5. pip install -r requirements.txt
  6. python premiumizer.py

Optional: Install NzbToMedia & pywin32 & Microsoft Visual c++ python compiler:

  1. git clone https://github.com/clinton-hall/nzbToMedia.git [your folder]\nzbtomedia
  2. easy_install pywin32

OS X

Install brew, use brew to install python

  1. git clonehttps://github.com/piejanssens/premiumizer.git
  2. cd premiumizer
  3. virtualenv virtualenv
  4. source virtualenv/bin/activate
  5. pip install -r requirements.txt
  6. ./premiumizer.py

Now use your browser to access http:https://127.0.0.1:5000/

Extra: Google how you can turn it into a service and run it in background

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

Download manager for premiumize.me cloud downloads

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 49.9%
  • Python 33.0%
  • HTML 11.2%
  • JavaScript 5.1%
  • Smarty 0.5%
  • Dockerfile 0.2%
  • Shell 0.1%