Metadata-Version: 2.1
Name: hamiltoncurrentweather_Rx168059
Version: 0.1.2
Summary: This package will get information about current weather in hamilton from weatherwatch website
Author-email: Muhammad Dwi Reza <dwireza1002@gmail.com>
Project-URL: Homepage, https://github.com/Rex-Project-Organization/Hamilton-Current-Weather
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE

# Hamilton-Current-Weather
This package will get information about current weather in hamilton from weatherwatch website

## How It Works
This package will scrap data from [weatherwatch](https://www.weatherwatch.co.nz/forecasts/Hamilton) to get information about current weather in hamilton

This package used BeautifulSoup4 and Requests to generate JSON output that'll be used for web or mobile apps

## How to Run
```
import hamiltoncurrentweather as hct

if __name__ == '__main__':
    hamilton_weather = hct.CurrentWeather('https://www.weatherwatch.co.nz/forecasts/Hamilton')
    print('main app')
    print(f'description: {hamilton_weather.description}')
    hamilton_weather.run()
```

# Author
Muhammad Dwi Reza
