ONDEWO Voip Telephone System Integration (VTSI) Client library for Python
Project description
This library facilitates the interaction between a user and a CAI server. It achieves this by providing a higher-level interface mediator.
This higher-level interface mediator is structured around a series of python files generated from protobuf files. These protobuf files specify the details of the interface, and can be used to generate code in 10+ high-level languages. They are found in the ONDEWO VTSI API along with the older Google protobufs from Dialogueflow that were used at the start. The ONDEWO PROTO-COMPILER will generate the needed files directly in this library.
Python Installation
You can install the library by installing it directly from the PyPi:
pip install ondewo-vtsi-client
Or, you could clone it and install the requirements:
git clone git@github.com:ondewo/ondewo-vtsi-client-python.git
cd ondewo-vtsi-client-python
make setup_developer_environment_locally
Repository Structure
.
├── examples
│ ├── analysis
│ │ └── analysis.py
│ ├── caller
│ │ ├── caller_deployment_minimal.py
│ │ ├── caller_deployment_mirror_mode.py
│ │ ├── configure_context_parameters.py
│ │ ├── full_config.py
│ │ └── make_multiple_calls.py
│ └── listener
│ ├── listener_deployment.py
│ └── minimal_listener.py
├── ondewo
│ ├── nlu
│ │ ├── agent_pb2_grpc.py
│ │ ├── agent_pb2.py
│ │ ├── agent_pb2.pyi
│ │ ├── aiservices_pb2_grpc.py
│ │ ├── aiservices_pb2.py
│ │ ├── aiservices_pb2.pyi
│ │ ├── ccai_project_pb2_grpc.py
│ │ ├── ccai_project_pb2.py
│ │ ├── ccai_project_pb2.pyi
│ │ ├── common_pb2_grpc.py
│ │ ├── common_pb2.py
│ │ ├── common_pb2.pyi
│ │ ├── context_pb2_grpc.py
│ │ ├── context_pb2.py
│ │ ├── context_pb2.pyi
│ │ ├── entity_type_pb2_grpc.py
│ │ ├── entity_type_pb2.py
│ │ ├── entity_type_pb2.pyi
│ │ ├── __init__.py
│ │ ├── intent_pb2_grpc.py
│ │ ├── intent_pb2.py
│ │ ├── intent_pb2.pyi
│ │ ├── operation_metadata_pb2_grpc.py
│ │ ├── operation_metadata_pb2.py
│ │ ├── operation_metadata_pb2.pyi
│ │ ├── operations_pb2_grpc.py
│ │ ├── operations_pb2.py
│ │ ├── operations_pb2.pyi
│ │ ├── project_role_pb2_grpc.py
│ │ ├── project_role_pb2.py
│ │ ├── project_role_pb2.pyi
│ │ ├── project_statistics_pb2_grpc.py
│ │ ├── project_statistics_pb2.py
│ │ ├── project_statistics_pb2.pyi
│ │ ├── server_statistics_pb2_grpc.py
│ │ ├── server_statistics_pb2.py
│ │ ├── server_statistics_pb2.pyi
│ │ ├── session_pb2_grpc.py
│ │ ├── session_pb2.py
│ │ ├── session_pb2.pyi
│ │ ├── user_pb2_grpc.py
│ │ ├── user_pb2.py
│ │ ├── user_pb2.pyi
│ │ ├── utility_pb2_grpc.py
│ │ ├── utility_pb2.py
│ │ ├── utility_pb2.pyi
│ │ ├── webhook_pb2_grpc.py
│ │ ├── webhook_pb2.py
│ │ └── webhook_pb2.pyi
│ ├── qa
│ │ ├── __init__.py
│ │ ├── qa_pb2_grpc.py
│ │ ├── qa_pb2.py
│ │ └── qa_pb2.pyi
│ ├── s2t
│ │ ├── __init__.py
│ │ ├── speech_to_text_pb2_grpc.py
│ │ ├── speech_to_text_pb2.py
│ │ └── speech_to_text_pb2.pyi
│ ├── sip
│ │ ├── __init__.py
│ │ ├── sip_pb2_grpc.py
│ │ ├── sip_pb2.py
│ │ └── sip_pb2.pyi
│ ├── t2s
│ │ ├── __init__.py
│ │ ├── text_to_speech_pb2_grpc.py
│ │ ├── text_to_speech_pb2.py
│ │ └── text_to_speech_pb2.pyi
│ ├── vtsi
│ │ ├── client.py
│ │ ├── __init__.py
│ │ ├── vtsi_pb2_grpc.py
│ │ ├── vtsi_pb2.py
│ │ └── vtsi_pb2.pyi
│ └── __init__.py
├── ondewo-proto-compiler
├── ondewo-vtsi-api
├── CONTRIBUTING.md
├── Dockerfile.utils
├── LICENSE
├── Makefile
├── MANIFEST.in
├── mypy.ini
├── README.md
├── RELEASE.md
├── requirements-dev.txt
├── requirements.txt
├── setup.cfg
├── setup.py
└── temp.txt
Build
The make build command is dependent on 2 repositories and their speciefied version:
- ondewo-vtsi-api --
VTSI_API_GIT_BRANCHinMakefile - ondewo-proto-compiler --
ONDEWO_PROTO_COMPILER_GIT_BRANCHinMakefile
It will generate a _pb2.py, _pb2.pyi and _pb2_grpc.py file for every .proto in the api submodule.
:warning: All Files in the
ondewofolder that dont havepb2in their name are handwritten, and therefor need to be manually adjusted to any changes in the proto-code.
Examples
The /examples folder provides a possible implementation of this library. To run an example, simple execute it like any other python file. To specify the server and credentials, you need to provide an environment file with the following variables:
- host
// The hostname of the Server - e.g. 127.0.0.1 - port
// Port of the Server - e.g. 6600 - user_name
// Username - same as you would use in AIM - password
// Password of the user - http_token
// Token to allow access through - grpc_cert
// gRPC Certificate of the server
Automatic Release Process
The entire process is automated to make development easier. The actual steps are simple:
TODO after Pull Request was merged in:
-
Checkout master:
git checkout master
-
Pull the new stuff:
git pull -
(If not already, run the
setup_developer_environment_locallycommand):make setup_developer_environment_locally -
Update the
ONDEWO_VTSI_VERSIONin theMakefile -
Add the new Release Notes in
RELEASE.mdin the format:## Release ONDEWO VTSI Python Client X.X.X <---- Beginning of Notes ...<NOTES>... ***************** <---- End of Notes -
Release:
make ondewo_release
The release process can be divided into 6 Steps:
buildspecified version of theondewo-vtsi-apicommit and pushall changes in code resulting from thebuild- Create and push the
release branche.g.release/1.3.20 - Create and push the
release tage.g.1.3.20 - Create a new
Releaseon GitHub - Publish the built
distfolder topypi.org
:warning: The Release Automation checks if the build has created all the proto-code files, but it does not check the code-integrity. Please build and test the generated code prior to starting the release process.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ondewo-vtsi-client-7.0.0.tar.gz.
File metadata
- Download URL: ondewo-vtsi-client-7.0.0.tar.gz
- Upload date:
- Size: 258.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
327c4c1fdeaa998117dd346af9bb829969caff1b6577c10023731d0e1190128d
|
|
| MD5 |
6ce70f478ea884011f8c9b92396a30bb
|
|
| BLAKE2b-256 |
222203b1aaae906b69de2d3f3d4908d84a686b9a45bf9b4fe081f233f82e823d
|
File details
Details for the file ondewo_vtsi_client-7.0.0-py2.py3-none-any.whl.
File metadata
- Download URL: ondewo_vtsi_client-7.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 281.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d2934bd8d5eac8ad8bf4c514dc3070a278e53224b4f06acea82b66041db7298
|
|
| MD5 |
cea7dc455b5cf77cadb4580887a700c4
|
|
| BLAKE2b-256 |
0770b386fe1a4a5da93f4663dafcdff55c19bb6fba0736f1e4d8860e90066fc3
|