Skip to main content

Get the latest version of the specified python package name in the pypi.

Project description

get_pypi_latest_version

PyPI SemVer2.0 Documentation Status

1. Install package by pypi

pip install get_pypi_latest_version

2. Run by command line

  • Usage:

    $ get_pypi_latest_version -h
    usage: get_pypi_latest_version [-h] [-a] package_name
    
    positional arguments:
    package_name        The specified python package name. e.g. opencv-python.
    
    optional arguments:
    -h, --help          show this help message and exit
    -a, --all_versions  Whether to return all release versions. Default is
                        False.
    
  • Example:

    $ get_pypi_latest_version opencv-python
    # 4.7.0.72
    
    $ get_pypi_latest_version opencv-python -a
    # 4.7.0.72
    # ['4.7.0.72', '4.7.0.68', '4.6.0.66', '4.5.5.64', '4.5.5.62', '4.5.4.60', '4.5.4.58', '4.5.3.56', '4.5.2.54', '4.5.2.52', '4.5.1.48', '4.4.0.46', '4.4.0.44', '4.4.0.42', '4.4.0.40', '4.3.0.38', '4.3.0.36', '4.2.0.34', '4.2.0.32', '4.1.2.30', '4.1.1.26', '4.1.0.25', '4.0.1.24', '4.0.0.21', '3.4.9.33', '3.4.8.29', '3.4.7.28', '3.4.6.27', '3.4.5.20', '3.4.4.19', '3.4.3.18', '3.4.2.17', '3.4.18.65', '3.4.17.63', '3.4.17.61', '3.4.16.59', '3.4.16.57', '3.4.15.55', '3.4.14.53', '3.4.14.51', '3.4.13.47', '3.4.11.45', '3.4.11.43', '3.4.11.41', '3.4.10.37', '3.4.1.15', '3.4.0.14']
    
    # case: package name error
    $ get_pypi_latest_version opencv
    # ValueError: No version information of opencv-pytho. Please check if the package name correct.
    

3. Use by python script

from get_pypi_latest_version import GetPyPiLatestVersion

obtainer = GetPyPiLatestVersion()

package_name = 'opencv-python'
latest_version = obtainer(package_name)
print(latest_version)

result = obtainer(package_name, return_all_versions=True)
latest_version = result[0]
all_versions = result[1]
print(latest_version)
print(all_versions)

Reference

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

get_pypi_latest_version-0.1.0-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file get_pypi_latest_version-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for get_pypi_latest_version-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cfed45689aaa92acb7144a33f576142ca24ec2b3e094fdb9d984c0ed8f263d2a
MD5 2fd857171bd996dd86ee59003de466d0
BLAKE2b-256 3436932de1a98399801fd0037f0df32912f9e50b55e12f97edace5ca9a56480d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page