45 lines
1.0 KiB
Markdown
45 lines
1.0 KiB
Markdown
# SWeatherpy
|
|
|
|
python application for weather data collection and displaying of the data in a readable human format.
|
|
|
|
current cli commands
|
|
`python3 /home/stan/Documents/Dev/SWeatherpy/main-test.py`
|
|
|
|
the program will ask the user to input location format is as follows
|
|
`Town, State`
|
|
`town, shortcode-state` eg `town, wi`
|
|
|
|
Current Folder Structure
|
|
```
|
|
SWeatherpy/
|
|
│
|
|
├── forecastformat.py
|
|
├── LICENSE
|
|
├── locweatherdata.py
|
|
├── main-test.py
|
|
├── main.py
|
|
├── radar.py
|
|
├── README.md
|
|
└── weathersettings.py
|
|
```
|
|
|
|
Future Structure Potentially
|
|
```
|
|
SWeatherpy/
|
|
│──Source Folder
|
|
│
|
|
├── Resources
|
|
├── data (such as saved progress maps data and related potentially.)
|
|
├── locations (may want a system scrap radar data more accurately)
|
|
└── cache (we just assume cache will be needed)
|
|
│
|
|
├── forecastformat.py
|
|
├── LICENSE
|
|
├── locweatherdata.py
|
|
├── main-test.py
|
|
├── main.py
|
|
├── radar.py
|
|
├── README.md
|
|
└── weathersettings.py
|
|
|
|
``` |