Skip to content

hanneshapke/hashids.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hashids.py

Python port of the hashids library

Example:

from hashids import hashids;

hashids_lib = hashids("this is my salt")
hash = hashids_lib.encrypt(1, 2, 3)
numbers = hashids_lib.decrypt(hash)

print(hash)
print(numbers)

Will give:

eGtrS8
[1, 2, 3]

License

See LICENSE file

About

Python port of the hashids library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published