Metadata-Version: 1.0
Name: gspread
Version: 0.0.9
Summary: Google Spreadsheets Python library
Home-page: https://github.com/burnash/gspread
Author: Anton Burnashev
Author-email: fuss.here@gmail.com
License: MIT
Description: gspread — Google Spreadsheets Python library
        ============================================
        
        gspread is a client library for interacting with `Google Spreadsheets`_.
        
        .. _Google Spreadsheets: http://www.google.com/google-d-s/spreadsheets/
        
        Features
        --------
        
        * Open a spreadsheet by its *title*, *url* or *key*.
        * Extract range, entire row or column values.
        * Independent of Google Data Python client library.
        
        Example
        -------
        
        The following code is a Python program that connects to Google Data API
        and fetches a cell's value from a spreadsheet::
        
            import gspread
        
            # Login with your Google account
            gc = gspread.login('account@gmail.com','password')
        
            # Spreadsheets can be opened by their title in Google Docs
            spreadsheet = gc.open("where's all the money gone 2011")
        
            # Select worksheet by index
            worksheet = spreadsheet.get_worksheet(0)
        
            # Get a cell value
            val = worksheet.cell(1, 2).value
        
        The cell's value can be easily updated::
        
            worksheet.update_cell(1, 2, 'Bingo!')
        
        To fetch a cell range, specify it by common notation::
        
            cell_list = worksheet.range('A1:A7')
        
        After some processing, this range can be updated in batch::
        
            for cell in cell_list:
                cell.value = 'O_o'
        
            worksheet.update_cells(cell_list)
        
        
        Docs & API
        ----------
        
        Head to `gspread's page <http://burnash.github.com/gspread/>`_.
        
        
        Code
        ----
        
        Check `gspread on GitHub <https://github.com/burnash/gspread>`_.
        
        
        
        License
        -------
        MIT
        
        Download
        ========
        
Keywords: spreadsheets,google-spreadsheets
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
