generics.generate_random_string
generics.generate_random_string(N)
Function to generate a random string of ascii lowercase letters and digits of length N.
Utilized to generate a random table name for the Ibis Tables.
Parameters
Name | Type | Description | Default |
---|---|---|---|
N | int | The length of random string to generate. | required |
Returns
Name | Type | Description |
---|---|---|
str: The random string of length N. |