Metadata-Version: 2.1
Name: hidori
Version: 0.2.0
Summary: A modern, agentless, zero-dependency system state assurance
Home-page: https://github.com/hidori-dev/hidori
License: MIT
Author: Piotr Szpetkowski
Author-email: piotr.szpetkowski@pyquest.space
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: System :: Installation/Setup
Requires-Dist: typing-extensions (>=4.3.0,<5.0.0)
Project-URL: Bug Tracker, https://github.com/hidori-dev/hidori/issues
Project-URL: Changelog, https://github.com/hidori-dev/hidori/blob/main/CHANGELOG.md
Project-URL: Repository, https://github.com/hidori-dev/hidori
Description-Content-Type: text/markdown

# Hidori

[![PyPI](https://img.shields.io/pypi/v/hidori)](https://pypi.org/project/hidori/)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/hidori-dev/hidori/main.svg)](https://results.pre-commit.ci/latest/github/hidori-dev/hidori/main)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/hidori-dev/hidori)

Hidori is a modern, agentless, zero-dependency[^1][^2] variation on updating system state. General rule of thumb is that changes to the system are only done if the requested state is different from the actual state. Hidori modules are idempotent if the system is already in the desired state.
Every change in the target system is reported through the modules log as "affected".

Hidori communicates with a target machine through appropriate protocol that is designated by the chosen driver.

## Install

Depending on your environment you might wish to install Hidori globally or locally using chosen Python dependency manager such as poetry or pip.
Ultimately, the choice is yours. Either way, Hidori is safe for your Python environment - it does not pull any dependencies from PyPI[^2].

Example using pip:
```sh
pip install hidori
```

## Hello World

With Hidori installed you need a single TOML file that provides where and what should be done. A simple 'hello world' example assuming that some machine is available at the given IP address:

```toml
[hosts]

  [hosts.vm]
  ip = "192.168.122.31"
  user = "root"

[tasks]

  [tasks."Say hello"]
  module = "hello"
```

Now you just need to run it (example assumes the file is named `pipeline.toml`):

```sh
hidori-pipeline run pipeline.toml
```

The result on my machine is:

```
[root@vm: Say hello]
[16:03:19] OK: Hello from Linux debian 4.19.0-21-amd64
```

## Support

In general, Hidori is based on Python 3.11, but `hidori_core` runs with any version of Python that is still supported.
Reason for that is vast majority of target systems don't have the latest Python runtime installed, so therefore `hidori_core`
which includes all the code that runs on a target system can be expected to be supported according to the following table:

| Python Version |     EOL Date     |
| -------------- | ---------------- |
| 3.7            | July 2023        |
| 3.8            | November 2024    |
| 3.9            | November 2025    |
| 3.10           | November 2026    |
| 3.11           | November 2027(?) |

## Development

The dev environment can be setup with poetry:
```sh
poetry install
```

[^1]: Except for the necessary runtime - python, and system libraries that are used by modules
[^2]: typing-extensions are necessary until at least July 2023 when Python 3.7's support will end

## License

Hidori is licensed under both the [MIT](LICENSE-MIT) and the [EUPL-1.2](LICENSE-EUPL) licenses.

