Metadata-Version: 2.1
Name: py-office-sheet
Version: 0.1.1
Summary: py-office-sheet is a gui based on pandas and numpy to process data efficienly
Home-page: https://github.com/YC-Lammy/py-office-sheet
Author: YC
Author-email: yclam508@protonmail.com
License: GPL
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
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 :: Only
Description-Content-Type: text/markdown
Requires-Dist: PySide2
Requires-Dist: joblib
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: pandas

# py-office-sheet
A cross-platform spreadsheet based on pandas and numpy for effecient data processing

in progress...

- default saving format: pandas data object(.pdobj), upto 3 times less memory use compare to generic format such as excel or csv. this is done by joblib, therefore any application that has python support would be able to read it. It makes data managment easier when doing data analyze or machine learning.

    to import file in python:
```
   import joblib
   pandas_data_frame = joblin.load("yourfile.pdobj")
```

- alternative format: numpy ndarray obj(.npobj) for maximum efficiency
- support interactive python command
- support python scripting

light mode:
![alt text](https://raw.githubusercontent.com/YC-Lammy/np_spreadsheet/main/doc/Screenshot_20210609_111555.png)


dark mode:
![alt text](https://raw.githubusercontent.com/YC-Lammy/np_spreadsheet/main/doc/Screenshot_20210608_145022.png)


