Metadata-Version: 2.1
Name: covid
Version: 0.1.0
Summary: Python SDK to get information regarding the novel corona virus provided by Johns Hopkins university
Home-page: https://ahmednafies.github.io/covid/
Author: Ahmed Nafies
Author-email: ahmed.nafies@gmail.com
License: MIT
Project-URL: Documentation, https://ahmednafies.github.io/covid/
Project-URL: Source, https://github.com/ahmednafies/covid
Description: # Covid
        
        ## Description
        
        Python SDK to get information regarding the novel corona virus provided by Johns Hopkins university
        
        ## How to install
        
            pip install covid
        
        ## Dependencies
        
            pydantic
            requests
        
        ## How to use
        
            import covid
        
            covid.data()
        
        ### result
        
            [
                {
                    'country': 'Mainland China',
                    'confirmed': 80756,
                    'deaths': 3136,
                    'recovered': 60096,
                    'latitude': 30.5928,
                    'longitude': 114.3055,
                    'last_update': 1582264984000
                },
                {
                    'country': 'Italy',
                    'confirmed': 9172,
                    'deaths': 463,
                    'recovered': 724,
                    'latitude': 43.0,
                    'longitude': 12.0,
                    'last_update': 1583777591000
                },
                ...
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
