Metadata-Version: 2.1
Name: ptpapi
Version: 0.9.0
Summary: A small API for a mildly popular movie site
Home-page: https://github.com/kannibalox/PTPAPI
Author: kannibalox
Author-email: kannibalox@gmail.com
Requires-Python: >=3.7.2,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Utilities
Requires-Dist: Tempita (>=0.5.2,<0.6.0)
Requires-Dist: beautifulsoup4 (>=4.10.0,<5.0.0)
Requires-Dist: bencode.py (>=4.0.0,<5.0.0)
Requires-Dist: guessit (>=3.4.3,<4.0.0)
Requires-Dist: humanize (>=4.0.0,<5.0.0)
Requires-Dist: libtc (>=1.3.1,<2.0.0)
Requires-Dist: pyrosimple (>=2.7.0,<3.0.0)
Requires-Dist: requests (>=2.27.1,<3.0.0)
Project-URL: Repository, https://github.com/kannibalox/PTPAPI
Description-Content-Type: text/markdown

# PTPAPI

[![PyPI](https://img.shields.io/pypi/v/ptpapi)](https://pypi.org/project/ptpapi/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/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](https://virtualenv.readthedocs.org/en/latest/userguide.html#usage)
or [pipx](https://pypa.github.io/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:

```ini
[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-futured 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](http://pythonpaste.org/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](#filters)) to the
[downloadDirectory](ptpapi.conf.example#L9).

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 taking using
[Prowlarr](https://github.com/Prowlarr/Prowlarr) to find and download
peotential reseeds from any supported site.

To get it set up, first [install
Prowlarr](https://wiki.servarr.com/prowlarr/installation). Be sure
your instance (or any of the *arrs) isn't exposed to the internet!
From, 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`:

```ini
[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:

```bash
#!/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`:
```ini
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` or `Scene`
* `576p` or `720p` or `1080p`
* `XviD` or `x264`
* `HD` or `SD`
* `remux` or `not-remux`
* `seeded` - the number of seeds is greater than 0 (deprecated, use `seeders>0`)
* `not-trumpable` - ignore any trumpable torrents
* `unseen` - ignores all torrents if you've marked the movie as seen or rated it
* `unsnatched` - 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:

```ini
[Main]

[PTP]
username=<username>
password=<password>
passkey=<passkey>
```

