From 2fe9d832f342a8c781334bcdfb4b5ba869bfd130 Mon Sep 17 00:00:00 2001 From: Mikko Drocan Date: Fri, 8 Sep 2023 09:18:07 +0300 Subject: [PATCH] minor changes --- README.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7e91289..b2d2e7a 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,24 @@ # Fronius-stats -Simple Python script that fetches data from a predefined Fronius inverter. -Displays: timestamp, current production and how much has been produced during the (day, year) so far. +- Simple Python script that fetches data from a predefined Fronius inverter. +- Displays: timestamp, current production and how much has been produced during the (day, year) so far. ## Script execution -Install the required package with 'pip install -r requirements.txt' -Execute in the terminal with the following command: 'python3 fronius.py' -After script execution the data is fetched from the inverter and trimmed. + +- Install the required package with 'pip install -r requirements.txt' +- Execute in the terminal with the following command: 'python3 fronius.py' +- After script execution the data is fetched from the inverter and trimmed. ## Architecture -By default it fetches the URL being used froma file called 'api.txt'. -There's also a possibility to use a example response message in a Docker environment. -In order to use the Docker web service you must edit the python source and comment/uncomment the necessary lines. -The Docker setup can be found from web_server-directory. +By default it fetches the URL being used froma file called 'api.txt'. +There's also a possibility to use a example response message in a Docker environment: +- You must edit the Python source and comment/uncomment the necessary lines in the script. +- The Docker setup can be found from [here](web_server). +- Example message message [here](web_server/GetPowerFlowRealtimeData.fcgi). ## Next steps Save data to a database. -Visualize the data. \ No newline at end of file +Visualize the data.