Metadata-Version: 2.4 Name: ulid-transform Version: 2.2.9 Summary: Create and transform ULIDs License-Expression: MIT License-File: LICENSE Author: J. Nick Koston Author-email: nick@koston.org Requires-Python: >=3.11 Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Programming Language :: Python :: 3.14 Classifier: Topic :: Software Development :: Libraries Project-URL: Bug Tracker, https://github.com/bluetooth-devices/ulid-transform/issues Project-URL: Changelog, https://github.com/bluetooth-devices/ulid-transform/blob/main/CHANGELOG.md Project-URL: Repository, https://github.com/bluetooth-devices/ulid-transform Description-Content-Type: text/markdown # Fast ULID transformations

CI Status Test coverage percentage

Poetry black pre-commit CodSpeed Badge

PyPI Version Supported Python versions License

Create and transform ULIDs This library will use the C++ implementation from https://github.com/suyash/ulid when the C extension is available, and will fallback to pure python if it is not. ## Example ```python >>> import ulid_transform >>> ulid_transform.ulid_hex() '01869a2ea5fb0b43aa056293e47c0a35' >>> ulid_transform.ulid_now() '0001HZX0NW00GW0X476W5TVBFE' >>> ulid_transform.ulid_now_bytes() b'\x01\x9eS\x9d\x1bhl~\x1e\xf7\x959\xe1\xf2\xbe\xea' >>> ulid_transform.ulid_at_time(1234) '000000016JC62D620DGYNG2R8H' >>> ulid_transform.ulid_at_time_bytes(1234) b'\x00\x00\x00\x12\xd4Pq+\x1eG?\x91\xe9+|\xbd' >>> ulid_transform.ulid_to_bytes('0001HZX0NW00GW0X476W5TVBFE') b'\x00\x00c\xfe\x82\xbc\x00!\xc0t\x877\x0b\xad\xad\xee' >>> ulid_transform.bytes_to_ulid(b"\x01\x86\x99?\xe8\xf3\x11\xbc\xed\xef\x86U.9\x03z") '01GTCKZT7K26YEVVW6AMQ3J0VT' >>> ulid_transform.ulid_to_timestamp('0001HZX0NW00GW0X476W5TVBFE') # milliseconds since the epoch 1677623996 >>> ulid_transform.ulid_to_timestamp(b'\x00\x00c\xfe\x82\xbc\x00!\xc0t\x877\x0b\xad\xad\xee') # also accepts bytes 1677623996 >>> ulid_transform.ulid_to_bytes_or_none('0001HZX0NW00GW0X476W5TVBFE') b'\x00\x00c\xfe\x82\xbc\x00!\xc0t\x877\x0b\xad\xad\xee' >>> ulid_transform.ulid_to_bytes_or_none(None) >>> ulid_transform.bytes_to_ulid_or_none(b'\x00\x00c\xfe\x82\xbc\x00!\xc0t\x877\x0b\xad\xad\xee') '0001HZX0NW00GW0X476W5TVBFE' >>> ulid_transform.bytes_to_ulid_or_none(None) ``` ## Installation Install this via pip (or your favourite package manager): `pip install ulid-transform` ## Contributors ✨ Thanks to https://github.com/suyash/ulid which provides the C++ implementation guts. Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! ## Credits This package was created with [Copier](https://copier.readthedocs.io/) and the [browniebroke/pypackage-template](https://github.com/browniebroke/pypackage-template) project template.