Metadata-Version: 2.4
Name: quicksight-gen
Version: 11.9.0
Summary: Deprecated rename shim — install `recon-gen` instead (this package will be removed in ~1-2 months).
License-Expression: MIT
Project-URL: Homepage, https://github.com/chotchki/recon-gen
Project-URL: Source, https://github.com/chotchki/recon-gen
Project-URL: Issues, https://github.com/chotchki/recon-gen/issues
Keywords: deprecated,shim,recon-gen
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.13
Description-Content-Type: text/markdown
Requires-Dist: recon-gen==11.9.0

# quicksight-gen (deprecated shim)

This package was **renamed** to [`recon-gen`](https://pypi.org/project/recon-gen/) in v11.0.0.

## Migrate

```bash
# Replace
pip install quicksight-gen
# With
pip install recon-gen
```

And update imports in your code:

```python
# Replace
from quicksight_gen.common.tree import App
# With
from recon_gen.common.tree import App
```

## Why the rename

"QuickSight" is an AWS trademark, and the tool's scope grew beyond just
QuickSight artifact generation — it also produces an HTMX-rendered
dashboard alternative and a regulator-ready PDF audit report. The new
name `recon-gen` (short for "reconciliation generator") captures the
actual scope.

## Shim drop timeline

This shim package will be removed in the first `recon-gen` release
published ~30-60 days after v11.0.0 (calendar-anchored, not
release-count-anchored). The exact drop date is in v11.0.0
RELEASE_NOTES.

Until then, `pip install quicksight-gen` continues to work transparently
— installing it pulls in `recon-gen` as a transitive dependency. On
import it fires a one-time `DeprecationWarning` pointing at the new
name.

## Source

The shim's source lives at
[github.com/chotchki/recon-gen](https://github.com/chotchki/recon-gen)
under `quicksight-gen-shim/`.
