add prnt.sc link generator.py

Add a url generator to search randomly through the uploaded images on prnt.sc

Signed-off-by: Kim Oliver Drechsel <kim@drechsel.xyz>
This commit is contained in:
Kim Oliver Drechsel 2021-09-17 00:23:35 +02:00
parent b324cefbf7
commit 7c6ebc8d51

34
prnt.sc link generator.py Normal file
View File

@ -0,0 +1,34 @@
import random
import string
import webbrowser
"""
prnt.sc is a web frontend for a third-party screenshot software
that automatically uploads the users screenshot and returns a url to the image to the clipboard
so that users can share their screenshot via the url with other people
This is a url generator that takes advantage of the url scheme to search randomly through the uploaded images
"""
NUMBER_OF_LINKS_TO_GENERATE = 5 # generates X urls at a time
URL_AUTO_OPEN = True # Open the URL automatically in your Browser
CLOSE_WINDOW_AFTER = True # Closes window at Script end (keep open to see/copy the original url)
##############
def generate_url(base_url: str = 'https://prnt.sc/'):
random_chars = ''.join(random.choice(string.ascii_lowercase) for _ in range(2))
random_digits = ''.join(random.choice(string.digits) for _ in range(4))
return f"{base_url}{random_chars}{random_digits}"
for _ in range(NUMBER_OF_LINKS_TO_GENERATE):
URL = generate_url()
print(URL)
if URL_AUTO_OPEN is True:
webbrowser.open(URL)
if CLOSE_WINDOW_AFTER:
input('\nPress Enter to Exit...')