Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kreusada/ppfl
Python Package Finder Library
https://github.com/kreusada/ppfl
Last synced: 25 days ago
JSON representation
Python Package Finder Library
- Host: GitHub
- URL: https://github.com/kreusada/ppfl
- Owner: Kreusada
- License: mit
- Created: 2021-09-24T13:10:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-24T13:13:08.000Z (about 3 years ago)
- Last Synced: 2024-09-28T09:21:58.773Z (about 1 month ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PPFL - Python Package Finder Library
This project is home to a command line interface used
to search PyPi for various projects.Using this CLI is really simple, just type "pypi" and then
the name of your project.```sh
pypi
```The command will be processed and will return the following fields:
* Name
* Version
* Description
* Author
* License
* Python Requirements
* Project URL
* Project URLs
* ClassifiersIf the project doesn't qualify or provide for one of these fields,
they will be omitted. License names are only shown if they are under 100 characters,
as some maintainers like to include the LICENSE file content in the field, when
theoretically it should be just the license name. This limit is imposed to take better
care over the UI and aligned representation of data.### Example Usage
```
pypi pathlib>>>
pathlib | 1.0.1
~~~~~~~~~~~~~~~
Object-oriented filesystem pathsAuthor: Antoine Pitrou
License: MIT License
Project URL: https://pypi.org/project/pathlib/Project URLs:
- Download: https://pypi.python.org/pypi/pathlib/
- Homepage: https://pathlib.readthedocs.org/Classifiers:
- Topic :: Software Development :: Libraries
- Topic :: System :: Filesystems
- License :: OSI Approved :: MIT License
- Operating System :: OS Independent
- Intended Audience :: Developers
- Development Status :: 5 - Production/Stable
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
```### Installation
Install through pip:
```sh
pip install ppfl
```### Requirements
The ``requests`` module is required for this CLI.