Epochly is a transparent performance optimization library for Python applications that provides automatic caching, memoization, and profiling. Version 0.5.73 supports Python >=3.9 and is actively maintained. Release cadence is weekly with frequent minor updates.
pip install epochlyVerified import paths — ran on the pinned version, not inferred.
Basic usage: apply caching via decorator.
Always create an instance: `e = Epochly()`. Then use `@e.cache`.
Replace `from epochly import profile` with `from epochly import Epochly` and use `@Epochly.profile`.
Use `Epochly(cache_concurrency=True)` for thread-safe caching.
No dependency data recorded yet.