ANDi python package to interact with ANDi scripting features from stand alone python package
Project description
ANDi SDK is a package to support powerful ANDi scripting API from python environment providing powerful Ethernet and automotive testing development kit.
Calling andisdk from Python
ANDi SDK allows the creation and handling of Ethernet based messages or channels, this can be done with or without an ANDi test project
# creating a message using a project
from andisdk import load_project
api = load_project(path_to_atp)
eth_msg = api.message_builder.create_ethernet_message()
# creating a message without a project
from andisdk import message_builder
msg = message_builder.create_ethernet_message()
Requirements to run ANDi SDK
ANDi SDK is portable, it can be used on both Windows and Linux machines.
Before running ANDi SDK, the following requirements need to be met:
.NET 6 runtime: responsible for running ANDi library files (dlls).
CodeMeter: responsible for license handling.
Npcap or Winpcap(Windows): responsible for hardware interfaces.
Libpcap (Linux): responsible for hardware interfaces.
Examples
# this example will create and send an UDP message
from andisdk import message_builder, andi
import sys
adapters = andi.get_adapters()
if (len(adapters) <= 0):
print("No adapters found, stopping script")
sys.exit()
adapter = adapters[0]
print("using adapter " + adapter.id + " to send udp message")
channel = andi.create_channel("Ethernet")
message = message_builder.create_udp_message(channel, channel)
message.payload = tuple([0x01, 0x02, 0x03, 0x04])
message.udp_header.port_source = 1234
print("sending udp message with payload " + str([x for x in message.payload]))
message.send()
Using python-can
# this example will use python-can to send and receive a CAN message
import can
bus = can.interface.Bus(interface='andisdk', channel='1', driver='tecmp', link='can', dev_port=1, dev_id=64)
payload = b'\x02\x08\x08\xFF\x03\x11\x04\x02'
# create can message
msg = can.Message(arbitration_id = 0x80000749, data = payload, is_fd = False)
# sending
bus.send(msg)
# receiving with timeout 5 seconds
msg_received = bus.recv(5)
print(msg_received)
Copyrights and licensing
This product is the property of Technica Engineering GmbH. © Copyright 2022-2024 Technica Engineering GmbH
This product will not function without a proper license. A proper license can be acquired by contacting Technica Engineering GmbH. For license related inquiries, this email: support@technica-engineering.de is available from Technica Engineering.
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
File details
Details for the file andisdk-1.41.0.tar.gz
.
File metadata
- Download URL: andisdk-1.41.0.tar.gz
- Upload date:
- Size: 126.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9f8c46e61ae44359c937ba5db66e7198efed0dc9c6d4b0731a94e8d983ee1dc |
|
MD5 | 220d347952830af80cf4e409cf2f3e02 |
|
BLAKE2b-256 | 280d3193e128df0d007f0e5135db349676625745656d9cbfbec9ea94b19c85ab |
File details
Details for the file andisdk-1.41.0-py3-none-any.whl
.
File metadata
- Download URL: andisdk-1.41.0-py3-none-any.whl
- Upload date:
- Size: 127.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc42bd2debb93ba2a9d5d025bde67a5d7ab620f9ccce8d7fc7f0f071af6c4880 |
|
MD5 | 2d1bb33e70298cb541de8d89030e9bf6 |
|
BLAKE2b-256 | f289c296d84a775e8deeaf0dd9fd69de5c7a2037084189b62499d39c433de1e9 |