This is a Python package that can be used to read testing data from your local Revolve Analyze SQLite database.
- Navigate to the release section of this repository
- Download the wheel package from the latest release
- Install the wheel package using pip (Package is not on PyPi yet)
dbFile = "C:\PATH\TO\REVOLVE_ANALYZE\DATABASE\local_database.db"
db = RevolveAnalyzeDatabase(dbFile)
Dataseries loaded from the database are returned as pandas (https://pandas.pydata.org/) Dataframes.
logname = "FSG19 - Endurance"
channelname = "vcu.INS.vx"
dataseries = db.get_dataseries(logname, channelname)
laps = db.get_laps_for_log(logname)
dataseries_lap_1 = db.get_dataseries(logname, channelname, laps[0])