Metadata-Version: 2.4
Name: aw8s
Version: 0.1.1
Summary: A k9s-style terminal UI for Argo Workflows
Project-URL: Homepage, https://github.com/riazkarim/aw8s
Project-URL: Issues, https://github.com/riazkarim/aw8s/issues
Author-email: ArkSigma <hello@arksigma.com>
License: MIT License
        
        Copyright (c) 2026 ArkSigma
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: argo,argo-workflows,k8s,kubernetes,tui
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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 :: System :: Systems Administration
Requires-Python: >=3.10
Requires-Dist: croniter>=2.0.0
Requires-Dist: desloppify>=0.7.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0.0
Requires-Dist: textual>=0.47.0
Provides-Extra: dev
Requires-Dist: bandit>=1.7.0; extra == 'dev'
Requires-Dist: mypy>=1.10.0; extra == 'dev'
Requires-Dist: pillow>=10.0.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.4.0; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0; extra == 'dev'
Description-Content-Type: text/markdown

# aw8s

k9s-style terminal UI for Argo Workflows

<!-- screenshot TBD -->

## Install

```
pip install aw8s
```

## Quickstart

Set environment variables (or pass as flags — see `aw8s --help`):

| Variable | Default | Description |
|---|---|---|
| `ARGO_SERVER` | `https://localhost:2746` | Argo Workflows server URL |
| `ARGO_TOKEN` | _(none)_ | Bearer auth token |
| `ARGO_NAMESPACE` | `default` | Initial namespace |
| `ARGO_INSECURE` | _(false)_ | Skip TLS verify (`1`, `true`, or `yes`) |
| `ARGO_NS_PREFIX` | _(none)_ | Namespace prefix filter |

Then run:

```
export ARGO_SERVER=https://your-argo-server:2746
export ARGO_TOKEN=your-token
aw8s
```

Press `?` for help.

## Status

Early-stage — not yet 1.0; expect breaking changes.

## License

MIT — see [LICENSE](LICENSE)
