├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── pyproject.toml ├── spreadsheet.py ├── spreadsheet ├── __init__.py └── spreadsheet.py └── tests ├── fixtures └── spreadsheet.json └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/app.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/pyproject.toml -------------------------------------------------------------------------------- /spreadsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/spreadsheet.py -------------------------------------------------------------------------------- /spreadsheet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/spreadsheet/__init__.py -------------------------------------------------------------------------------- /spreadsheet/spreadsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/spreadsheet/spreadsheet.py -------------------------------------------------------------------------------- /tests/fixtures/spreadsheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/tests/fixtures/spreadsheet.json -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capjamesg/spreadsheet/HEAD/tests/test.py --------------------------------------------------------------------------------