├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── db_to_sqlite ├── __init__.py └── cli.py ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── shared.py ├── test_db_to_sqlite.py ├── test_docs.py ├── test_fixtures.py └── test_redact.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | *.egg-info 3 | __pycache__ 4 | dist 5 | build 6 | venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/README.md -------------------------------------------------------------------------------- /db_to_sqlite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db_to_sqlite/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/db_to_sqlite/cli.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/tests/shared.py -------------------------------------------------------------------------------- /tests/test_db_to_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/tests/test_db_to_sqlite.py -------------------------------------------------------------------------------- /tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/tests/test_docs.py -------------------------------------------------------------------------------- /tests/test_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/tests/test_fixtures.py -------------------------------------------------------------------------------- /tests/test_redact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/db-to-sqlite/HEAD/tests/test_redact.py --------------------------------------------------------------------------------