# Quick tip: Generating unique IDs in python
3 min read
There are several cases where we need to generate a unique identifier in our applications. One way to do it is to roll your own implementation, usually randomly picking characters in a recursive way.