hashids-python icon indicating copy to clipboard operation
hashids-python copied to clipboard

Implementation of hashids (http://hashids.org) in Python. Compatible with Python 2 and Python 3

Results 8 hashids-python issues
Sort by recently updated
recently updated
newest added

Hey there, this pull request changes the following things: - remove python2 support - add typing - add development setup In order to make it easier to contribute i added...

### Highlights * Python 3.7+ is the new minimum required version. * Added type hints. * Removed all Python 2 compatibility code. * Black line-length increased to 100. * Updated...

Is there a plan to include types in the source or to produce a type stub file?

hashids-python is not compatible with macOS (10.13.6). Please let me know how to fix it!

I use `hashids = Hashids(salt="hello", min_length=6, alphabet='0123456789')` But "Alphabet must contain at least 16 unique characters." execption raised. Why Alphabet must contain at least 16?

The last stable release is nearing three years old, and while that does not mean this project is dead, I have to wonder if the library is still reasonably on...

Hi there -- I've found a case were **two unique ids decode to the same integer**. As far as I can tell this won't cause any problems for me, I'd...

I'm seeing that the salt is limited in usable length (contrary to popular assumptions that you should use a "long random string"). For example, here's a session: ``` >>> from...