From aa49c30c2ac7ae6a61a15c9ac853ace2ac536624 Mon Sep 17 00:00:00 2001 From: Dan He Date: Thu, 23 Sep 2021 11:19:21 -0500 Subject: [PATCH] challenge1 --- 05_github.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/05_github.py b/05_github.py index 89eb2f6..a6c7909 100644 --- a/05_github.py +++ b/05_github.py @@ -6,7 +6,7 @@ import time if __name__ == "__main__": - url_1 = "https://api.github.com/emaadmanzoor" + url_1 = "https://api.github.com/users/emaadmanzoor" r = requests.get(url_1) print(r.status_code) print(r.json()) @@ -34,3 +34,5 @@ print("Sleeping until reset...") time.sleep(remaining_time) + +