Skip to main content

FRC post match + live match logging reader abstraction

Project description

FRC Vlogger

What is this?

Vlogger is a generic library that provides an abstraction over the various kinds of files and live sources that are used in FRC.
This package is developed and used by FRC Valor 6800 for post match analysis.

Supported Sources

  • WPILog (supports structs and protobufs)
  • NetworkTables4 (supports structs and protobufs)
  • CTRE Hoot (file format does not support custom types)
  • DSLog/DSEvents, unlikely to be added soon
  • Phoenix Diagnostic Server

Motivation

Clients usually just care about the "meat" of the source (that is, the field name, the value, and the timestamp). It usually does not matter to the client where the data came from (i.e. the logic is the same whether it is from a live source or from a log file), and this means that every source should be exposed in a single API that should be a drop in replacement.
Additionally, there is no ready to use package in Python to parse WPILog files or connect to NetworkTables4 servers.
This package was heavily inspired by AdvantageScope's dataSources folder code.

API Structure

Each source is initialized with:

  • A reference to the "connection"
    • For historical logs (i.e. from a log file), this will usually be the path of the log file
    • For live sources (i.e. connecting to a server), this will usually be the hostname of the target machine
  • A list of regexes to match the regexes against. This was a design choice made to improve performance by only parsing fields that are going to be used. While not recommended, a regex of "" can be used to match all fields.
  • Any additional arguments that are required for that specific source. This may be for additional configuration or outside executables (the hoot source uses this) to properly parse the file

Examples

Initializing a generic source

If the file/connection source is not known, it is recommended to use the get_source function to iterate through the sources and performing validation on each.

import vlogger

# "" regex matches with anything, i.e. any field
with vlogger.get_source("my_log.wpilog", [""]) as source:
    for field in source:
        print(field)

Initializing a specific source

If the file/connection source is known, it may be faster and more readable to explicitly initialize the specific source. This example uses the Hoot source, which requires a reference to the owlet executable (if not found in PATH).

from vlogger.sources.wpilog import Hoot

with Hoot("my_log.hoot", ["^MyTargetFields$"], owlet="../my-owlet") as hoot:
    for field in hoot:
        print(field)

Merging sources

Vlogger has the ability to merge multiple sources into one iterable that will be parsed in chronological order. While it has been tested, keep in mind that some sources such as WPILog and even NT4 have been found to itself be store/give data in a non-chronological order. While it has a very low error rate, it is still something to keep in mind when using this feature.

import vlogger

with vlogger.get_source("my_log.wpilog", [""]) as wpilog, \
     vlogger.get_source("my_log.hoot", [""]) as hoot:
    for field in vlogger.merge_sources(wpilog, hoot):
        print(field)

Notes

Vlogger uses the logging library internally to log information about the sources, but by design does not configure the logger at all. This means that program that uses Vlogger has the responsibility of setting up the logger.

Contributing

Contributions are always welcome, especially tasks like adding new sources or fixing bugs. If you are making a big change, please create an issue beforehand to come up with a plan before finishing the code.

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

frc_vlogger-2026.0.3.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

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

frc_vlogger-2026.0.3-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

File details

Details for the file frc_vlogger-2026.0.3.tar.gz.

File metadata

  • Download URL: frc_vlogger-2026.0.3.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.14.2 Linux/6.12.57+deb13-amd64

File hashes

Hashes for frc_vlogger-2026.0.3.tar.gz
Algorithm Hash digest
SHA256 14c7d613485f848f1a39b129b736f75affc0f4f7193b3a8eb76599da83c985d1
MD5 c8f3b6df6fc8c7c56959f54fc55c9024
BLAKE2b-256 160e12e79d4c79f05ba9777caeaa430eaba93728a220583776bede78dd1bdd4b

See more details on using hashes here.

File details

Details for the file frc_vlogger-2026.0.3-py3-none-any.whl.

File metadata

  • Download URL: frc_vlogger-2026.0.3-py3-none-any.whl
  • Upload date:
  • Size: 13.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.14.2 Linux/6.12.57+deb13-amd64

File hashes

Hashes for frc_vlogger-2026.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9e526eb1b45f3b82dc059ef3e10ba1ea2ee144659d1a32bae66f05a65b2fbd95
MD5 f5be130d9ef344c16ba6baac07653196
BLAKE2b-256 dc1683f9017ead9faf29908cdaef26331c09081131ca7bd6a59da1978f348de3

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