New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

atomic

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atomic

An atomic class that guarantees atomic updates to its contained value.

0.7.3
PyPI
Maintainers
1

====== Atomic

An atomic class that guarantees atomic updates to its contained value. ::

from atomic import AtomicLong
atomic = AtomicLong(0)
atomic += 1
atomic.value

Installation

To install atomic, use pip : ::

pip install atomic

Acknowledgement

This is heavily inspired by ruby-atomic <https://github.com/headius/ruby-atomic>_.

FAQs

Did you know?

Socket

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.

Install

Related posts