Metadata-Version: 2.4
Name: sync_dataclasses
Version: 0.1.0
Summary: A library for creating thread safe data classes.
Author-email: BHznJNs <441768875@qq.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/BHznJNs/sync_dataclasses
Project-URL: Issues, https://github.com/BHznJNs/sync_dataclasses/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# sync_dataclasses

A library for creating thread safe data classes.

## Getting started

### Install

```bash
pip install sync_dataclasses
```

### Usage

```python
from sync_dataclasses import SyncDataClass

class Data(SyncDataClass):
    value1: int = 0
    value2: str = ""
```
