
Security News
Node.js Moves Toward Stable TypeScript Support with Amaro 1.0
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
UUID type is awesome, but, at the moment, the UUID type in the standard library does not support the uuid7 format.
lastuuid provide fast UUIDv7 generation made by the rust crate uuid7 compatible with Pydantic.
It has additional features that may helps for testing or inspecting UUIDv7.
lastuuid is a developer joke based on the nature of UUIDv7,
where the most recently generated UUID is always the last one when sorted.
>>> from lastuuid import uuid7
>>> uuid7()
UUID('019316cc-f99a-77b3-89d5-ed8c3cf1f50e')
There is no parameter here, the uuid is generated from the current time.
The implementation of uuid7 algorithm is made in the uuid7 rust crate.
This lib has been created because all the other library that implement uuid7 create there own UUID type, so its not easy to use with pydantic.
from uuid import UUID
from pydantic import BaseModel, Field
from lastuuid import uuid7
class Event(BaseModel):
id: UUID = Field(default_factory=uuid7)
On my machine the uuid7 is as fast (or slow) as the native uuid4.
$ python -m timeit "from lastuuid import uuid7; uuid7()"
200000 loops, best of 5: 1.8 usec per loop
$ python -m timeit "from uuid import uuid4; uuid4()"
200000 loops, best of 5: 1.82 usec per loop
There are other usefull function in the library that cab be found in the API documentation.
FAQs
Fast UUIDv7 Compatible with standard library type, and utils.
We found that lastuuid demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.