(low, high)
| 546 | |
| 547 | |
| 548 | def generate_random_string(low, high): |
| 549 | length = random.randint(low, high) |
| 550 | letters = string.ascii_letters # + string.digits |
| 551 | return ''.join([random.choice(letters) for _ in range(length)]) |
| 552 | |
| 553 | # |
| 554 | # clone JUST a website, and export it. |
no outgoing calls
no test coverage detected