Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion generatepassword.py → Generate Password.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
length = random.randrange(8,16)

password = "".join(random.sample(mix,length))
print("strong password - ", password)
print("strong password - ", password)
4 changes: 1 addition & 3 deletions urlloadingtime.py → URL loadingtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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.")
print(f"\nThe time taken to load {url} is {get_load_time(url):.2} seconds.")
2 changes: 1 addition & 1 deletion texttohandwritten.py → text to handwritten.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
pywhatkit.text_to_handwriting(text, rgb=(0,0,255))