A small API for a mildly popular movie site
Project description
PTPAPI
A small API for a mildly popular movie site. The goal was to be able to collect as much information in as few network requests as possible.
Dependencies
- Python 3.7+
- pip
Installation
Use of a virtualenv or pipx is optional, but highly recommended.
pip install ptpapi
Configuration
Open the file ~/.ptpapi.conf
for editing, and make sure it looks like the following:
[Main]
[PTP]
ApiUser=<ApiUser>
ApiKey=<ApiKey>
Both values can be found in the "Security" section of your
profile. This is only the minimum required configuration. See
ptpapi.conf.example
for a full-featured config file with comments.
Usage
The three CLI commands are ptp
, ptp-reseed
, and ptp-bookmarks
ptp
This is a generally utility to do various things inside PTP. As of right now it can download files, search the site for movies, and list message in your inbox.
See ptp help
for more information.
ptp inbox
A small utility to read messages in your inbox. No reply capability currently.
ptp download
An alias for ptp-search -d
ptp search
This subcommand lets you search the site for movies. It can take movie
and permalinks, as well as search by arbitrary parameters, and the
-d
flag allows for downloading matching torrents. For instance:
ptp search year=1980-2000 taglist=sci.fi
ptp search "Star Wars"
.
It can also accept URLs for torrents and collages:
ptp search "https://passthepopcorn.me/torrents.php?id=68148"
ptp search "https://passthepopcorn.me/collages.php?id=2438"
and regular search URLs:
ptp search "https://passthepopcorn.me/torrents.php?action=advanced&year=1980-2000&taglist=action"
.
As a general rule of thumb anything supported by the advanced site
search will work with ptp search
, e.g. searching
https://passthepopcorn.me/torrents.php?action=advanced&taglist=comedy&format=x264&media=Blu-ray&resolution=1080p&scene=1
is the same as ptp search taglist=comedy format=x264 media=Blu-ray resolution=1080p scene=1
.
To work with multiple pages of results, use the --pages <num>
flag.
There are a couple aliases to make life easier:
genre
,genres
,tags
->taglist
name
->searchstr
bookmarks
-> Search only your bookmarks
In addition, Tempita can be used
for custom formatting. For instance, ptp search --movie-format="" --torrent-format="{{UploadTime}} - {{ReleaseName}}" year=1980-2000 taglist=sci.fi grouping=no
.
Using the -d
flag will download one torrent from each of the matched
torrents (deciding which one to download is done via
filters) to the
downloadDirectory.
The -p/--pages [int]
option can be used to scrape multiple pages at
once. N.B.: If any page
parameter is in the original search query,
paging will start from that page.
ptp fields
Simply list fields that can be used for the ptp search
formatting.
ptp-reseed
This script automatically matches up files to movies on PTP. It's most
basic usage is ptp-reseed <file path>
. This will search PTP for any
movies matching that filename, and if it finds a match, will
automatically download the torrent and add it to rtorrent. It can do
some basic file manipulation if it finds a close enough match.
For instance, if you have the file Movie.2000.mkv
, and the torrent
contains Movie (2000)/Movie.2000.mkv
, the script will try to
automatically create the folder Movie (2000)
and hard link the file
inside of it before attempting to seed it.
See ptp-reseed -h
and ptpapi.conf.example
for more information and
configuration options.
guessit
By default the script looks for exact matches against file names and
sizes. If you'd like the name matching to be less strict, you can
install the guessit library (pip install 'guessit>=3'
), and if the
filename search fails, the script will attempt to parse the movie name
out of the file with guessit.
ptp-reseed-machine
This tool is meant to complement ptp-reseed
, by using
Prowlarr to find and download
potential reseeds from any supported site.
To get it set up, first install
Prowlarr. Be sure
your instance (or any of the *arrs) isn't exposed to the internet!
From there, simply use the UI to add any trackers/indexers you'd like to
search, as well as any downloaders. Then, add the following config to
~/.ptpapi.conf
:
[Prowlarr]
url=http://YOUR_PROWLER_HOSTNAME_OR_IP/
api_key=YOUR_API_KEY
If everything thing is all setup, running ptp-reseed-machine
will
scrape the first page of needforseed.php and attempt to download any
potential matches. See --help
for passing additional parameters or
different search targets.
After a download has been triggered, you can then use ptp-reseed
with your download client of choice to automatically reseed the path
into a client. Here's a simple example of a post script for
sabnzbd:
#!/bin/bash
if [[ "$SAB_PP_STATUS" -eq 0 ]]; then
ls *.iso *.img 2>/dev/null | xargs -r 7z x
ptp-reseed "$SAB_COMPLETE_DIR"
fi
or for a rtorrent.rc
:
method.set_key = event.download.finished, ptp_reseed, "execute.nothrow.bg={ptp-reseed,$d.base_path=}"
Concepts
Filters
Filters were designed as a way to take a full movie group, and narrow it down to a single torrent. A filter consists of multiple sub-filters, where the first sub-filter to match will download the torrent, and if not, the next sub-filter will be checked. If none of the sub-filters match, no download will occur. Filters are separate from the actual search parameters sent to the site
The full list of possible values for picking encodes is:
GP
orScene
576p
or720p
or1080p
XviD
orx264
HD
orSD
remux
ornot-remux
seeded
- the number of seeds is greater than 0 (deprecated, useseeders>0
)not-trumpable
- ignore any trumpable torrentsunseen
- ignores all torrents if you've marked the movie as seen or rated itunsnatched
- ignore all torrents unless you've never snatched one before (note that seeding counts as "snatched", but leeching doesn't) There are also values that allow for simple comparisons, e.g.size>1400M
.seeders
size
Note that it's possible to have two incompatible values, e.g. GP
and
Scene
, but this simply means the sub-filter won't ever match a
torrent, and will always be skipped over.
The possible values for sorting are:
most recent
(the default if none are specified)smallest
most seeders
largest
Examples
For instance, the filter smallest GP,720p scene,largest
would
attempt to download the smallest GP. If there are no GPs, it will try
to find a 720p scene encode. If it can't find either of those, it will
just pick the largest torrent available.
As another example, if you wanted to filter for encodes that are less
than 200MiB with only one seeder, you could use seeders=1 size<200M
.
Notes
I did this mostly for fun and to serve my limited needs, which is why it's not as polished as it could be, and will probably change frequently. Pull requests are welcomed.
Deprecated Configuration
The new ApiUser/ApiKey system is preferred, however if you find bugs or limitations, the old cookie-based method can be used:
Open the file ~/.ptpapi.conf
for editing, and make sure it looks
like the following:
[Main]
[PTP]
username=<username>
password=<password>
passkey=<passkey>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ptpapi-0.10.3.tar.gz
.
File metadata
- Download URL: ptpapi-0.10.3.tar.gz
- Upload date:
- Size: 41.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.7 Linux/6.7.4-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb9b87a692374d172a3ef446f8f428ba7c3c7ec9f06ed472bf19da6f7a6039d0 |
|
MD5 | c362a11ba1fa29a2b0a5668ed649168b |
|
BLAKE2b-256 | e5fdbb398353b6ad46f8c9b2de3d77d64d1712913fd318f6e71906348a44c882 |
File details
Details for the file ptpapi-0.10.3-py3-none-any.whl
.
File metadata
- Download URL: ptpapi-0.10.3-py3-none-any.whl
- Upload date:
- Size: 46.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.7 Linux/6.7.4-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8142e7c0a3987fe7dd0ca3270f47350bfd8647b0140563132e5de4504998ac71 |
|
MD5 | d9ea65105296e324517d1d0f36068672 |
|
BLAKE2b-256 | 63ff08cb599ef8f1c1a041bcf6145f72ce55f7a4013f2f763e3101be48d87b95 |