pps

Crates.iopps
lib.rspps
version0.2.1
sourcesrc
created_at2021-08-26 07:08:35.684735
updated_at2021-08-30 12:44:32.836413
descriptionSearch the PyPI for packages by name aka `pip search`.
homepagehttps://github.com/tbehner/pps
repositoryhttps://github.com/tbehner/pps
max_upload_size
id442473
size594,493
(tbehner)

documentation

https://docs.rs/pps/0.1.0/pps/

README

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)

Commit count: 16

cargo fmt