-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hello,
I am struggling with the below error trying to run from cron
. I am out of practice with Linux commands and cold use some help. I get the following error when trying to run PW_PVOExport.py
from cron
. I have tried to ran as local user and root. I am able to run form command line python PW_PVOExport.py
and have successful uploaded PW2EG. I am running this form a NetGear ReadyNAS system.
Version
PowerWall 1.17.2
Python 2.7.9 (default, Aug 13 2016, 17:33:18) [GCC 4.9.2]
Linux 4.4.116.armada.1
Changes PW_Helper.py
Disable the HTTPS
to HTTP
From https://'+PowerwallIP+'/api/meters/aggregates
to http://'+PowerwallIP+'/api/meters/aggregates
as my Powerwall does not answer to HTTPS
ERROR
2018-08-05 14:04:02,232 - Start PVOutput export
2018-08-05 14:04:03,328 - get_sqlite_data: no such table: View_pw
2018-08-05 14:04:03,455 - [ERROR] object of type 'bool' has no len()
2018-08-05 14:04:03,460 - delete_sqlite_data: no such table: pw
2018-08-05 14:04:03,489 - End PVOutput export
crontab configuraiton
* * * * * /usr/bin/python /home/user/path/PW_PVOExport.py >/home/user/path/err.log 2>&1
Noticed that the directory above /home/user/path/
two additional files get created pvo.log
& pw.sqlite
the Working Directory has these files and being populated with data as I see the pw.sqlite
being populated .
Additional Files
.
├── [4.0K] Powerwall2PVOutput (Working Directory)
├── [9.4K] pvo.log
├── [4.0K] pw.sqlite
Working Directory
.
├── [4.0K] Powerwall2PVOutput
│ ├── [4.0K] BAK
│ │ ├── [ 311] PW_Config.py
│ │ ├── [1.1K] PW_Datalogger.py
│ │ ├── [5.4K] PW_Helper.py
│ │ ├── [2.2K] PW_PVOExport.py
│ │ └── [3.0K] PW_Simple.py
│ ├── [9.4K] err.log
│ ├── [ 60K] ExtendedData7_8.png
│ ├── [ 95K] ExtendedData9_12.png
│ ├── [ 22K] pvo.log
│ ├── [ 311] PW_Config.py
│ ├── [ 432] PW_Config.pyc
│ ├── [1.1K] PW_Datalogger.py
│ ├── [5.4K] PW_Helper.py
│ ├── [6.3K] PW_Helper.pyc
│ ├── [2.3K] PW_PVOExport.py
│ ├── [3.0K] PW_Simple.py
│ ├── [859K] pw.sqlite
│ ├── [4.0K] pyc
│ │ ├── [ 439] PW_Config.pyc
│ │ └── [6.4K] PW_Helper.pyc
│ └── [1.4K] README.md
Thanks,
RN