python-libuuid
python-libuuid copied to clipboard
Faster UUID generation using libuuid
Does this package work with windows os? I'm having trouble installing it on my machine. I get the error: error: Microsoft Visual C++ 9.0 is required. Get it from http://aka.ms/vcpython27...
When installing for python 3 I get this error: ``` ImportError: /usr/local/lib/python3.5/dist-packages/libuuid/_uuid.cpython-35m-x86_64-linux-gnu.so: undefin ed symbol: PyString_FromStringAndSize ``` This is because PyString_FromStringAndSize doesn't exist for python 3. Switch to using PyBytes_FromStringAndSize.
Adds support for: ```python libuuid.FastUUID('d7cfb958-8cb5-477c-b7ec-80ecaf1c8d67') ``` which is 2x faster than ```python import uuid uuid.UUID('d7cfb958-8cb5-477c-b7ec-80ecaf1c8d67') ```
luuid is not a separate library on Mac OS but is included in System.dylib If you decide to include this, it would be great if you could also update the...
I have a daemon that calls uuid.uuid1() occassionally. It eventually hits the file descriptor limit because, as far as I can tell, /var/lib/libuuid/clock.txt is never closed: ``` lrwx------ 1 root...