|
@@ -0,0 +1,17 @@
|
|
1
|
+#CLI Weather
|
|
2
|
+
|
|
3
|
+Get weather information from straight from the terminal. Simple script to interact with OpenWeatherMap's API
|
|
4
|
+
|
|
5
|
+### Usage
|
|
6
|
+```
|
|
7
|
+$ ./cli_weather.rb 11238
|
|
8
|
+Brooklyn Weather | Current Temp: 38.5 °F | clear sky
|
|
9
|
+```
|
|
10
|
+
|
|
11
|
+If no zip code is provided, the user will be promted to provide one:
|
|
12
|
+```
|
|
13
|
+$ ./cli_weather.rb
|
|
14
|
+Please enter the Zip code for the city you wish to get weather information
|
|
15
|
+08411
|
|
16
|
+Atlantic City Weather | Current Temp: 42.32 °F | clear sky
|
|
17
|
+```
|