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.
- Host: GitHub
- URL: https://github.com/grandmoff100/sheetspy01
- Owner: GrandMoff100
- Created: 2020-02-16T02:02:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-16T02:13:09.000Z (over 5 years ago)
- Last Synced: 2025-01-23T12:15:25.138Z (9 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SheetsPy01
## Installation:
```
pip install SheetsPy01
#Or
git clone https://github.com/GrandMoff100/SheetsPy01/
```## Usage:
```
import SheetsPy01 as sheetssheet = 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.