No project description provided
Project description
KOAP: Lightweight Konnektor Client Library
Messages Logs
Sample Message Logs can be found here: https://spilikin.dev/koap-python/
Configuration using environment variables
Environment variable | Comment |
---|---|
KONNEKTOR_BASE_URL |
Base URL for Konnektor. The connector.sds must be available at {KONNEKTOR_BASE_URL}/connector.sds |
KONNEKTOR_MANDANT_ID |
Context Mandant ID (Tenant) |
KONNEKTOR_CLIENT_SYSTEM_ID |
Context Client System ID |
KONNEKTOR_WORKPLACE_ID |
Context Workplace ID |
KONNEKTOR_USER_ID |
Context UserID (optional) |
Basic Auth | |
KONNEKTOR_AUTH_METHOD |
basic |
KONNEKTOR_AUTH_BASIC_USERNAME |
Username for Basic authentication |
KONNEKTOR_AUTH_BASIC_PASSWORD |
Password for Basic authentication |
Mutual TLS Auth | |
KONNEKTOR_AUTH_METHOD |
cert |
KONNEKTOR_AUTH_CERT_P12_FILENAME |
Path to the PKCS#12 file with client credentials |
KONNEKTOR_AUTH_CERT_P12_PASSWORD |
Password for PKCS#12 file |
export KONNEKTOR_BASE_URL=https://.../
export KONNEKTOR_MANDANT_ID=m1
export KONNEKTOR_CLIENT_SYSTEM_ID=c1
export KONNEKTOR_WORKPLACE_ID=w1
export KONNEKTOR_USER_ID=user1
export KONNEKTOR_AUTH_BASIC_USERNAME=user1
export KONNEKTOR_AUTH_BASIC_PASSWORD='use strong passwords in production'
Once the environmant variables are set, the koap.config.ConnectorConfig
can be instantiated without parameters. We make use of Pydantic Model Config.
from koap.config import ConnectorConfig
from koap.client import ConnectorClient
config = ConnectorConfig()
client = ConnectorClient(config)
event_service = client.create_service_client('EventService', '7.2.0')
cards = event_service.GetCards(client.context())
print(cards)
Configuration in code
from koap.config import ConnectorConfig
from koap.client import ConnectorClient
config = ConnectorConfig(
base_url='https://.../',
mandant_id='m1',
client_system_id='c1',
workplace_id='w1',
user_id='user1',
# Basic Auth
auth_method='basic',
auth_basic_username='user1',
auth_basic_password='use secure passwords in production',
)
client = ConnectorClient(config)
event_service = client.create_service_client('EventService', '7.2.0')
cards = event_service.GetCards(client.context())
print(cards)
VSDM Facade
from koap.facade.vsdm.vsdm_facade import VSDMFacade
from koap.facade.model import CardTypeEnum
from koap.client import ConnectorClient, ConnectorConfig
config = ConnectorConfig()
client = ConnectorClient(config)
vsdm = VSDMFacade(client)
egks = vsdm.get_cards([CardTypeEnum.EGK])
egk_1 = egks[0]
print(egk_1)
smcbs = vsdm.get_cards([CardTypeEnum.SMC_B])
smcb_1 = smcbs[0]
print(smcb_1)
vsd = vsdm.read_vsd(
EhcHandle=egk_1.CardHandle,
HpcHandle=smcb_1.CardHandle,
PerformOnlineCheck=False,
ReadOnlineReceipt=False,
)
print(vsd)
Development
git submodule init
git submodule update
poetry install
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
koap-0.3.1.tar.gz
(331.1 kB
view hashes)
Built Distribution
koap-0.3.1-py3-none-any.whl
(593.2 kB
view hashes)