├── .coveragerc ├── .flake8 ├── .github └── workflows │ ├── python-publish.yml │ └── python-test.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── advanced.py └── basic.py ├── nordpool ├── __init__.py └── elspot.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── _utils.py ├── test_different_currency.py ├── test_multiple_area_hourly.py ├── test_prices_not_available.py ├── test_single_area_15min.py ├── test_single_area_30min.py ├── test_single_area_daily.py ├── test_single_area_hourly.py ├── test_single_area_monthly.py ├── test_single_area_weekly.py ├── test_single_area_yearly.py ├── test_system_hourly.py ├── test_unsupported_resolution.py └── vcr ├── different_currency.yaml ├── multiple_area_hourly.yaml ├── prices_not_available.yaml ├── single_area_15min.yaml ├── single_area_30min.yaml ├── single_area_daily.yaml ├── single_area_hourly.yaml ├── single_area_monthly.yaml ├── single_area_weekly.yaml ├── single_area_yearly.yaml └── system_hourly.yaml /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | relative_files = True 3 | 4 | [report] 5 | fail_under = 100 6 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max_line_length = 88 3 | -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/README.md -------------------------------------------------------------------------------- /examples/advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/examples/advanced.py -------------------------------------------------------------------------------- /examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/examples/basic.py -------------------------------------------------------------------------------- /nordpool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/nordpool/__init__.py -------------------------------------------------------------------------------- /nordpool/elspot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/nordpool/elspot.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/_utils.py -------------------------------------------------------------------------------- /tests/test_different_currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_different_currency.py -------------------------------------------------------------------------------- /tests/test_multiple_area_hourly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_multiple_area_hourly.py -------------------------------------------------------------------------------- /tests/test_prices_not_available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_prices_not_available.py -------------------------------------------------------------------------------- /tests/test_single_area_15min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_single_area_15min.py -------------------------------------------------------------------------------- /tests/test_single_area_30min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_single_area_30min.py -------------------------------------------------------------------------------- /tests/test_single_area_daily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_single_area_daily.py -------------------------------------------------------------------------------- /tests/test_single_area_hourly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_single_area_hourly.py -------------------------------------------------------------------------------- /tests/test_single_area_monthly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_single_area_monthly.py -------------------------------------------------------------------------------- /tests/test_single_area_weekly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_single_area_weekly.py -------------------------------------------------------------------------------- /tests/test_single_area_yearly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_single_area_yearly.py -------------------------------------------------------------------------------- /tests/test_system_hourly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_system_hourly.py -------------------------------------------------------------------------------- /tests/test_unsupported_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/test_unsupported_resolution.py -------------------------------------------------------------------------------- /tests/vcr/different_currency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/different_currency.yaml -------------------------------------------------------------------------------- /tests/vcr/multiple_area_hourly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/multiple_area_hourly.yaml -------------------------------------------------------------------------------- /tests/vcr/prices_not_available.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/prices_not_available.yaml -------------------------------------------------------------------------------- /tests/vcr/single_area_15min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/single_area_15min.yaml -------------------------------------------------------------------------------- /tests/vcr/single_area_30min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/single_area_30min.yaml -------------------------------------------------------------------------------- /tests/vcr/single_area_daily.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/single_area_daily.yaml -------------------------------------------------------------------------------- /tests/vcr/single_area_hourly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/single_area_hourly.yaml -------------------------------------------------------------------------------- /tests/vcr/single_area_monthly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/single_area_monthly.yaml -------------------------------------------------------------------------------- /tests/vcr/single_area_weekly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/single_area_weekly.yaml -------------------------------------------------------------------------------- /tests/vcr/single_area_yearly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/single_area_yearly.yaml -------------------------------------------------------------------------------- /tests/vcr/system_hourly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kipe/nordpool/HEAD/tests/vcr/system_hourly.yaml --------------------------------------------------------------------------------