Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.9%) to scientific vocabulary

Keywords

api python solar-energy

Keywords from Contributors

photovoltaic projection interactive serializer measurement cycles packaging charts network-simulation archival
Last synced: 6 months ago · JSON representation

Repository

Free PV API

Basic Info
Statistics
  • Stars: 23
  • Watchers: 7
  • Forks: 5
  • Open Issues: 12
  • Releases: 0
Topics
api python solar-energy
Created about 11 years ago · Last pushed 9 months ago
Metadata Files
Readme License Code of conduct

readme.md

test_pvfree

PV Free

A public API for PV modeling parameters and pvlib API for learning about solar.

Announcements

2025-03-22: Now that ElephantSQL has reached its end-of-life, and the Aiven migration is working as expected, the dev website deployed at AlwaysData has been terminated. Please use https://pvfree.azurewebsites.net/ only.

Hosting

pvfree is hosted at Microsoft Azure Cloud App service. Please use https://pvfree.azurewebsites.net/ to get module and inverter parameters for pvlib and to learn about solar energy modeling.

The pvfree database is hosted at Aiven using PostgreSQL.

Contributing

The pytest.ini file is set to run using DJANGO.SETTINGS_MODULE=pvfree.settings.dev and find all tests automatically, to allow you to use just the pytest command instead of python manage.py test testdir --settings pvfree.settings.dev.

Usage

Browsing to pvfree.azurewebsites.net/api/v1/pvinverter/ will display a JSON string with the first 20 records. The endpoint and query string to obtain the next set api/pvinverter/?limit=20&offset=20 is contained in the next key of the string as are the endpoints for each inverter. Note: the query string ?format=json is only necessary when using the API url directly in a browser to display the response.

Tastypie

The API is generated by the Tastypie django extension. Add the following endpoints to the base URL, https://pvfree.azurewebsites.net/:

  • Get first 20 pvinverters.

    api/pvinverter/
    
  • Get first pvinverter.

    api/pvinverter/1/
    
  • Get pvinverter set containing #'s 2, 3, 5, and 10.

    api/pvinverter/set/2;3;5;10/
    
  • Get 100 pvinverters starting from pvinverter # 500.

    api/pvinverter/?limit=100&offset=500
    
  • Get pvinverter database schema.

    api/pvinverter/schema/
    

Python Requests

Python has several libraries for interacting with URLs. The Requests package is available from PyPI.

```python

import requests response = requests.get('https://pvfree.azurewebsites.net/api/v1/pvinverter/set/1;3;5/') response response.statuscode 200 response.content {"objects": [{"C0": -2.48104842861e-05, "C1": -9.0149429405099999e-05, "C2": 0.00066889632690700005, "C3": -0.018880466688599998, "Idcmax": 10.0, "MPPThi": 50.0, "MPPTlow": 20.0, "Paco": 250.0, "Pdco": 259.52205054799998, "Pnt": 0.02, "Pso": 1.7716142241299999, "SandiaID": 1399, "Tamblow": -40.0, "Tambmax": 85.0, "Vaco": 208.0, "Vdcmax": 65.0, "Vdco": 40.242603174599999, "id": 1, "manufacturer": "ABB", "name": "MICRO-0.25-I-OUTD-US-208", "numberMPPTChannels": 1, "resource_uri": "/api/v1/pvinverter/1/", "source": "CEC", "vintage": "2014-01-01", "weight": 1.6499999999999999}, ...]} ```

Owner

  • Name: Breaking Bytes
  • Login: BreakingBytes
  • Kind: organization
  • Email: breaking-bytes@alwaysdata.net
  • Location: Oakland, CA

GitHub Events

Total
  • Issues event: 27
  • Watch event: 3
  • Delete event: 10
  • Issue comment event: 18
  • Push event: 42
  • Gollum event: 48
  • Pull request event: 46
  • Create event: 9
Last Year
  • Issues event: 27
  • Watch event: 3
  • Delete event: 10
  • Issue comment event: 18
  • Push event: 42
  • Gollum event: 48
  • Pull request event: 46
  • Create event: 9

Committers

Last synced: 6 months ago

All Time
  • Total Commits: 326
  • Total Committers: 2
  • Avg Commits per committer: 163.0
  • Development Distribution Score (DDS): 0.043
Past Year
  • Commits: 97
  • Committers: 2
  • Avg Commits per committer: 48.5
  • Development Distribution Score (DDS): 0.072
Top Committers
Name Email Commits
Mark Mikofski b****o@y****m 312
dependabot[bot] 4****] 14

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 30
  • Total pull requests: 51
  • Average time to close issues: 6 months
  • Average time to close pull requests: 25 days
  • Total issue authors: 1
  • Total pull request authors: 2
  • Average comments per issue: 0.53
  • Average comments per pull request: 0.25
  • Merged pull requests: 46
  • Bot issues: 0
  • Bot pull requests: 19
Past Year
  • Issues: 14
  • Pull requests: 26
  • Average time to close issues: 10 days
  • Average time to close pull requests: 6 days
  • Issue authors: 1
  • Pull request authors: 2
  • Average comments per issue: 0.36
  • Average comments per pull request: 0.19
  • Merged pull requests: 24
  • Bot issues: 0
  • Bot pull requests: 9
Top Authors
Issue Authors
  • mikofski (30)
Pull Request Authors
  • mikofski (49)
  • dependabot[bot] (28)
Top Labels
Issue Labels
bug (5) enhancement (4) dependencies (3) python (3) help wanted (2)
Pull Request Labels
dependencies (30) python (18) enhancement (3) github_actions (2)

Dependencies

requirements.txt pypi
  • bokeh ==2.0.1
  • defusedxml ==0.6.0
  • dj_database_url ==0.5.0
  • django ==1.11.29
  • django_tastypie ==0.14.3
  • future ==0.18.2
  • gunicorn ==20.0.4
  • jinja2 ==2.11.3
  • lxml ==4.6.5
  • nose ==1.3.7
  • numpy ==1.16.2
  • openpyxl ==3.0.3
  • pandas ==0.24.2
  • psycopg2 ==2.8.5
  • pvlib ==0.6.1
  • pytest ==5.4.1
  • pytest-django ==3.9.0
  • python_dateutil ==2.8.1
  • pytz ==2019.3
  • pyyaml ==5.4
  • scipy ==1.2.1
  • six ==1.14.0
  • tables ==3.6.1
  • whitenoise ==5.0.1
.github/workflows/master_pvfree.yml actions
  • actions/checkout v2 composite
  • actions/download-artifact v2 composite
  • actions/setup-python v1 composite
  • actions/upload-artifact v2 composite
  • azure/webapps-deploy v2 composite
.github/workflows/test_pvfree.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v5 composite
  • postgres * docker