This package will get information about current weather in hamilton from weatherwatch website
This package will scrap data from weatherwatch 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
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()
Muhammad Dwi Reza