From 4a7ed4c738478b2bc5e8d09aa0081dd11c4791cf Mon Sep 17 00:00:00 2001 From: VincentKnightTesting Date: Mon, 2 May 2022 14:18:15 -0500 Subject: [PATCH] Added proper instructions --- README.md | 14 ++++++++++++++ weather.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e69de29..8a5cdd1 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file diff --git a/weather.py b/weather.py index aede105..b86c6eb 100644 --- a/weather.py +++ b/weather.py @@ -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) \ No newline at end of file +print(current_temp + "*F") \ No newline at end of file