Skip to content

pynps 1.5.0

Compare
Choose a tag to compare
@evertonstz evertonstz released this 01 Jun 00:00
· 62 commits to master since this release

Pypi release is updated. Upgrade with pip using:

pip install pynps --upgrade

Binaries won't be available until pyinstaller starts working on python 3.8, anyone interested can track it here

Changelog

Multisearch

You can now do multisearch by joining multiple keywords together with +. An example

# searching for Spyro, Crash Bandcoot and Harvest Moon games on psx
pynps -cG psx "spyro+crash bandcoot+harvest moon"

d5aab01

Sorting search results

You're now able to sort the search output with a string by using the flag -s or --sort. Available options for sorting are: console or c, title_id or id, region or r, type or t, game_name or n, size or s.
You can use multiple options with a comma, when doing so there's hierarchy and the more to the left the option is, the more priority it has in sorting items.
When this flag is not used, pynps will default to "c,t,r,n" for sorting.
Example:

# the example below will sort the search by "type" and "size", "type" will take priority over "size"
pynps --sort "t,s" -zip -r usa -c psx -c psv "crash"

d5aab01

Extract PKG to a ZIP file #12

Option to extract the pkg into a zip file, instead of a folder, this is good for people looking to download a bunch of games for preservation sake. When downloading multiple games, each game will be their own zip file.
To use this option just call the flag -zip or --compress_zip like so:

pynps -zip -c psx "Umi no Nushi Tsuri"

PSA: zip files are stored inside a "ZIP" folder in your downloads, instead of "Extracted".

9d7ce5e