Metadata-Version: 2.1
Name: PythonPackageUpdateChecker
Version: 1.0.15
Summary: A utility to automatically check for updates of installed Python packages and update them to the latest versions.
Author: Andrii Bohachev
Author-email: andriybogachev@gmail.com
License: MIT
Project-URL: Source, https://github.com/andriybogachev/PythonPackageUpdateChecker
Project-URL: Bug Reports, https://github.com/andriybogachev/PythonPackageUpdateChecker/issues
Keywords: python package update checker utility async aiohttp
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: setuptools
Requires-Dist: aiohttp
Requires-Dist: tqdm
Requires-Dist: asyncio

# PythonPackageUpdateChecker

PythonPackageUpdateChecker is a utility that allows to automatically check for updates of installed Python packages and update them to the latest versions.

It uses asynchronous requests to PyPI to fetch information about newest versions of packages, compares them to locally installed ones and executes pip commands to update packages if needed.

Progress of update is displayed using tqdm library and overall execution time is measured.

## Usage

To use PythonPackageUpdateChecker, simply run the python script. It will:

- Get local Python packages and versions
- Fetch latest versions from PyPI asynchronously 
- Determine which packages need update
- Display list of outdated packages
- Update required packages with pip
- Show progress bars during update
- Play sound on finish
- Print total execution time

## Requirements

The following libraries are required:

- pkg_resources
- subprocess
- asyncio
- time
- aiohttp
- tqdm
- winsound

Python 3.6 or later is required.

## License

This project is licensed under the MIT license. See the LICENSE file for details.

## Author

Andrii Bohachev

Email: andriybogachev@gmail.com

Social profiles:
- https://www.facebook.com/andriybogachev
- https://github.com/andriybogachev/  
- https://t.me/starf1re
- https://www.linkedin.com/in/andriibohachev/
