Metadata-Version: 2.1
Name: h2o-notebook
Version: 0.2.2
Summary: H2O Notebook Python client
Project-URL: Documentation, https://github.com/h2oai/notebook/#readme
Project-URL: Issues, https://github.com/h2oai/notebook/issues
Project-URL: Source, https://github.com/h2oai/notebook/py/h2o-notebook
Author-email: Jan Sykora <jan.sykora@h2o.ai>, Tomas Pastorek <tomas.pastorek@h2o.ai>, Ondrej Bilek <ondrej.bilek@h2o.ai>
Requires-Python: >=3.7
Requires-Dist: certifi>=2022.12.7
Requires-Dist: h2o-authn>=1.0.0
Requires-Dist: h2o-cloud-discovery>=1.1.0
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: requests>=2.26.0
Requires-Dist: urllib3>=1.26.15
Description-Content-Type: text/markdown

# H2O Logging Service 

H2O Notebook python client. This python client implements interaction with Logging Service REST API server.

## Local development

This python project is managed by [hatch](https://github.com/pypa/hatch) (environment management, version management,
dependency management, building, publishing, etc.).

You're free to use any tools for local development for managing python environments that you're comfortable with.

## Usage

### Run using hatch

You can run H2O Notebook python client using hatch. Hatch will automatically create an environment and install all
required dependencies:

```shell
hatch run python local/example.py
```

You can also switch to hatch's environment and run commands in it:

```shell
hatch shell
python local/example.py
```

### Run in custom env

If you want to use your own environment for running the client (global, virtual env, etc.), you can do so.
For example to build, install and run H2O Logging Service python client in the current python env:

```shell
hatch build
pip install dist/h2o_logging_service-*.whl
python local/example.py
```
