From fb7f255ca0d06cbced7989be2f605192b9500a55 Mon Sep 17 00:00:00 2001 From: woodjosh256 Date: Tue, 10 Dec 2019 22:46:19 +0000 Subject: [PATCH] Add run on repl.it badge to README This pull request configures this repository to be run on Repl.it. It adds a `.replit` configuration file and a Repl.it badge to the `README`. You can read more about running repos on Repl.it [here](https://docs.repl.it/repls/dot-replit), or view the Repl [here](https://repl.it/@joshwood/wttrin). --- .replit | 2 ++ README.md | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 .replit diff --git a/.replit b/.replit new file mode 100644 index 0000000..312490c --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "python3" +run = "echo Enter city to receive weather data from: ;read city; eval \"curl wttr.in/$city\";" diff --git a/README.md b/README.md index 5c4c470..d77afe0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ *wttr.in — the right way to check the weather!* +[![Run on Repl.it](https://repl.it/badge/github/chubin/wttr.in)](https://repl.it/github/chubin/wttr.in) + wttr.in is a console-oriented weather forecast service that supports various information representation methods like terminal-oriented ANSI-sequences for console HTTP clients (curl, httpie, or wget), HTML for web browsers, or PNG for graphical viewers.