Skip to content

Unique-ID is a small lib to generate unique ids - string values.

License

Notifications You must be signed in to change notification settings

slawek87/unique-id

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UNIQUE-ID

Unique-ID is a small lib to generate unique ids - string values.

HOW TO INSTALL?

To install unique-id use pip package manager.

pip install unique-id

HOW TO USE IT?

To get unique ID you have to call method get_unique_id.

from unique_id import get_unique_id

# Default returns id with length 14 and without `:*^`\",.~;%+-'` chars.
my_id = get_unique_id()
print(my_id)

# Returns id with length 8 and without `A` and `a` letters.
my_id = get_unique_id(length=8, excluded_chars="Aa")
print(my_id)

About

Unique-ID is a small lib to generate unique ids - string values.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages