Metadata-Version: 2.1
Name: hdcproto
Version: 0.0.8
Summary: Host Device Communication protocol
Project-URL: Documentation, https://github.com/kiksotik/hdc#readme
Project-URL: Issues, https://github.com/kiksotik/hdc/issues
Project-URL: Source, https://github.com/kiksotik/hdc
Author-email: "Axel T. J. Rohde" <kiksotik@gmail.com>
License-File: LICENSE.txt
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Requires-Dist: pyserial~=3.5
Requires-Dist: semver~=2.13.0
Description-Content-Type: text/markdown

<!-- 
      This is the README.md file used for the publication of the hdcproto package on PyPi and is only meant for 
      users of the hdcproto package. Any information intended for contributors should **NOT** be placed here, but 
      in the other README.md in the parent directory.
-->

# The HDC protocol
The purpose of the [Host Device Communication](https://github.com/kiksotik/hdc) protocol is to simplify the 
communication between the firmware of a device with severely limited computing resources and the software 
on the computer to which it's connected via a serial communication link, like UART / USB-CDC / Virtual COM Port.


## Python implementation of the HDC protocol
The ``hdcproto`` package contains the Python implementation of the HDC protocol, and it's mainly meant for the 
implementation of HDC-host software.

<details>
<summary>Implementing HDC-devices in Python offers some interesting possibilities:</summary>
  
- Mocking an HDC-device:
  - For demonstration purposes of the HDC-host software, whenever a physical device is not available.
  - For testing purposes, to create test-scenarios for the HDC-host software, which would otherwise 
    be difficult to recreate on a physical HDC-device. e.g.: A Continuous Integration build server.
- Implementing an actual HDC-device on sufficiently powerful hardware:
  - Because you can. ;-) 
  - In most cases, though, you would be better off using more conventional technologies 
    like [gRPC](https://en.wikipedia.org/wiki/GRPC) 
    or [RESTful API](https://en.wikipedia.org/wiki/Representational_state_transfer)

> WARNING: The HDC-device implementation in the ``hdcproto`` package is still work in progress.

</details>


## Installation
The ``hdcproto`` package is currently in pre-alpha stage, thus might be not listed by default in your graphical
package management tool.  
You can install it into your project's virtual environment via the usual command:
```shell
pip install hdcproto
```

<details>
<summary>Attention testers!</summary>

Installing from the alternative Test-PyPi repository is [a bit trickier](https://packaging.python.org/en/latest/guides/using-testpypi/#using-testpypi-with-twine):
```shell
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ hdcproto
```

Alternatively, if you take care of installing any 
[missing dependency](https://packaging.python.org/en/latest/tutorials/packaging-projects/#installing-your-newly-uploaded-package) 
yourself:
```shell
pip install --index-url https://test.pypi.org/simple/ --no-deps hdcproto
```


</details>


## Usage
The ```hdcproto.host.proxy``` module implements generic proxy base-classes that can be used as building blocks to
define proxy-classes that are specific for a given device and provide a convenient API for the HDC-host 
software to interact with the HDC-device.

Have a look at the ``hdcproto.demo.minimal`` sub-package, where you'll see an example of how 
[proxy-classes are defined](https://github.com/kiksotik/hdc/blob/main/python/hdcproto/hdcproto/demo/minimal/minimal_proxy.py) 
and 
[how they are used](https://github.com/kiksotik/hdc/blob/main/python/hdcproto/hdcproto/demo/minimal/showcase_minimal.py) 
to communicate with an HDC-device running the [Demo_Minimal firmware](https://github.com/kiksotik/hdc/blob/main/STM32/demo/Demo_Minimal_NUCLEO-F303RE/Core/Src/feature_core.c) example.

