An open API service indexing awesome lists of open source software.

https://github.com/cablehead/python-snowflake

A Python generator for the Twitter Snowflake scheme
https://github.com/cablehead/python-snowflake

Last synced: about 2 months ago
JSON representation

A Python generator for the Twitter Snowflake scheme

Awesome Lists containing this project

README

        

A Python generator for the [Twitter
Snowflake](https://github.com/twitter/snowflake) scheme in 61 lines of spacious
code.

```python

>>> import snowflake
>>> s = snowflake.generator(1, 1)
>>> s.next()
1132805160360349696
>>> s.next()
1132805164143611904
>>> s.next()
1132805168782512128

# convenience to convert a snowflake to a unix timestamp
>>> snowflake.snowflake_to_timestamp(1132805168782512128)
1413056012
```