Metadata-Version: 2.1
Name: PySheets
Version: 1.0.0
Summary: A module full of many tools and extensions incorporated into the SheetsPy01 spreadsheet module.
Home-page: https://github.com/GrandMoff100/SheetsHandler
Author: Quantum_Wizard
Author-email: minecraftcrusher100@gmail.com
License: MIT License
Platform: UNKNOWN
Description-Content-Type: text/markdown

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

## Usage:
```
import SheetsPy01 as sheets

sheet = sheets.Spreadsheet(<int:length>,<int:width>)

sheet.change_cell(<int:x>,<int:y>,<new_content>)

sheet.get_cell(<int:x>,<int:y>)
#Returns:
('X<int:x>','Y<int:y>',<content>)

sheet.pretty_format(formating=<int>) # 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.
**1.0.4 - Fixed output bugs
```

