Metadata-Version: 2.2
Name: ParsWeather
Version: 0.0.5
Summary: A Python package for getting Iran's weather data, including temperature and RealFeel.
Author-email: Ali Ayati Qaffari <ayatiali910@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Ali Ayati Qaffari
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Profile, https://github.com/MrAAQPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4
Requires-Dist: lxml
Requires-Dist: requests

### ParsWeather 

ParsWeather یک پکیج برای دریافت اطلاعات اب هوای ایران هست

###  Install

شما میتوانید با دستور 
```pip install ParsWeather```
پکیج را نصب کنید

###  How to use

برای استفاده شما میتوانید از کد زیر استفاده کنید

```
from ParsWeather import WeatherForecast as wf

print(wf.get_temperature("تهران"))
print(wf.get_realfeel("تهران"))
print(wf.get_air_quality("تهران"))
print(wf.get_air_quality_aqi("تهران"))
print(wf.get_dust_dander_data("تهران"))
print(wf.get_weather_forecast("تهران"))
print(wf.get_radar_image_link("تهران"))
print(wf.get_sun_times("تهران"))
print(wf.get_forecast_details("تهران"))
print(wf.get_supported_cities())
print(wf.get_weather_forecast_air_aqi("تهران"))


```
