Metadata-Version: 2.1
Name: blueprint-client
Version: 1.0.1
Summary: Constants.
Home-page: https://github.com/Limych/py-blueprint
Author: Andrey Khrolenok
Author-email: andrey@khrolenok.ru
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

*Please :star: this repo if you find it useful*

# Blueprint Client

[![PyPI version][pypi-shield]][pypi]
[![PyPI Python version][pypi-pyversion]][pypi]
[![Maintained][Maintained]](#)

[![Project Maintenance][maintainer-shield]][maintainer]

_Blueprint sample client library._

## Installation

```bash
python3 -m pip install -U blueprint_client
```

## Usage example

```python
from blueprint_client.client import Client

username = "user"
password = "pass"

client = Client(username, password)

data = client.get_data()

client.change_something(True)
```

## Contributions are welcome!

This is an active open-source project. We are always open to people who want to
use the code or contribute to it.

We have set up a separate document containing our [contribution guidelines](CONTRIBUTING.md).

Thank you for being involved! :heart_eyes:

## Authors & contributors

The original setup of this library is by [Andrey "Limych" Khrolenok](https://github.com/Limych).

For a full list of all authors and contributors, check [the contributor's page][contributors].

## License

MIT License

See separate [license file](LICENSE.md) for full text.

[contributors]: https://github.com/Limych/py-blueprint/graphs/contributors
[license]: https://github.com/Limych/ha-blueprint/blob/main/LICENSE.md
[license-shield]: https://img.shields.io/pypi/l/blueprint_client.svg?style=popout
[maintained]: https://img.shields.io/maintenance/yes/2020.svg?style=popout
[maintainer]: https://github.com/Limych
[maintainer-shield]: https://img.shields.io/badge/maintainer-Andrey%20Khrolenok%20%40Limych-blue.svg?style=popout
[pypi]: https://pypi.org/project/blueprint_client/
[pypi-pyversion]: https://img.shields.io/pypi/pyversions/blueprint_client.svg?style=popout
[pypi-shield]: https://img.shields.io/pypi/v/blueprint_client.svg?style=popout


