Skip to content

Commit

Permalink
python gspread library added
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey Melnikov committed Jun 27, 2018
1 parent ac1af37 commit ef3ece1
Show file tree
Hide file tree
Showing 9 changed files with 1,643 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,5 @@ venv.bak/

credentials.json
gsheets2txt.ini
_*.txt
_*.txt
.idea/
26 changes: 26 additions & 0 deletions gspread/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-

"""
gspread
~~~~~~~
Google Spreadsheets client library.
"""

__version__ = '0.6.1'
__author__ = 'Anton Burnashev'


try:
from urllib import urlencode
except ImportError:
from urllib.parse import urlencode


from .client import Client, authorize
from .models import Spreadsheet, Worksheet, Cell
from .exceptions import (GSpreadException, AuthenticationError,
SpreadsheetNotFound, NoValidUrlKeyFound,
IncorrectCellLabel, WorksheetNotFound,
UpdateCellError, RequestError, CellNotFound)
Loading

0 comments on commit ef3ece1

Please sign in to comment.