Source code for hscmap.tinyid

import secrets


[docs] def tinyid(length: int = 16): return secrets.token_urlsafe(length)