Google spreadsheet create/update util
Project description
**Author**: `Pahaz Blinov`_
**Repo**: https://github.com/pahaz/google-spreadsheets-api/
Simple create/append google spreadsheet api helper.
Requirements
-------------
* `oauth2client`_
* `googleapiclient`_
Installation
============
`google-spreadsheets-api`_ is on PyPI, so simply run:
::
pip install google_spreadsheet
or ::
easy_install google_spreadsheet
to have it installed in your environment.
For installing from source, clone the
`repo <https://github.com/pahaz/google-spreadsheets-api>`_ and run::
python setup.py install
Usage scenarios
===============
Two typical usecases where ``google_spreadsheet`` is helpful there are:
1. create new spreadsheet with restricted acccess rules,
2. append data to existing spreadsheet.
You can use it for export your user data to the google spreadsheet.
And sharing this data to all around the world or sharing to specific users.
Usage examples
==============
Example 1: create spreadsheet
-----------------------------
.. code-block:: py
from google_spreadsheet import get_credentials, Spreadsheets
def create_example():
credentials = get_credentials('auth.json', [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/spreadsheets'])
api = Spreadsheets(credentials=credentials)
sheet = api.create('test1', writers=['pahaz.blinov@gmail.com'])
print(sheet)
if __name__ == '__main__':
create_example()
Example 2: append row to existing spreadsheet
---------------------------------------------
.. code-block:: py
from google_spreadsheet import get_credentials, Spreadsheets
def append_data_example():
credentials = get_credentials('auth.json', [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/spreadsheets'])
api = Spreadsheets(credentials=credentials)
sheet = api.get('1jSHsmPTOOiPXdYQlrVBwbo3MO1vp64lmi5R_Ld_duKo')
sheet.append([[1, 2], [3, 4]])
if __name__ == '__main__':
append_data_example()
.. _Pahaz Blinov: https://github.com/pahaz/
.. _oauth2client: https://github.com/google/oauth2client/
.. _googleapiclient: https://github.com/google/google-api-python-client/
**Repo**: https://github.com/pahaz/google-spreadsheets-api/
Simple create/append google spreadsheet api helper.
Requirements
-------------
* `oauth2client`_
* `googleapiclient`_
Installation
============
`google-spreadsheets-api`_ is on PyPI, so simply run:
::
pip install google_spreadsheet
or ::
easy_install google_spreadsheet
to have it installed in your environment.
For installing from source, clone the
`repo <https://github.com/pahaz/google-spreadsheets-api>`_ and run::
python setup.py install
Usage scenarios
===============
Two typical usecases where ``google_spreadsheet`` is helpful there are:
1. create new spreadsheet with restricted acccess rules,
2. append data to existing spreadsheet.
You can use it for export your user data to the google spreadsheet.
And sharing this data to all around the world or sharing to specific users.
Usage examples
==============
Example 1: create spreadsheet
-----------------------------
.. code-block:: py
from google_spreadsheet import get_credentials, Spreadsheets
def create_example():
credentials = get_credentials('auth.json', [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/spreadsheets'])
api = Spreadsheets(credentials=credentials)
sheet = api.create('test1', writers=['pahaz.blinov@gmail.com'])
print(sheet)
if __name__ == '__main__':
create_example()
Example 2: append row to existing spreadsheet
---------------------------------------------
.. code-block:: py
from google_spreadsheet import get_credentials, Spreadsheets
def append_data_example():
credentials = get_credentials('auth.json', [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/spreadsheets'])
api = Spreadsheets(credentials=credentials)
sheet = api.get('1jSHsmPTOOiPXdYQlrVBwbo3MO1vp64lmi5R_Ld_duKo')
sheet.append([[1, 2], [3, 4]])
if __name__ == '__main__':
append_data_example()
.. _Pahaz Blinov: https://github.com/pahaz/
.. _oauth2client: https://github.com/google/oauth2client/
.. _googleapiclient: https://github.com/google/google-api-python-client/
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file google_spreadsheet-0.0.2.tar.gz
.
File metadata
- Download URL: google_spreadsheet-0.0.2.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2aee4ef6474c721858a42302543bc0016dbcf7edf2515d6cbc882ffe5beebd69 |
|
MD5 | d1100509fa910344d752fbf3fdd60eeb |
|
BLAKE2b-256 | 251e0ec04fa7d8b56b08bdef34117e7183e5a5ae65b751c7a57e2023e2d36d3d |