Metadata-Version: 2.1
Name: gspread-rpa
Version: 1.0.1
Summary: a gspread (Python API for Google Sheets) hight level wrapper
Home-page: https://github.com/unipartdigital/gspread_rpa
Author: Unipart Digital
Author-email: rpa@unipart.io
Maintainer: Ali Bendriss
Maintainer-email: ali.bendriss@gmail.com
License: GPLv3
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development :: Bug Tracking
Requires: gspread
Description-Content-Type: text/markdown
License-File: LICENSE

# gspread_rpa

 a [gspread](https://docs.gspread.org/en/latest/) (Python API for Google Sheets) hight level wrapper

## Object:

* CellIndex, GridIndex
  * use x,y (col, row) indexes start at 1
* GoogleSheets
  * embedded spreadsheets and worksheets as well as revision download upload
* CellFormat
  * function call cells formating

## Usage Examples

```
python3 -m pip install --user gspread-rpa
```

```
from gspread_rpa import CellIndex, GridIndex, GoogleSheets, CellFormat

```

 [Basic usage examples](src/gspread_rpa/demo/)


### Environment variable

* GOOGLESHEETS_RUN_MODE="user"
  * use credentials.json
* GOOGLESHEETS_RUN_MODE="service"
  * use service_account.json

## Contribute and contact

* via the [github repository](https://github.com/unipartdigital/gspread_rpa)
* by email: <rpa@unipart.io>

## License notices

```
This program is free software: you can redistribute it and/or modify it under the terms of the GNU
General Public License as published by the Free Software Foundation, either version 3 of the License,
or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program.
If not, see <https://www.gnu.org/licenses/>.
```


