โมดูล Python เพื่อเข้าถึงระบบ PV ใน Sunny Portal
สคริปต์ sunnyportal2pvoutput สามารถใช้เพื่อส่งข้อมูลไปยัง PVOutput ใช้ไฟล์กำหนดค่าเพื่อจัดเก็บข้อมูลประจำตัวสำหรับ Sunny Portal และคีย์ API และรหัสระบบสำหรับ PVOutput
PYTHONPATH=. ./bin/sunnyportal2pvoutput --dry-run sunnyportal.config
$ PYTHONPATH=. ./bin/sunnyportal2pvoutput sunnyportal.config --help
usage: sunnyportal2pvoutput [-h] [-s] [-o] [-c] [-p DAYS_PAST] [-q] [-n] config
Connect Sunny Portal to PVoutput.org
positional arguments:
config Configuration file to use
optional arguments:
-h, --help show this help message and exit
-s, --status Report status(es)
-o, --output Report output(s)
-c, --consumption Report consumption
-p DAYS_PAST, --days-past DAYS_PAST
number of DAYS in the past to go back -- default: 0 (today only)
-q, --quiet Silence output
-n, --dry-run Don ' t send any data
สคริปต์ sunnyportal2file สามารถใช้เพื่อบันทึกข้อมูลจาก Sunny Portal ไปยังไฟล์/ฐานข้อมูล ใช้ไฟล์กำหนดค่าเดียวกันกับใน sunnyportal2pvoutput เพื่อจัดเก็บข้อมูลประจำตัวสำหรับ Sunny Portal มันจะแยกฟิลด์ (การผลิตขั้นต่ำ ค่าเฉลี่ย และสูงสุด) ซึ่งมีอยู่ในหน่วยวัตต์เป็น numpy.uint32 พร้อมด้วยการประทับเวลาที่เกี่ยวข้อง และรวมเป็น DataFrame ของแพนด้าซึ่งจะบันทึกเป็นไฟล์ตามรูปแบบที่ระบุ หนึ่งไฟล์จะถูกสร้างขึ้นสำหรับแต่ละโรงงานที่บัญชี Sunny Portal ของคุณสามารถเข้าถึงได้
PYTHONPATH=. ./bin/sunnyportal2file sunnyportal.config --format csv
(เปลี่ยน --format หากคุณต้องการรูปแบบอื่น)$ PYTHONPATH=. ./bin/sunnyportal2file -h
usage: sunnyportal2file [-h] -f {json,csv,pickle,feather,parquet,excel,sqlite} [-s START_DATE] [-e END_DATE] [-i INCLUDE_FILTER] [-q] config
Save information from Sunny Portal to file
positional arguments:
config Configuration file to use
optional arguments:
-h, --help show this help message and exit
-f {json,csv,pickle,feather,parquet,excel,sqlite}, --format {json,csv,pickle,feather,parquet,excel,sqlite}
Format for which the data is to be saved
-s START_DATE, --start-date START_DATE
The start date of data to be saved in the format YYYY-MM-DD (default yesterday)
-e END_DATE, --end-date END_DATE
The end date of data to be saved in the format YYYY-MM-DD (default yesterday)
-i INCLUDE_FILTER, --include-filter INCLUDE_FILTER
A string used to filter which plants to include (default includes all plants)
-q, --quiet Silence output