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 is a trivial wrapper around Python’s uuid library to create a persistent, per-machine UUID (called a ‘snowflake’) and give you a nice API to mess with it. Usage is simple:

>>> import snowflake
>>> snowflake.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

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
>>> snowflake.make_snowflake(snowflake_file='foo')
ee2b1891-ccd3-4a23-9246-4ce40d20e740
>>> snowflake.snowflake(snowflake_file='foo')
ee2b1891-ccd3-4a23-9246-4ce40d20e740

Limitations

Right now, snowflake only works on Unix-y systems.

License

Copyright (c) 2012, Shaddi Hasan All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

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-0.0.2.tar.gz (2.1 kB view details)

Uploaded Source

File details

Details for the file snowflake-0.0.2.tar.gz.

File metadata

  • Download URL: snowflake-0.0.2.tar.gz
  • Upload date:
  • Size: 2.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for snowflake-0.0.2.tar.gz
Algorithm Hash digest
SHA256 03776b8e97b8b3a0f5db7ee2be4070db380ed1561d51bb1046544c5149c33e61
MD5 3c8ff14fde4b19bda3b98cf38e023d79
BLAKE2b-256 2d716f98c4fc8ea115ae67ec30be08ee96e5b3ecb3fd1a84a40fd47ee667efb5

See more details on using hashes here.

Supported by

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