Metadata-Version: 2.4
Name: gilas
Version: 0.1.0
Summary: Simple persistent Python data structures.
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == "test"

# gilas

Simple persistent Python data structures.

## Usage

```python
from gilas import plist, pdict

arr = plist()
arr.append(10)
arr.append(20)
print(arr[0])

items = pdict()
items["key"] = "value"
print(items["key"])
```

Each object stores its data in a local SQLite file named .gilas.db.
Objects keep a stable id you can use to reload them later in a new process.
