MCPcopy Create free account
hub / github.com/Project-MONAI/MONAI / rand_string

Function rand_string

tests/data/meta_tensor/test_meta_tensor.py:44–47  ·  view source on GitHub ↗
(min_len=5, max_len=10)

Source from the content-addressed store, hash-verified

42
43
44def rand_string(min_len=5, max_len=10):
45 str_size = random.randint(min_len, max_len)
46 chars = string.ascii_letters + string.punctuation
47 return "".join(random.choice(chars) for _ in range(str_size))
48
49
50class TestMetaTensor(unittest.TestCase):

Callers 1

get_imMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…