Metadata-Version: 2.1
Name: openweatherpy
Version: 0.0.7
Summary: This module helps to retrieve weather reports from openweathermap.org.
Home-page: https://github.com/Ajay2810-hub/OpenweatherPy
Author: Ajay Lingayat
Author-email: lingayatajay2810@gmail.com
License: UNKNOWN
Description: # OpenweatherPy
        
        [![Downloads](https://pepy.tech/badge/openweatherpy)](https://pepy.tech/project/openweatherpy)
        [![Downloads](https://pepy.tech/badge/openweatherpy/month)](https://pepy.tech/project/openweatherpy/month)
        [![Downloads](https://pepy.tech/badge/openweatherpy/week)](https://pepy.tech/project/openweatherpy/week)
        [![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
        [![Latest PyPI version](https://img.shields.io/pypi/v/openweatherpy.svg)](https://pypi.org/project/openweatherpy)
        [![Supported Python versions](https://img.shields.io/pypi/pyversions/openweatherpy.svg)](https://pypi.org/project/openweatherpy)
        
        Table of contents
        ================
         * [About](#about)
         * [Requirements](#requirements)
         * [Dependencies](#dependencies) 
         * [Installation](#installation)
         * [Usage](#usage) 
         * [License](#license) 
        
        ## About
        This project retrieves the weather data from openweathermap.org in JSON format. It also provides data in different languages and in different units like Fahrenheit, Celsius and Kelvin. 
        
        ## Requirements
        Ensure that you have an openweathermap.org Api key. If not, then [click here](https://openweathermap.org/api) to create one. 
        ```
         python>=3.0
        ```
        
        ## Dependencies
        ```
         requests
        ```
        
        ##  Installation
        ```python
         $ pip install openweatherpy
        ```
        
        ## Usage
        ```python
         >>> from OpenweatherPy import Weather
         >>> weather = WeatherPy('API_KEY')
        ```
        
        **Get report of a city or a country**
        ```python
         >>> city = weather.query(city='City Name') #Get weather report of a city
        
         >>> country = weather.query(country='Country Code') #Get weather report of a country
        
         >>> location = weather.query(city='City Name', country='Country Code') #City and Country keywords and can be used at a same time
        ```
        
        **Get weather and it's description**
        ```python
         >>> mumbai = weather.query(city='mumbai')
        
         >>> mumbai.weather
         >>> mumbai.description
        ```
        
        Output:
        ```
         Clouds
         broken clouds
        ```
        
        **Get temperature, pressure, humidity, max temperature, min temperature**
        ```python
         >>> mumbai.temperature
         >>> mumbai.pressure
         >>> mumbai.humidity
         >>> mumbai.temp_max
         >>> mumbai.temp_min
        ```
        
        Output:
        ```
         289.57
         1018.0
         72.0
         290.37
         288.71
        ```
        
        **Get co-ordinates**
        ```python
         >>> mumbai.co_ordinates
        ```
        
        Output:
        ```
         {'lon': 72.85, 'lat': 19.01}
        ```
        
        **Get cloudiness, sunrise time, sunset time and timezone**
        ```python
         >>> mumbai.clouds
         >>> mumbai.sunrise
         >>> mumbai.sunset
         >>> mumbai.timezone
        ```
        
        Output:
        ```
         {'all': 75}
         1599872150
         1599916449
         19800
        ```
        **Note**: The sunrise, sunset and timezone are as per UTC time. 
        
        **Get wind details**
        ```python
         >>> mumbai.wind
        ```
        
        Output:
        ```
         {'speed': 4.1, 'deg': 150, 'gust': 9.3}
        ```
        
        **Get city Id**
        ```python
         >>> mumbai.id
        ```
        Output:
        ```
         1275339
        ```
        
        **Get average visibility meter**
        ```python
         >>> mumbai.visibility
        ```
        Output:
        ```
         2500
        ```
        
        **Get weather report of location by Id**
        ```python
         >>> manhattan = weather.getbyid(5125771) 
        ```
        
        **Get weather report of a location by geographical co-ordinates i.e latitude and longitude**
        ```python
         >>> delhi = weather.getbycoords(lat=28.67, lon=77.22) 
        ```
        
        **Get weather report in different language**
        
        The default language is english (en). 
        ```python
         >>> weather = WeatherPy('API_KEY', lang='hi') 
        ```
        
        **Get weather report in different unit**
        
        The default unit is Kelvin and optional are celsius and fahrenheit. 
        ```python
         >>> weather = WeatherPy('API_KEY', unit='Fahrenheit', lang='hi') 
        ```
        
        **Get all language codes**
        ```
         >>> weather.languages() 
        ```
        
        Output:
        ```
         {
            'af': 'Afrikaans',
            'al': 'Albanian',
            'ar': 'Arabic',
            'az': 'Azerbaijani',
            'bg': 'Bulgarian',
            'ca': 'Catalan',
            'cz': 'Czech',
            'da': 'Danish',
            'de': 'German',
            'el': 'Greek',
            'en': 'English',
            'eu': 'Basque',
            'fa': 'Persian(Farsi)',
            'fi': 'Finnish',
            'fr': 'French',
            'gl': 'Galician',
            'he': 'Hebrew',
            'hi': 'Hindi',
            'hr': 'Croatian',
            'hu': 'Hungarian',
            'id': 'Indonesian',
            'it': 'Italian',
            'ja': 'Japanese',
            'kr': 'Korean',
            'la': 'Latvian',
            'lt': 'Lithuanian',
            'mk': 'Macedonian',
            'no': 'Norwegian',
            'nl': 'Dutch',
            'pl': 'Polish',
            'pt': 'Portuguese',
            'pt_br': 'Português Brasil',
            'ro': 'Romanian',
            'ru': 'Russian',
            'sv, se': 'Swedish',
            'sl': 'Slovenian',
            'sp, es': 'Spanish',
            'sr': 'Serbian',
            'th': 'Thai',
            'tr': 'Turkish',
            'ua, uk': 'Ukranian',
            'vi': 'Vietnamese',
            'zu': 'Zulu',
         }
        ```
        
        ## License
        ``openweatherpy`` is distributed under the terms of [MIT License](https://choosealicense.com/licenses/mit) . 
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
Provides-Extra: dev
