Metadata-Version: 2.1
Name: spreadpandas
Version: 0.0.1
Summary: Get the spreadsheet representation of a pandas data frame.
Home-page: https://github.com/FilippoPisello/SpreadPandas
Author: Filippo Pisello
Author-email: filippo.pisello@live.it
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# SpreadPandas
The Spreadsheet class is meant to identify which cells of a spreadsheet would be occupied by a pandas data frame based on its dimensions. The correspondence is carried out for the whole data frame and its sub elements, like the header, index and body.

It follows a simple example. Consider the following table to be a 1x2 pandas data frame:
|     | Name   | Type                 |
| --- | ------ | -------------------- |
| 1   | Python | Programming Language |
| 2   | Word   | Text Editor          |

By populating the sheet from the top left and keeping the index, the table would occupy the cells ["B1", "C1", "A2", "B2", "C2", "A3", "B3", "C3"]. In particular, ["B1", "C1"] would be the header, ["A2", "A3"] the index and ["B2", "C2", "B3", "C3"] the body.

### Under construction...

