Skip to content

Configuration

L4GSP1KE edited this page Jan 26, 2022 · 24 revisions

DEFAULT

Most of these values are REQUIRED if you intend to use these services

  • The Movie Database: tmdb_api REQUIRED

  • Image Hosts and their respective API keys: e.g.imgbb_api

    • Only one image host is REQUIRED, but extras are nice to have.
    • Acceptable values for img_host_x are:
      • imgbb
        • Notes: 32MB Cap, easy to signup and get your api key. Kinda slowish
      • freeimage.host
        • Notes: 100MB Cap, no need to signup to get api key, however there are reports of ip bans if used for mass uploading. Good as a backup.
      • imgbox
        • Notes: 10MB Cap. No signup needed. Recommended.
      • ptpimg
        • Recommended if you have access. API Key can be found via inspect element on the upload page.
  • Upload to tracker anonymously: anon REQUIRED

    • "True" for anonymous uploads
  • Default number of screenshots per upload: screens REQUIRED

    • Recommended value = 6
  • Default torrent client: default_torrent_client REQUIRED

    • The "NAME" of the torrent client you'd like to use by default.
    • Values for this will be set in the Torrent Clients section below.

Trackers

  • Default Trackers: default_trackers REQUIRED

    • A comma separated list of trackers to upload to
    • Currently Supported: BLU, BHD, MANUAL
    • MANUAL = passing -m / --manual
  • API Key: api_key

    • Your API key for each respective site
    • Used to upload and check for potential duplicates
    • Most commonly found in your security settings
  • Announce Url: announce_url

    • Your custom announce url
    • Most commonly found on the site's upload page
  • Draft Default: draft_default

    • If the site has a draft system, setting "True" will send to drafts by default
    • Setting "False" will go live by default

Torrent Clients

This field is REQUIRED and only ONE is needed, but if you have more, you can switch easily by changing the default_torrent_client or calling --client [NAME] while uploading.

If you wish to add to your client manually use none.

If you have only one client, I recommend just editing the sample config for your client. **After editing, set the default_torrent_client setting to your client's name

NOTE: If using Windows paths, change \ into \\. For example C:\Downloads\TV should be C:\\Downloads\\TV or use r-strings r'E:\\'

  • Each client has a remote_path and local_path option:

    • These are used if the path to your data is different than what your client sees. e.g. "D:\Downloads" on the system running the script and "/data/downloads" on the system running your client
    • If this script and your client are running on the same system, set these values to paths that don't exist OR make them the same
      "local_path" : r"M:\Seeding",
      "remote_path" : r"M:\Seeding"
      

    OR if you have multiple remote path mappings:

    "local_path" : [
        r'E:\Path1",
        r'F:\Path2"
        ],
    "remote_path" : [
        '/data/downloads1'
        '/data/downloads2'
        ],
    
  • Example rtorrent w/ rutorrent config:

    • NOTE: If your password has special characters, url encode it at https://www.urlencoder.org/
    • Your rtorrent_url may vary depending on your setup, here are some that are working. You most likely will use one of/a variation of these:
    "NAME" : {
                "torrent_client" : "rtorrent",
                "rtorrent_url" : "https://user:[email protected]:443/username/rutorrent/plugins/httprpc/action.php",
            },
    
  • Example qbittorrent config:

    "NAME" : {
                "torrent_client" : "qbit",
                "qbit_url" : "http://127.0.0.1",
                "qbit_port" : "8080",
                "qbit_user" : "username",
                "qbit_pass" : "password",
            },
    
  • Example deluge config:

    "NAME" : {
               "torrent_client" : "deluge",
               "deluge_url" : "localhost",
               "deluge_port" : "8080",
               "deluge_user" : "username",
               "deluge_password" : "password",
           },
    
  • Example watch folder config:

    "NAME" : {
               "torrent_client" : "watch",
               "watch_folder" : "/Path/To/Watch/Folder"
           },
    

Discord

This is only REQUIRED if you plan to use the discord bot functionality

Visit the Discord Bot Setup and Configuration page for more details. Otherwise you can leave these values blank/whatever comes in them

Clone this wiki locally