From 81b40309758b08aaa96790d04461e94826a12a88 Mon Sep 17 00:00:00 2001 From: korea Date: Sun, 29 Aug 2021 13:58:32 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20'main.py'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..cdf5e40 --- /dev/null +++ b/main.py @@ -0,0 +1,9 @@ +import requests + +url = input('raw link: ') +sent = 0 + +while True: + requests.get(url) + sent += 1 + print(f'Views sent: %s' % sent) \ No newline at end of file