All-In-One-Python-Projects
All-In-One-Python-Projects copied to clipboard
Adds weather Alert notification system
solves #15 Adds the weather alert notification py script
I used https://api.openweathermap.org/data/2.5/find
@king04aman plz review this
Thank you for your contribution! I really appreciate your work on the weather alert notification system—as it's a great start. I have a few suggestions that could help enhance it even further:
- Security - Please use environment variables to store the API key instead of hard-coding it.
- Error Handling - Enhance error handling by catching specific exceptions to better identify issues.
- Input Validation - Add validation for user inputs to ensure they are numeric and sensible.
- Function Documentation - Include docstrings for your functions to improve clarity.
- Logging - Consider using a logging framework instead of print statements for better output management.
These tweaks would make the code more secure and easier to maintain. I’m excited to see your updates!
@king04aman made the required changes
Adding a README file significantly increase project clarity and understanding.
Done 👍