Get a random string of length 'length
(length)
| 60 | |
| 61 | |
| 62 | def get_string(length): |
| 63 | """Get a random string of length 'length'""" |
| 64 | alpha = string.ascii_uppercase + string.digits |
| 65 | temp = ''.join(random.choice(alpha) for _ in range(length)) |
| 66 | return f'tmp.{temp}{TMPSUFFIX}' |
| 67 | |
| 68 | |
| 69 | def get_tempdir(): |
no outgoing calls