An open API service indexing awesome lists of open source software.

https://github.com/capjamesg/spreadsheet

A spreadsheet engine implemented in Python.
https://github.com/capjamesg/spreadsheet

Last synced: about 1 year ago
JSON representation

A spreadsheet engine implemented in Python.

Awesome Lists containing this project

README

          

# spreadsheet
A spreadsheet engine implemented in Python.

## Development

Create and activate a venv:

```shell
python -m venv .venv
. .venv/bin/activate # on Linux
env\Scripts\activate # on Windows
```

Install the package and its runtime and test dependencies:

```shell
python -m pip install -e .[tests]
```

Run the tests:

```shell
python -m pytest
```