Metadata-Version: 1.0
Name: gspread
Version: 0.0.8
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
        
        
        Features
        --------
        
        * Open a spreadsheet by its **title** or **url**.
        * Extract entire row or column values.
        * No need to mess around with spreadsheets' keys.
        * Independent of Google Data Python client library.
        
        Usage
        -----
        
        ::
        
            import gspread
        
            gc = gspread.Client(auth=('the.email.address@gmail.com','password'))
            gc.login()
        
            # Spreadsheets can be opened by their title in Google Docs
            spreadsheet = gc.open('some title')
        
            # If you want to be specific, use a key (which can be extracted from
            # the spreadsheet's url
            sht1 = gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE')
        
            # Or by the entire url
            sht2 = gc.open_by_url('https://docs.google.com/spreadsheet/ccc?key=0Bm...FE&hl')
        
            # Select worksheet by index
            worksheet = spreadsheet.get_worksheet(0)
        
            # Get a cell value
            val = worksheet.cell(1, 2).value
        
            worksheet.update_cell(1, 2, 'Bingo!')
        
        
        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
