Metadata-Version: 2.4
Name: fairyex
Version: 0.2.0
Summary: FairyEx - FEErical Extraction
Author: Harry Ung
Project-URL: Documentation, https://codacave.gitlab.io/fairyex/
Project-URL: Repository, https://gitlab.com/CodaCave/fairyex
Project-URL: Changelog, https://gitlab.com/CodaCave/fairyex/-/releases
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: polars
Requires-Dist: pyarrow

# FairyEx

FairyEx (for FEE Extraction) is a Python package to perform extraction with some ZIP solution file.


## Magical extraction

- Fast: focus on speed
- Efficient: low memory usage
- Easy: to install and to use


## Quickstart

```bash
pip install fairyex
```

```python
from fairyex import DarkSol

with DarkSol("Model Open World Solution.zip") as ds:
    df = ds.query(
        phase="STSchedule",
        children_class="Generator",
        children=ds.query_children("Generator"),
        properties=["Generation"],
        samples=["1", "2", "3"],
    )
```
