Registry / data / xocto
library9.0.3pypypi✓ verified 81d ago

A collection of Python service utilities used by Kraken Technologies, providing helpers for strings, dates, storage, retries, and more. Current version 9.0.3, requires Python >=3.9. Released regularly as part of Kraken's internal tooling.

pip install xocto
INSTALL
IMPORT
SIG · XOCTO
X
xocto
datapythonv9.0.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

importlib
from xocto import importlib
from xocto import storage

Basic usage showing storage setup, string slugification, and UTC date helper.

import os from xocto import storage, strings, dates storage.set_storage(storage.LocalStorage()) # Example: generate a slug title = "Hello World!" slug = strings.slugify(title) print(slug) # hello-world # Example: get current UTC time now = dates.utc_now() print(now)
Debug
Known issues
breakingIn version 9.0.0, the storage module's API changed. set_storage must be called before any storage operations, and the storage classes were renamed (e.g., LocalStorage instead of LocalFileStorage).
fix
Call storage.set_storage(storage.LocalStorage()) at startup. Update imports from old names.
affects: >=9.0.0
deprecatedThe old storage classes (e.g., LocalFileStorage, S3Storage) are deprecated in favour of LocalStorage, S3Storage, etc. without the 'File' prefix.
fix
Switch to the new names: LocalStorage, S3Storage, etc.
affects: >=8.0.0 <9.0.0
gotchaIf you use xocto.storage without calling set_storage first, all storage operations will fail with an unhelpful error.
fix
Always call storage.set_storage(...) at application startup.
affects: >=9.0.0
Upgrade
Version history
9.0.3latest on PyPI · released Apr 17, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
38 hits · last 30 days
node
32
OpenAI (training)
1
Resources
xocto — pip install xocto · libregistry