Skip to main content

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 8 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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

andisdk-2.1.0.tar.gz (107.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

andisdk-2.1.0-py3-none-any.whl (108.7 MB view details)

Uploaded Python 3

File details

Details for the file andisdk-2.1.0.tar.gz.

File metadata

  • Download URL: andisdk-2.1.0.tar.gz
  • Upload date:
  • Size: 107.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for andisdk-2.1.0.tar.gz
Algorithm Hash digest
SHA256 f6988ffb5c16a4dca231fc6cd0f35a8b41f367b5452f0d54380243be03192a41
MD5 2a0349e7fdd8de7f7c5b5834555be3e1
BLAKE2b-256 1a4f494b1acec4f7178cb7d1a65ba41a93991cbd6aa0941153bf88192a83c018

See more details on using hashes here.

File details

Details for the file andisdk-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: andisdk-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 108.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for andisdk-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 76f7a44a0663b82dfde67c8c95fdc9fa5c2ebf2213ad46b40ea459c2a69abf73
MD5 8f9b89a63f46156ff4130d34f7d9d87b
BLAKE2b-256 72b72d58531c074846c10de58c54feb4deb6562683323028865c5d737e3277f2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page