threadsafe

Thread-safe data structures


Keywords
data-structures, python, thread, threadsafe
License
GPL-3.0
Install
pip install threadsafe==1.0.0

Documentation

threadsafe

Library is intended for easy, simple use of thread safe data structures in Python. Getting started is easy as,

from threadsafe.safe_csv import SafeDictWriter

writer = SafeDictWriter()
... (Supports all normal DictWriter methods that the csv.DictWriter class provides)