Skip to main content

A simple library to simulate a VDR.

Project description

VDR

VDR is a Python library to simulate a VDR (Voyage Data Recorder).

Installation

Use the package manager pip to install vdr.

pip install vdr

Usage

You first need to configure your VDR that will receive all the data.

import vdr

VDR = vdr.Vdr('/home/USER')                         # Create the VDR with its storage path
VDR.add_connection("localhost", 12345, 'ECDIS')     # Create socket connection called 'ECDIS'
VDR.add_connection("localhost", 12346, 'nmea')      # Create socket connection called 'nmea'

# Initialize threads with each data type that connections will received
ecdis = vdr.ReceivingFrame(VDR, "ECDIS")
nmea = vdr.ReceivingNmea(VDR, "nmea")

# Start threads, ready to receive and store data
ecdis.start()
nmea.start()

Then, the library proposed different kind of agent to facilitate data emission.

Frame Agent

import screenagent

agent = screenagent.ScreenAgent("localhost", 12345)
agent.send_screenshot()

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Project details


Download files

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

Source Distribution

vdr-2.0.4.tar.gz (8.1 kB view hashes)

Uploaded Source

Built Distribution

vdr-2.0.4-py3-none-any.whl (8.7 kB view hashes)

Uploaded Python 3

Supported by

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