Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Python implementation of Twitter's Snowflake UUID generator?

Tags:

python

uuid

I need a sequential UUID generator like Twitter's Snowflake - https://github.com/twitter/snowflake/ .

But Snowflake is implemented in Scala, and I'm finding a similar project in the Python world, not Scala.

like image 863
lqez Avatar asked Oct 07 '22 03:10

lqez


1 Answers

OMG, I found this : https://github.com/erans/pysnowflake

like image 113
lqez Avatar answered Oct 11 '22 21:10

lqez