├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── setup.py ├── sqlite_transform ├── __init__.py └── cli.py └── tests ├── conftest.py ├── test_jsonsplit.py ├── test_lambda.py └── test_parsedate.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/setup.py -------------------------------------------------------------------------------- /sqlite_transform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sqlite_transform/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/sqlite_transform/cli.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_jsonsplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/tests/test_jsonsplit.py -------------------------------------------------------------------------------- /tests/test_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/tests/test_lambda.py -------------------------------------------------------------------------------- /tests/test_parsedate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/sqlite-transform/HEAD/tests/test_parsedate.py --------------------------------------------------------------------------------