Metadata-Version: 2.1
Name: versionchecker
Version: 1.0.0
Summary: Check for outdated packages installed on your system and get the latest version number
Home-page: https://github.com/usvimal/versionchecker
Author: Vimal
Author-email: usvimal@gmail.com
License: UNKNOWN
Download-URL: https://github.com/usvimal/versionchecker/archive/1.0.0.tar.gz
Description: # versionchecker
        
        Check for outdated packages installed on your system and get the latest version number
        
        ### Installation
         `pip install versionchecker`
        
        ### Usage
        The package list should be in the format  {package_name: online_name}
        
        >	from versionchecker import check_packages
        	packages = {
        		'urllib3': 'urllib3',
        		'bs4': 'beautifulsoup4'
        	}
            results, latest_version = check_packages(packages)
            print(results)
            print(latest_version)
        
        
            {'urllib3': True, 'bs4': False}
            {bs4': '4.8.0'}
        
        
        
        License
        ----
        MIT
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
