Metadata-Version: 2.1
Name: sod
Version: 0.0.2
Summary: Load and write .sod files.
Home-page: https://github.com/GoodClover/sod
Author: Oliver Simmons
Author-email: oliversimmo@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# sod file format

**W.I.P.**

This is just a really bad file format at the moment - because why not.

## Installation

```terminal
pip intall sod
```

## Usage

```python
import sod

with open("example.sod", "r") as file:
    text = file.read()
    data = sod.loads(text)

with open("example2.sod", "w") as file:
    new_text = sod.dumps(data)
    file.write()

```



