-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to visualize the database generated from the pdx #361
Comments
I suppose the closest thing to what you want that's shipping out-of-the-box is the import sys
import odxtools
db = odxtools.load_file(sys.argv[1])
print("ECU Name,Service Name")
for ecu in db.ecu_variants:
for service in ecu.services:
print(f"{ecu.short_name},{service.short_name}") |
I was actually targetting to change my pdx file to a .db format. It can also be an excel sheet of all details of my pdx containing all requests, pos and neg responses with params defined |
I'm not aware of such a format. odxtools will enable you to easily access all data that's contained in PDX files, but it obviously cannot know what parts of that data you are interested in and how you want that data to be formatted, i.e., you have to write a script doing this (or hire somebody to do it for you)... |
I'm looking for an api which helps me visualise the data as an excel or sql format
The text was updated successfully, but these errors were encountered: