__init__.py 119 B

12345678
  1. from random import randint
  2. def random_db_name():
  3. return 'test' + str(randint(0, 1000000))
  4. failed_requests = []