An API for accessing Python packet information hosted on pypi.org
Project description
jk_pypiorgapi
Introduction
This python module provides an API for accessing Python packet information hosted on pypi.org.
Information about this module can be found here:
Why this module?
Apparently quite some people would like to retrieve information from pypi.org
. As I was not able to find a suitable package quickly that already implemented
such behavior I decided to implement an own one and provide it publically.
How to use this module
Import this module
Please include this module into your application using the following code:
import jk_pypiorgapi
Instantiate the API object
In order to access the API you have to instantiate an API object. This is done as shown here:
api = jk_pypiorgapi.PyPiOrgAPI()
NOTE: The reason behind that is simple: Code flexibility.
This way modifications and extensions will be possible if some things change with pypi.org
.
So please first instantiate an API object, then you can use it.
List existing packages
If you want to access a list of all packages hosted on pypi.org
, you can use this method:
packageNames = api.listAllPackages()
Please be aware that invoking this method is expensive. The reason why calling is method is expensive is that the package index nowadays has over 16 MBytes in size.
Please use this method wisely to avoid server load on pypi.org
and do not download the package index too frequently!
List existing packages
If you want to retrieve information about a certain package hosted on pypi.org
, you can use this method:
jData = api.getPackageInfoJSON("jk_pypiorgapi")
This will look up the package jk_pypiorgapi
and retrieve all information about it as a JSON data structure. This method directly provides the information pypi.org
provides
via its API.
NOTE: For experimenting you might want to display this data in an easy way. jk_json
provides a convenience method named prettyPrint()
for that purpose:
import jk_json
jk_json.prettyPrint(jData)
Dependencies
This module has the following dependencies:
- bs4
- jk_furl
- jk_prettyprintobj
Author(s)
- Jürgen Knauth: pubsrc@binary-overflow.de
License
This software is provided under the following license:
- Apache Software License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for jk_pypiorgapi-0.2021.4.14.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2007b0b7d08c9404faf0da694bcb7b345df9898e3aa315df7c821acfc257243d |
|
MD5 | f99943e8268184d14ab6253f858f5f14 |
|
BLAKE2b-256 | 92956f81cf1a3b9d202b0326e0661cb369ca159ff55e6329201c7f9e5b298ce5 |