This repository has been archived on 2021-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
imgupload-legacy/functions.py
BBaoVanC 841bb513d3 Allow easy customization of filename generation
Added a new file called functions.py which contains user-customizable
functions, instead of requiring the user to edit imgupload.py.
2020-09-02 17:14:28 -05:00

9 lines
231 B
Python

import string
import random
def generate_name():
chars = string.ascii_letters + string.digits # uppercase, lowercase, and numbers
name = ''.join((random.choice(chars) for i in range(8))) # generate name
return name