Closed jamesshapiro closed 3 years ago
Suppose you have
ulid_string = '01EYV88PB2Y212QSR0AJ2JX5T4'
How would you derive a ulid object from the string?
Nvmd, figured it out:
parsed_ulid = ulid.parse(ulid_string)
ulid.from_str will be slightly more performant as parse attempts to handle all supported types/formats.
ulid.from_str
parse
Suppose you have
ulid_string = '01EYV88PB2Y212QSR0AJ2JX5T4'
How would you derive a ulid object from the string?