├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── gmail-to-sqlite ├── gmail_to_sqlite ├── __init__.py ├── __main__.py ├── auth.py ├── constants.py ├── db.py ├── main.py ├── message.py ├── migrations.py ├── schema_migrations │ ├── __init__.py │ └── v1_add_is_deleted_column.py └── sync.py ├── main.py ├── pyproject.toml ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── test_db.py ├── test_message.py └── test_migrations.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/README.md -------------------------------------------------------------------------------- /gmail-to-sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail-to-sqlite -------------------------------------------------------------------------------- /gmail_to_sqlite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/__init__.py -------------------------------------------------------------------------------- /gmail_to_sqlite/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/__main__.py -------------------------------------------------------------------------------- /gmail_to_sqlite/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/auth.py -------------------------------------------------------------------------------- /gmail_to_sqlite/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/constants.py -------------------------------------------------------------------------------- /gmail_to_sqlite/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/db.py -------------------------------------------------------------------------------- /gmail_to_sqlite/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/main.py -------------------------------------------------------------------------------- /gmail_to_sqlite/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/message.py -------------------------------------------------------------------------------- /gmail_to_sqlite/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/migrations.py -------------------------------------------------------------------------------- /gmail_to_sqlite/schema_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | """Database migrations package.""" 2 | -------------------------------------------------------------------------------- /gmail_to_sqlite/schema_migrations/v1_add_is_deleted_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/schema_migrations/v1_add_is_deleted_column.py -------------------------------------------------------------------------------- /gmail_to_sqlite/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/gmail_to_sqlite/sync.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the gmail-to-sqlite package.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/tests/test_db.py -------------------------------------------------------------------------------- /tests/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/tests/test_message.py -------------------------------------------------------------------------------- /tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/tests/test_migrations.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcboeker/gmail-to-sqlite/HEAD/uv.lock --------------------------------------------------------------------------------