Added proper instructions

This commit is contained in:
VincentKnightTesting 2022-05-02 14:18:15 -05:00
parent 4d62860bf7
commit 4a7ed4c738
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,14 @@
# weather-python
yeah run
```shell
pip install -U requirements.txt
```
to install dependencies
then run
```shell
python weather.py -h
```
to see how you use it.

View File

@ -31,4 +31,4 @@ current_temp = ktof(data2['main']['temp'])
max_temp = ktof(data2['main']['temp_max'])
min_temp = ktof(data2['main']['temp_min'])
print(current_temp)
print(current_temp + "*F")