Skip to main content

Simple persistent unique IDs.

Project description

I’ve often found myself needing to have a per-machine unique identifier, but actually getting one of these is harder than it should be. You can’t just use the MAC address, since those aren’t guaranteed to be unique, especially when you’re working with a batch of cheap embedded devices. While not rocket science, it’s also not trivial to get the MAC address of a box sometimes: which interface to use? What if you change network cards? What if you have to spoof a MAC address? POSIX specifies gethostid(1), but on Linux the man page notes under “Bugs” that “It is impossible to ensure that the identifier is globally unique.” Indeed, my laptop and my work computer have the same hostid value.

snowflake_uuid is a trivial wrapper around Python’s uuid library to create a persistent, per-machine UUID (called a ‘snowflake’, not to be confused with the [data warehousing project](https://www.snowflake.com)) and give you a nice API to mess with it. Usage is simple:

>>> import snowflake_uuid
>>> snowflake_uuid.snowflake()
'7232c1c3-f6d1-4aec-bedd-c7e4c10dc8d3'

There’s also a script that can be run from the command line:

$ snowflake 7232c1c3-f6d1-4aec-bedd-c7e4c10dc8d3

Installation and Setup

To generate a machine’s snowflake ID, just install snowflake:

$ pip install snowflake_uuid

Or from source:

$ python setup.py install

The machine’s snowflake is saved in /etc/snowflake during installation. Any user can read this file, but only users with root access can modify it. You can also generate other snowflakes in other locations, so each user (or application) can make their own snowflakes.

Of course, you can do all this in Python too:

>>> import snowflake_uuid
>>> snowflake_uuid.make_snowflake(snowflake_file='foo')
ee2b1891-ccd3-4a23-9246-4ce40d20e740
>>> snowflake_uuid.snowflake(snowflake_file='foo')
ee2b1891-ccd3-4a23-9246-4ce40d20e740

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

snowflake_uuid-0.1.1.tar.gz (3.3 kB view details)

Uploaded Source

File details

Details for the file snowflake_uuid-0.1.1.tar.gz.

File metadata

  • Download URL: snowflake_uuid-0.1.1.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for snowflake_uuid-0.1.1.tar.gz
Algorithm Hash digest
SHA256 eaf629fd1787f6aca495020116fc92149d012c29962d558f42b64182ddff77a8
MD5 d41904c4b12a2fc33363852d337b6b63
BLAKE2b-256 343f46fe2c5b065c2a9bae8bc14b1769ce2a352a01f6aeac9e3749fc71943aaa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page