Metadata-Version: 2.4
Name: destack
Version: 0.55.3
Summary: Python client for Destack
Project-URL: Homepage, https://github.com/destack-sh/destack
Project-URL: Repository, https://github.com/destack-sh/destack
Project-URL: Issues, https://github.com/destack-sh/destack/issues
Author: Symbol Industries
License: MIT
Keywords: compiler,destack,runtime,typescript
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Compilers
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# destack (Python)

Python client for Destack.
This package is published to PyPI as `destack`.
Compatibility package `destack-py` is in [`compat/destack-py`](compat/destack-py/README.md).

## Installation

```sh
pip install destack
```

## API

```python
from destack import create_client

client = create_client()
assert client.backend == "python"
assert client.version() == "0.55.3"
assert client.capi_abi_version() > 0
assert client.capi_is_available() is True
```
