├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── gsheetsdb ├── __init__.py ├── __version__.py ├── auth.py ├── console.py ├── convert.py ├── db.py ├── dialect.py ├── exceptions.py ├── formatting.py ├── processors.py ├── query.py ├── sqlite.py ├── translator.py ├── types.py ├── url.py └── utils.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── context.py ├── test_console.py ├── test_convert.py ├── test_db.py ├── test_dialect.py ├── test_processing.py ├── test_query.py ├── test_translation.py ├── test_url.py └── test_utils.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/README.md -------------------------------------------------------------------------------- /gsheetsdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/__init__.py -------------------------------------------------------------------------------- /gsheetsdb/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.13" 2 | -------------------------------------------------------------------------------- /gsheetsdb/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/auth.py -------------------------------------------------------------------------------- /gsheetsdb/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/console.py -------------------------------------------------------------------------------- /gsheetsdb/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/convert.py -------------------------------------------------------------------------------- /gsheetsdb/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/db.py -------------------------------------------------------------------------------- /gsheetsdb/dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/dialect.py -------------------------------------------------------------------------------- /gsheetsdb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/exceptions.py -------------------------------------------------------------------------------- /gsheetsdb/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/formatting.py -------------------------------------------------------------------------------- /gsheetsdb/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/processors.py -------------------------------------------------------------------------------- /gsheetsdb/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/query.py -------------------------------------------------------------------------------- /gsheetsdb/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/sqlite.py -------------------------------------------------------------------------------- /gsheetsdb/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/translator.py -------------------------------------------------------------------------------- /gsheetsdb/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/types.py -------------------------------------------------------------------------------- /gsheetsdb/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/url.py -------------------------------------------------------------------------------- /gsheetsdb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/gsheetsdb/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_console.py -------------------------------------------------------------------------------- /tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_convert.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_dialect.py -------------------------------------------------------------------------------- /tests/test_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_processing.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_translation.py -------------------------------------------------------------------------------- /tests/test_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_url.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betodealmeida/gsheets-db-api/HEAD/tests/test_utils.py --------------------------------------------------------------------------------