.. image:: https://gitlab.com/ternaris/rosbags/badges/master/pipeline.svg
:target: https://gitlab.com/ternaris/rosbags/-/commits/master
:alt: pipeline status
.. image:: https://gitlab.com/ternaris/rosbags/badges/master/coverage.svg
:target: https://gitlab.com/ternaris/rosbags/-/commits/master
:alt: coverage report
.. image:: https://img.shields.io/pypi/pyversions/rosbags
:alt: python versions
.. image:: https://img.shields.io/pypi/dm/rosbags
:alt: PyPI - Downloads
=======
Rosbags
=======
Rosbags is the **pure python** library for everything rosbag. It contains:
- **highlevel** easy-to-use interfaces,
- **rosbag2** reader and writer,
- **rosbag1** reader and writer,
- **extensible** type system with serializers and deserializers,
- **efficient converter** between rosbag1 and rosbag2,
- and more.
Rosbags does not have any dependencies on the ROS software stacks and can be used on its own or alongside ROS1 or ROS2.
Rosbags was developed for `MARV <https://gitlab.com/ternaris/marv-robotics>`_, which requires a fast, correct, and flexible library to read, manipulate, and write the various rosbag file formats.
Getting started
===============
Rosbags is published on PyPI and does not have any special dependencies. Simply install with pip::
pip install rosbags
Read and deserialize messages from rosbag1 or rosbag2 files:
.. code-block:: python
from pathlib import Path
from rosbags.highlevel import AnyReader
from rosbags.typesys import Stores, get_typestore
bagpath = Path('/home/ros/rosbag_2020_03_24')
# Create a type store to use if the bag has no message definitions.
typestore = get_typestore(Stores.ROS2_FOXY)
# Create reader instance and open for reading.
with AnyReader([bagpath], default_typestore=typestore) as reader:
connections = [x for x in reader.connections if x.topic == '/imu_raw/Imu']
for connection, timestamp, rawdata in reader.messages(connections=connections):
msg = reader.deserialize(rawdata, connection.msgtype)
print(msg.header.frame_id)
Convert between rosbag versions::
# Convert "foo.bag", result will be "foo/"
rosbags-convert foo.bag
# Convert "bar", result will be "bar.bag"
rosbags-convert bar
# Convert "foo.bag", save the result as "bar"
rosbags-convert foo.bag --dst /path/to/bar
# Convert "bar", save the result as "foo.bag"
rosbags-convert bar --dst /path/to/foo.bag
Documentation
=============
Read the `documentation <https://ternaris.gitlab.io/rosbags/>`_ for further information.
.. end documentation
Contributing
============
Thank you for considering to contribute to rosbags.
To submit issues or create merge requests please follow the instructions provided in the `contribution guide <https://gitlab.com/ternaris/rosbags/-/blob/master/CONTRIBUTING.rst>`_.
By contributing to rosbags you accept and agree to the terms and conditions laid out in there.
Development
===========
Clone the repository and setup your local checkout::
git clone https://gitlab.com/ternaris/rosbags.git
cd rosbags
python -m venv venv
. venv/bin/activate
pip install -r requirements-dev.txt
pip install -e .
This creates a new virtual environment with the necessary python dependencies and installs rosbags in editable mode. The rosbags code base uses pytest as its test runner, run the test suite by simply invoking::
pytest
To build the documentation from its source run sphinx-build::
sphinx-build -a docs public
The entry point to the local documentation build should be available under ``public/index.html``.
Support
=======
Professional support is available from `Ternaris <https://ternaris.com>`_.
Raw data
{
"_id": null,
"home_page": null,
"name": "rosbags",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "cdr, conversion, deserialization, idl, mcap, message, msg, reader, ros, ros2, rosbag, rosbag2, serialization, writer",
"author": null,
"author_email": "Ternaris <team@ternaris.com>",
"download_url": "https://files.pythonhosted.org/packages/e9/20/7c8ac28acaa650cfd7d897de721d3dd8a145696de79b521684cfa050ed99/rosbags-0.10.6.tar.gz",
"platform": null,
"description": ".. image:: https://gitlab.com/ternaris/rosbags/badges/master/pipeline.svg\n :target: https://gitlab.com/ternaris/rosbags/-/commits/master\n :alt: pipeline status\n\n.. image:: https://gitlab.com/ternaris/rosbags/badges/master/coverage.svg\n :target: https://gitlab.com/ternaris/rosbags/-/commits/master\n :alt: coverage report\n\n.. image:: https://img.shields.io/pypi/pyversions/rosbags\n :alt: python versions\n\n.. image:: https://img.shields.io/pypi/dm/rosbags\n :alt: PyPI - Downloads\n\n=======\nRosbags\n=======\n\nRosbags is the **pure python** library for everything rosbag. It contains:\n\n- **highlevel** easy-to-use interfaces,\n- **rosbag2** reader and writer,\n- **rosbag1** reader and writer,\n- **extensible** type system with serializers and deserializers,\n- **efficient converter** between rosbag1 and rosbag2,\n- and more.\n\nRosbags does not have any dependencies on the ROS software stacks and can be used on its own or alongside ROS1 or ROS2.\n\nRosbags was developed for `MARV <https://gitlab.com/ternaris/marv-robotics>`_, which requires a fast, correct, and flexible library to read, manipulate, and write the various rosbag file formats.\n\n\nGetting started\n===============\n\nRosbags is published on PyPI and does not have any special dependencies. Simply install with pip::\n\n pip install rosbags\n\n\nRead and deserialize messages from rosbag1 or rosbag2 files:\n\n.. code-block:: python\n\n from pathlib import Path\n\n from rosbags.highlevel import AnyReader\n from rosbags.typesys import Stores, get_typestore\n\n bagpath = Path('/home/ros/rosbag_2020_03_24')\n\n # Create a type store to use if the bag has no message definitions.\n typestore = get_typestore(Stores.ROS2_FOXY)\n\n # Create reader instance and open for reading.\n with AnyReader([bagpath], default_typestore=typestore) as reader:\n connections = [x for x in reader.connections if x.topic == '/imu_raw/Imu']\n for connection, timestamp, rawdata in reader.messages(connections=connections):\n msg = reader.deserialize(rawdata, connection.msgtype)\n print(msg.header.frame_id)\n\n\nConvert between rosbag versions::\n\n # Convert \"foo.bag\", result will be \"foo/\"\n rosbags-convert foo.bag\n\n # Convert \"bar\", result will be \"bar.bag\"\n rosbags-convert bar\n\n # Convert \"foo.bag\", save the result as \"bar\"\n rosbags-convert foo.bag --dst /path/to/bar\n\n # Convert \"bar\", save the result as \"foo.bag\"\n rosbags-convert bar --dst /path/to/foo.bag\n\n\nDocumentation\n=============\n\nRead the `documentation <https://ternaris.gitlab.io/rosbags/>`_ for further information.\n\n.. end documentation\n\n\nContributing\n============\n\nThank you for considering to contribute to rosbags.\n\nTo submit issues or create merge requests please follow the instructions provided in the `contribution guide <https://gitlab.com/ternaris/rosbags/-/blob/master/CONTRIBUTING.rst>`_.\n\nBy contributing to rosbags you accept and agree to the terms and conditions laid out in there.\n\n\nDevelopment\n===========\n\nClone the repository and setup your local checkout::\n\n git clone https://gitlab.com/ternaris/rosbags.git\n\n cd rosbags\n python -m venv venv\n . venv/bin/activate\n\n pip install -r requirements-dev.txt\n pip install -e .\n\n\nThis creates a new virtual environment with the necessary python dependencies and installs rosbags in editable mode. The rosbags code base uses pytest as its test runner, run the test suite by simply invoking::\n\n pytest\n\n\nTo build the documentation from its source run sphinx-build::\n\n sphinx-build -a docs public\n\n\nThe entry point to the local documentation build should be available under ``public/index.html``.\n\n\nSupport\n=======\n\nProfessional support is available from `Ternaris <https://ternaris.com>`_.\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Pure Python library to read, modify, convert, and write rosbag files.",
"version": "0.10.6",
"project_urls": {
"Changelog": "https://gitlab.com/ternaris/rosbags/-/blob/master/CHANGES.rst",
"Documentation": "https://ternaris.gitlab.io/rosbags",
"Homepage": "https://gitlab.com/ternaris/rosbags",
"Issues": "https://gitlab.com/ternaris/rosbags/issues",
"Source": "https://gitlab.com/ternaris/rosbags"
},
"split_keywords": [
"cdr",
" conversion",
" deserialization",
" idl",
" mcap",
" message",
" msg",
" reader",
" ros",
" ros2",
" rosbag",
" rosbag2",
" serialization",
" writer"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "dec174612c3b06958d21a3aa53ad1317b2f7fa0782af7ae39e53e5153d43de3a",
"md5": "3c0bd0a0c982c7ef9abefea9d6f3e82f",
"sha256": "913c1c72dacefe8d1fa11cea59af98a233dddcc06ca10fc0fc3b9a1c422947ac"
},
"downloads": -1,
"filename": "rosbags-0.10.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3c0bd0a0c982c7ef9abefea9d6f3e82f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 131848,
"upload_time": "2024-10-30T07:48:19",
"upload_time_iso_8601": "2024-10-30T07:48:19.429096Z",
"url": "https://files.pythonhosted.org/packages/de/c1/74612c3b06958d21a3aa53ad1317b2f7fa0782af7ae39e53e5153d43de3a/rosbags-0.10.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9207c8ac28acaa650cfd7d897de721d3dd8a145696de79b521684cfa050ed99",
"md5": "21356718bcfd5568edf764bb0f9252c7",
"sha256": "d15999cfe1e6490f5f37a95796ea098a998e8a2441883ced89a8d4751cedf6bc"
},
"downloads": -1,
"filename": "rosbags-0.10.6.tar.gz",
"has_sig": false,
"md5_digest": "21356718bcfd5568edf764bb0f9252c7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 197485,
"upload_time": "2024-10-30T07:48:21",
"upload_time_iso_8601": "2024-10-30T07:48:21.416843Z",
"url": "https://files.pythonhosted.org/packages/e9/20/7c8ac28acaa650cfd7d897de721d3dd8a145696de79b521684cfa050ed99/rosbags-0.10.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-30 07:48:21",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "ternaris",
"gitlab_project": "rosbags",
"lcname": "rosbags"
}