spreadscript: Use a spreadsheet as a function.
Project description
# SpreadScript: Use a spreadsheet as a function This project provides a way to use spreadsheets from the command line or from Python programs.
The inputs and outputs are defined by two tables in a new sheet named “Interface”. SpreadScript will read the input variables from column B and the values from column C. Likewise, the output variables are read from column E and their values from column F. In both cases, the variables are read from row 4 onward until an empty cell is encountered.
## Installation Prerequisites:
apt install python3-uno
Via [PyPI](https://pypi.python.org/pypi/spreadscript):
pip3 install spreadscript
From source:
git clone https://github.com/jfjlaros/spreadscript.git cd spreadscript pip3 install .
## Usage Suppose we have the following table.
![Example table.](data/example_table.png)
If we want to define a and b as input variables and total as the output variable, we first add a new sheet named “Interface”.
![Example interface.](data/example_interface.png)
In this sheet we put the input variables in column B and the values in column C. The value of C4 is =$Sheet1.C3, that of C5 is =$Sheet1.C4.
Likewise, the output variables are put in column E and the values in column F. In this example, the value in F4 is =$Sheet1.C8.
### Command line interface With the command line interface, the input and output table can be read.
$ spreadscript read_input data/test.ods {“b”: 2.0, “a”: 1.0}
$ spreadscript read_output data/test.ods {“total”: 15.0}
To manipulate the input, use the process subcommand:
$ spreadscript process data/test.ods ‘{“b”: 12.0}’ {“total”: 25.0}
### Library First import the SpreadScript class and load a spreadsheet.
`python >>> from spreadscript import SpreadScript >>> >>> spreadsheet = SpreadScript('data/test.ods') `
The input variables can be read with the read_input method.
`python >>> spreadsheet.read_input() {'b': 2.0, 'a': 1.0} `
The read_output method returns all output variables.
`python >>> spreadsheet.read_output() {'total': 15.0} `
The write_input method is used to update any variables.
`python >>> spreadsheet.write_input({'b': 4.0}) >>> spreadsheet.read_output() {'total': 17.0} `
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
File details
Details for the file spreadscript-0.0.3.tar.gz
.
File metadata
- Download URL: spreadscript-0.0.3.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55cb0ab844f3bea1755d37a9f1d1ec36e1edf0c83d8a8bf668e5f121592964aa |
|
MD5 | d456b06c376654c9547bc7981bf8a47e |
|
BLAKE2b-256 | d5b26eaa928a58f33c4f695b2b6e3f80c5667449f434a47f189b7f3619b62eba |