#search #package #name #pip #pypi #command-line #sorting

bin+lib pps

Search the PyPI for packages by name aka pip search

3 unstable releases

0.2.1 Aug 30, 2021
0.2.0 Aug 30, 2021
0.1.0 Aug 26, 2021

#7 in #pip

25 downloads per month

GPL-3.0-or-later

485KB
286 lines

PPS -- Python Package Index Search

Search the PyPI for packages by name, which was done by pip search in the past.

This was heavily inspired by pip_search which looks fantastic but is a little slow. Also the output is unnecessary hard to process by other command line tools.

Features

Search the Python Package Index by package name with pps STRING

Demo

and sort by name or release date with pps --sort-by (date|name)

search

Installation

cargo install pps

To keep muscle memory in place, you can use

 alias pip='function _pip(){
    if [ $1 = "search" ]; then
        pps "$2";
    else pip "$@";
    fi;
    };_pip

(credits to pip_search)

Dependencies

~12–26MB
~409K SLoC