An open API service indexing awesome lists of open source software.

https://github.com/team997coders/frcloglens

WIP Python library (backend rust) for FRC log file meta-analysis
https://github.com/team997coders/frcloglens

Last synced: about 1 year ago
JSON representation

WIP Python library (backend rust) for FRC log file meta-analysis

Awesome Lists containing this project

README

          

# frcLogLens

A utility for large-scale analysis of standard data logs generated by robots in the FIRST Robotics Competition.

This is not optimized for single log file analysis, tools such as [AdvantageScope](https://github.com/Mechanical-Advantage/AdvantageScope) are extremely highly reccomended for that use case over this.

# WIP Project

Build: `python -m build`

Install local: `python -m pip install .`

Lint py: `ruff check .`

Lint rust: `cargo clippy`

Format: `./format.sh`

Publish: `python -m twine upload ./target/wheels/*`

Test publish: `python -m twine upload --repository=testpypi ./dist/*`

The project needs to be freshly built before publishing. Twine will try to publish all files in `./dist`, including old builds, so running `rm -rf ./dist` (or the Windows equivalent) is suggested.