Awesome
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> <!-- ALL-CONTRIBUTORS-BADGE:END -->Download historical solar photovoltaic data from PVOutput.org.
This code is a work-in-progress. The aim is to provide both a Python library for interacting with PVOutput.org's API, and a set of scripts for downloading lots of data :)
Installation
$ pip install pvoutput-ocf
Register with PVOutput.org
You need to get an API key and a system ID from PVOutput.org.
If you don't have a PV system, click the "energy consumption only" box when registering on PVOutput. If you don't include a system ID, then you'll get a "401 Unauthorized" response from the PVOutput API.
You can pass the API key and system ID into the PVOutput
constructor.
Or, create a ~/.pvoutput.yml
file which looks like:
api_key: <API key from PVOutput.org>
system_id: <SystemID from PVOutput.org>
The default location of the .pvoutput.yml
is the user's home directory, expanded from ~
. This can be overridden by setting the PVOUTPUT_CONFIG
environment variable.
e.g. export PVOUTPUT_CONFIG="/my/preferred/location/.pvoutput.yml"
Alternatively, you can set API_KEY
, SYSTEM_ID
and DATA_SERVICE_URL
(see below) as environmental variables.
API quotas and paid subscriptions
Please see here for update info.
Free
PVOutput.org gives you 60 API requests per hour. Per request, you can download one day of data for one PV system. (See PVOutput's docs for more info about rate limits.)
Donate
Donating to PVOutput.org increases your quota for a year to 300 requests per hour.
Paid
To get more historical data, you can pay $600 Australian dollars for a year's 'Live System History' subscription for a single country (more info here. And here's PVOutput.org's full price list).
This allows you to use the get batch status
API to download 900 PV-system-years per hour.
If you have subscribed to PVOutput's data service then either
- add
data_service_url
to your configuration file (~/.pvoutput.yml
) or - pass
data_service_url
to thePVOutput
constructor.
The data_service_url
should end in .org
(note this dones include the /service/r2
part of the URL)
For example: data_service_url: https://pvoutput.org/
Install pvoutput Python library
`pip install -e git+https://github.com/openclimatefix/pvoutput.git@main#egg=pvoutput-ocf
Usage
See the Quick Start notebook.
Contributors ✨
Thanks goes to these wonderful people (emoji key):
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tbody> <tr> <td align="center"><a href="http://jack-kelly.com"><img src="https://avatars.githubusercontent.com/u/460756?v=4?s=100" width="100px;" alt="Jack Kelly"/><br /><sub><b>Jack Kelly</b></sub></a><br /><a href="https://github.com/openclimatefix/pvoutput/commits?author=JackKelly" title="Code">💻</a></td> <td align="center"><a href="https://github.com/ssmssam"><img src="https://avatars.githubusercontent.com/u/39378848?v=4?s=100" width="100px;" alt="Sam Murphy-Sugrue"/><br /><sub><b>Sam Murphy-Sugrue</b></sub></a><br /><a href="https://github.com/openclimatefix/pvoutput/commits?author=ssmssam" title="Code">💻</a></td> <td align="center"><a href="https://gabrieltseng.github.io/"><img src="https://avatars.githubusercontent.com/u/29063740?v=4?s=100" width="100px;" alt="Gabriel Tseng"/><br /><sub><b>Gabriel Tseng</b></sub></a><br /><a href="https://github.com/openclimatefix/pvoutput/commits?author=gabrieltseng" title="Code">💻</a></td> <td align="center"><a href="http://www.solar.sheffield.ac.uk/"><img src="https://avatars.githubusercontent.com/u/12187350?v=4?s=100" width="100px;" alt="Jamie Taylor"/><br /><sub><b>Jamie Taylor</b></sub></a><br /><a href="https://github.com/openclimatefix/pvoutput/commits?author=JamieTaylor-TUOS" title="Code">💻</a></td> <td align="center"><a href="https://github.com/peterdudfield"><img src="https://avatars.githubusercontent.com/u/34686298?v=4?s=100" width="100px;" alt="Peter Dudfield"/><br /><sub><b>Peter Dudfield</b></sub></a><br /><a href="#infra-peterdudfield" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td> <td align="center"><a href="https://github.com/vnshanmukh"><img src="https://avatars.githubusercontent.com/u/67438038?v=4?s=100" width="100px;" alt="Shanmukh Chava"/><br /><sub><b>Shanmukh Chava</b></sub></a><br /><a href="https://github.com/openclimatefix/pvoutput/commits?author=vnshanmukh" title="Code">💻</a></td> <td align="center"><a href="https://github.com/Antsthebul"><img src="https://avatars.githubusercontent.com/u/56587872?v=4?s=100" width="100px;" alt="Antsthebul"/><br /><sub><b>Antsthebul</b></sub></a><br /><a href="https://github.com/openclimatefix/pvoutput/commits?author=Antsthebul" title="Code">💻</a></td> </tr> <tr> <td align="center"><a href="http://www.rachitsingh.com"><img src="https://avatars.githubusercontent.com/u/1606892?v=4?s=100" width="100px;" alt="Rachit Singh"/><br /><sub><b>Rachit Singh</b></sub></a><br /><a href="#data-rachtsingh" title="Data">🔣</a> <a href="https://github.com/openclimatefix/pvoutput/commits?author=rachtsingh" title="Code">💻</a></td> <td align="center"><a href="https://github.com/devsjc"><img src="https://avatars.githubusercontent.com/u/47188100?v=4?s=100" width="100px;" alt="devsjc"/><br /><sub><b>devsjc</b></sub></a><br /><a href="https://github.com/openclimatefix/pvoutput/commits?author=devsjc" title="Code">💻</a></td> </tr> </tbody> </table> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END -->This project follows the all-contributors specification. Contributions of any kind welcome!