A Python library providing fast, thread-safe counter implementations. Currently at version 1.2.0 with type hints added. Active development on GitHub.
pip install fastcounterNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Create and use a FastWriteCounter.
Update your code to match the type signatures. For example, `increment()` now returns `None` explicitly.
Replace `from fastcounter import Counter` with `from fastcounter import FastWriteCounter` (or FastReadCounter) and adjust usage accordingly.
Ensure you import the correct counter type: use `FastWriteCounter` for counting operations, `FastReadCounter` for read-only access.
Replace `FastReadCounter` with `FastWriteCounter`.
Use `from fastcounter import FastWriteCounter` or `FastReadCounter`.
No dependency data recorded yet.