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

https://github.com/grandmoff100/sheetspy01

A spreadsheet module that is easy interact with, comes with built-in pretty printing and formating.
https://github.com/grandmoff100/sheetspy01

Last synced: 7 months ago
JSON representation

A spreadsheet module that is easy interact with, comes with built-in pretty printing and formating.

Awesome Lists containing this project

README

          

# SheetsPy01
## Installation:
```
pip install SheetsPy01
#Or
git clone https://github.com/GrandMoff100/SheetsPy01/
```

## Usage:
```
import SheetsPy01 as sheets

sheet = sheets.Spreadsheet(,)

sheet.change_cell(,,)

sheet.get_cell(,)
#Returns:
('X','Y',)

sheet.pretty_format(formating=) # Number of spaces to format sheet with.
sheet.pretty_print()

sheet.output
# A list of all lines of the spreadsheet.
# You can use this however you like.
```

## Changelog:
1.0.0 - Initial Upload
1.0.1 - Distribution changes
1.0.2 - First stable release.
1.0.3 - Added various outputs processes besides just printing.