Metadata-Version: 2.4
Name: lb-easy-weather
Version: 0.0.2
Summary: Simple weather library for lazy developers
Home-page: https://github.com/logic-break/logic-break/tree/main/libraries/lb_easy_weather
Author: logic-break
Author-email: abibasqabiba@gmail.com
License: Non-Commercial
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary


# lb_easy_weather
© Copyright logic-break 2026

https://github.com/logic-break/logic-break/tree/main/libraries/lb_easy_weather


> lib made for lazy, by lazy  

installation:

    pip install lb-easy-weather

**NOTE: in code, you must import lb_easy_weather**


# Usage:
.get("Minsk") : returns dict, example: {'City': 'Minsk', 'Country': 'Belarus', 'Temp': '6.0°C', 'Wind': '10.8 km/h'}
# Example:
```
import lb_easy_weather as weather

# Get dictionary
data = weather.get("Minsk")
print(data) 
# Output: {'City': 'Minsk', 'Country': 'Belarus', 'Temp': '6.0°C', 'Wind': '10.8 km/h'}
```
