Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sbp

Package Overview
Dependencies
Maintainers
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sbp

Python bindings for Swift Binary Protocol

  • 6.2.1
  • PyPI
  • Socket score

Maintainers
4

SBP Bindings for Python

Python client for Swift Binary Protocol (SBP).

Since v2.5 libsbp is compatible with Python 2.7, 3.5 to 3.9. For new projects, Python 3.7 or newer is recommended.

Setup

You must have python and pip installed.

Install dependencies only::

$ pip install -r requirements.txt

Install from source::

$ pip install ./python

Install package from PyPI (use sudo ... to install globally)::

$ pip install sbp

Setup using a virtual environment

Setup and activate the virtualenv::

$ virtualenv .env && source .env/bin/activate

Install py.test in the virtualenv::

$ pip install pytest-virtualenv

Install the pt.test coverage tools::

$ pip install pytest-cov

Finally, proceed to the standard setup instructions.

Usage Examples

Simple example


Receives SBP messages over a serial port, decodes MSG_BASELINE
messages and prints them out. See `simple.py`_ .

Run this example with::

  $ python -m sbp.client.examples.simple -p /path/to/serial/port

Sending SBP messages over UDP

Receives SBP messages over a serial port and sends all incoming messages to a UDP socket. See udp.py_ .

Run this example with::

$ python -m sbp.client.examples.udp -s /path/to/serial/port

Testing

To run the tests and check for coverage::

$ py.test -v --cov sbp tests/

To run the tests without suppressing stdout output:

$ py.test -v -s --cov sbp tests/

License

Copyright © 2015-2021 Swift Navigation

Distributed under MIT.

.. _simple.py: https://github.com/swift-nav/libsbp/blob/master/python/sbp/client/examples/simple.py .. _udp.py: https://github.com/swift-nav/libsbp/blob/master/python/sbp/client/examples/udp.py

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc