A Python package for reading data from the Inputs, Assumptions and Scenarios Report (IASR) Microsoft Excel workbook published by the Australian Energy Market Operator for use in their Integrated System Plan modelling.
Project description
AEMO Integrated System Plan Assumptions Workbook Parser
A Python package for reading data from the Inputs, Assumptions and Scenarios Report (IASR) Microsoft Excel workbook published by the Australian Energy Market Operator for use in their Integrated System Plan modelling.
Table of contents
Installation
pip install isp-workbook-parser
How the package works
- Load a workbook using
Parser(see examples below).- While we do not include workbooks with the package distribution, you can find the versions for which table configurations are written within
workbooks/<version>.
- While we do not include workbooks with the package distribution, you can find the versions for which table configurations are written within
- Table configuration files for data tables are located in
src/config/<version>- These specify the name, location, columns and data range of tables to be extracted from a particular workbook version. Optionally, rows to skip and not read in (e.g. where AEMO has formatted a row with a strike through to indicate that the data is no longer being used) and columns with merged rows can also be specified and handled.
- These are included with the package distributions.
Parserloads the MS Excel workbook and, by default, will check if the version of the workbook is supported by seeing if configuration files are included in the package for that version.- If they are,
Parsercan use these configuration files to parse the data tables and save them as CSVs.
[!NOTE] This package makes some opinionated decisions when processing tables with multiple header rows, including how tables are reduced to a single header and how data in merged cells is handled. For more detail, refer to the docstring and code in
read_table.py.
Table configurations
Table configuration file attributes
name: the table namesheet_name: the sheet where the table is located- N.B. there may be spaces at the end of sheet names in the workbook
header_rows: this specifies the Excel row(s) with table column names- A single row of table column names (e.g.
6) - Or a list of row numbers for the table header sorted in ascending order (e.g.
[6, 7, 8])
- A single row of table column names (e.g.
end_row: the last row of table datacolumn_range: the Excel column range of the table in alphabetical/Excel format, e.g."B:F"skip_rows: optional, Excel row(s) in the table that should not be read in- A single row (e.g.
15) - Or a list of rows (e.g.
[15, 16])
- A single row (e.g.
columns_with_merged_rows: optional, Excel column(s) with merged rows- A single column in alphabetical format (e.g.
"B"), - Or a list of columns in alphabetical format (e.g.
["B", "D"]).
- A single column in alphabetical format (e.g.
Adding table configuration files to this package
Refer to the contributing instructions for details on how to contribute table configuration (YAML) files to this repository and package.
Examples
Bulk export
Export all the data tables the package has a config file for to CSV files.
from isp_workbook_parser import Parser
workbook = Parser("<path/to/workbook>/2024-isp-inputs-and-assumptions-workbook.xlsx")
workbook.save_tables('<path/to/output directory>')
List tables with configuration files
Return a dictionary of table names, with lists of tables names stored under a key which is their sheet name in the workbook. For a given workbook version, this only returns tables the package has a configuration file for.
from isp_workbook_parser import Parser
workbook = Parser("<path/to/workbook>/2024-isp-inputs-and-assumptions-workbook.xlsx")
names = workbook.get_table_names()
names['Build limits']
Get table as DataFrame
Get a single table as a pandas DataFrame.
from isp_workbook_parser import Parser
workbook = Parser("<path/to/workbook>/2024-isp-inputs-and-assumptions-workbook.xlsx")
table = workbook.get_table("retirement_costs")
Get table with custom configuration
Get a table by directly providing the table config.
from isp_workbook_parser import Parser, TableConfig
workbook = Parser("<path/to/workbook>/2024-isp-inputs-and-assumptions-workbook.xlsx")
table_config = TableConfig(
name="table_name",
sheet_name="sheet_name",
header_rows=5,
end_row=21,
column_range="B:J",
)
workbook.get_table_from_config(table_config)
Contributing
Interested in contributing to the source code or adding table configurations? Check out the contributing instructions, which also includes steps to install isp-workbook-parser for development.
Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
License
isp-workbook-parser was created as a part of the OpenISP project. It is licensed under the terms of GNU GPL-3.0-or-later licences.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file isp_workbook_parser-1.2.2.tar.gz.
File metadata
- Download URL: isp_workbook_parser-1.2.2.tar.gz
- Upload date:
- Size: 38.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f390d6d51978318a877378866c671b6413e622dc0f6c6d1c6b93cecaa14e2276
|
|
| MD5 |
563ee45260a39177b6116d3fc91a788a
|
|
| BLAKE2b-256 |
bfbc5cbfc08faa91ed8dfaa4208700d28126c298eb2815565bfa6d93341c1d26
|
File details
Details for the file isp_workbook_parser-1.2.2-py3-none-any.whl.
File metadata
- Download URL: isp_workbook_parser-1.2.2-py3-none-any.whl
- Upload date:
- Size: 53.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c92665f0fbb4d4513ebcaf8620af2b3653fa327b9aa4d95d12022fd1f15a3f0b
|
|
| MD5 |
3ac5b791a77b80f3cab987a54ad04422
|
|
| BLAKE2b-256 |
4a3756e13cad5c914804d4922ecf16e0d998c8d4c629fb0bd43b91a2c24a1a8e
|