The readme says:
If you own a Fronius device, feel free to provide us with raw data returned by fetching the API endpoints manually.
Is there a specific kind of data (e.g., from certain scenarios) that you are looking for? How can I best provide data?
What's the preferred method of extracting the the raw data? Shall I just add this section to the end of the example.py script?
out_path = "..."
with open(out_path, 'w') as json_file:
json.dump(res, json_file, indent=4)
The readme says:
Is there a specific kind of data (e.g., from certain scenarios) that you are looking for? How can I best provide data?
What's the preferred method of extracting the the raw data? Shall I just add this section to the end of the
example.pyscript?