prnt.sc_url_generator/prnt.sc_link_generator.py

40 lines
1.1 KiB
Python

#!/usr/bin/env python3
import random
import string
import webbrowser
"""
prnt.sc is a web frontend for third-party screenshot software
that automatically uploads the user's screenshot and returns a url of the image to the clipboard
so that users can share their screenshot with others via the url.
This is a generator that uses the url scheme to randomly search 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()
if not CLOSE_WINDOW_AFTER:
print(URL)
if URL_AUTO_OPEN:
webbrowser.open(URL)
if not CLOSE_WINDOW_AFTER:
input('\nPress Enter to Exit...')