Metadata-Version: 2.4
Name: hucl
Version: 0.0.4
Summary: A simple client to initialise a JupyterHub server
Project-URL: Documentation, https://github.com/Angus Hollands/hucl#readme
Project-URL: Issues, https://github.com/Angus Hollands/hucl/issues
Project-URL: Source, https://github.com/Angus Hollands/hucl
Author-email: Angus Hollands <goosey15@gmail.com>
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.13
Provides-Extra: async
Requires-Dist: aiohttp; extra == 'async'
Description-Content-Type: text/markdown

# hucl

[![PyPI - Version](https://img.shields.io/pypi/v/hucl.svg)](https://pypi.org/project/hucl)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/hucl.svg)](https://pypi.org/project/hucl)

-----

## Table of Contents

- [Installation](#installation)
- [License](#license)

## Installation

```console
pip install hucl
```

## Usage
```bash
hucl start https://my-hub.com/hub/api <TOKEN>
```

## License

`hucl` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.

## Design

This CLI and library uses a [sansio](https://sans-io.readthedocs.io/) approach for splitting IO from logic. This makes it very easy to test and abstract out event-loop implementations (by implementing a smaller event loop!). 

I did this for fun — I've been telling people to do this for years without ever actually implementing such an approach in my own libraries.
