15 lines
		
	
	
		
			336 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			336 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python3
 | |
| """
 | |
| functions.py
 | |
| 
 | |
| Functions used by imgupload which can be easily customized.
 | |
| """
 | |
| 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
 |