1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
"""Google Spreadsheets Python API"""
__version__ = "6.1.4"
__author__ = "Anton Burnashev"
from .auth import (
api_key,
authorize,
oauth,
oauth_from_dict,
service_account,
service_account_from_dict,
)
from .cell import Cell
from .client import Client
from .exceptions import (
GSpreadException,
IncorrectCellLabel,
NoValidUrlKeyFound,
SpreadsheetNotFound,
WorksheetNotFound,
)
from .http_client import BackOffHTTPClient, HTTPClient
from .spreadsheet import Spreadsheet
from .worksheet import ValueRange, Worksheet
|