From 3c52c450c5bc790e803c728339dc8ad6f4ec7df5 Mon Sep 17 00:00:00 2001 From: Codingdecode <91722434+Codingdecode@users.noreply.github.com> Date: Fri, 1 Oct 2021 13:24:49 +0530 Subject: [PATCH 1/4] Rename captcha.py to Generate Captcha.py --- captcha.py => Generate Captcha.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename captcha.py => Generate Captcha.py (100%) diff --git a/captcha.py b/Generate Captcha.py similarity index 100% rename from captcha.py rename to Generate Captcha.py From 87ee1d7ad79dfe5e6f2c67e8749138d203cf98f1 Mon Sep 17 00:00:00 2001 From: Codingdecode <91722434+Codingdecode@users.noreply.github.com> Date: Fri, 1 Oct 2021 13:34:27 +0530 Subject: [PATCH 2/4] Rename generatepassword.py to Generate Password.py --- generatepassword.py => Generate Password.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename generatepassword.py => Generate Password.py (87%) diff --git a/generatepassword.py b/Generate Password.py similarity index 87% rename from generatepassword.py rename to Generate Password.py index 0610001..e93cfad 100644 --- a/generatepassword.py +++ b/Generate Password.py @@ -9,4 +9,4 @@ length = random.randrange(8,16) password = "".join(random.sample(mix,length)) -print("strong password - ", password) \ No newline at end of file +print("strong password - ", password) From 3fe0e502bc6218e7f4a437956541ce3602e9a34f Mon Sep 17 00:00:00 2001 From: Codingdecode <91722434+Codingdecode@users.noreply.github.com> Date: Fri, 1 Oct 2021 10:19:42 -0800 Subject: [PATCH 3/4] Rename texttohandwritten.py to text to handwritten.py --- texttohandwritten.py => text to handwritten.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename texttohandwritten.py => text to handwritten.py (81%) diff --git a/texttohandwritten.py b/text to handwritten.py similarity index 81% rename from texttohandwritten.py rename to text to handwritten.py index aec21b4..3eaec41 100644 --- a/texttohandwritten.py +++ b/text to handwritten.py @@ -2,4 +2,4 @@ text = "Web Crawling is all about viewing web pages as a whole and indexing it." \ "When a crawler (bot) crawls a website, it goes through every page and every link of the website for indexing." -pywhatkit.text_to_handwriting(text, rgb=(0,0,255)) \ No newline at end of file +pywhatkit.text_to_handwriting(text, rgb=(0,0,255)) From 804f2119601bde7448b1b1eeb3c94fcb33eae653 Mon Sep 17 00:00:00 2001 From: Codingdecode <91722434+Codingdecode@users.noreply.github.com> Date: Fri, 1 Oct 2021 10:33:42 -0800 Subject: [PATCH 4/4] Update and rename urlloadingtime.py to URL loadingtime.py --- urlloadingtime.py => URL loadingtime.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) rename urlloadingtime.py => URL loadingtime.py (97%) diff --git a/urlloadingtime.py b/URL loadingtime.py similarity index 97% rename from urlloadingtime.py rename to URL loadingtime.py index d153886..fd7072c 100644 --- a/urlloadingtime.py +++ b/URL loadingtime.py @@ -3,7 +3,6 @@ url = input("Enter the url whose loading time you want to check: ") - def get_load_time(url): if ("https" or "http") in url: open_this_url = urlopen(url) @@ -17,5 +16,4 @@ def get_load_time(url): return time_to_load - -print(f"\nThe time taken to load {url} is {get_load_time(url):.2} seconds.") \ No newline at end of file +print(f"\nThe time taken to load {url} is {get_load_time(url):.2} seconds.")