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.
- Host: GitHub
- URL: https://github.com/capjamesg/spreadsheet
- Owner: capjamesg
- License: mit
- Created: 2024-08-20T18:28:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-24T20:22:40.000Z (almost 2 years ago)
- Last Synced: 2025-07-19T10:21:34.454Z (about 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 19
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```