├── .devcontainer └── devcontainer.json ├── .flake8 ├── .github ├── CODEOWNERS ├── dependabot.yml ├── semantic.yml └── workflows │ ├── build.yaml │ ├── ci.yml │ ├── constraints.txt │ └── project_add.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cliff.toml ├── examples ├── .gitignore ├── README.md ├── mapperpic.png ├── meltano.yml └── output │ └── .gitignore ├── fixtures ├── animals-data.jsonl ├── customers.csv ├── employees.csv ├── nested.singer └── people.singer ├── meltano.yml ├── meltano_map_transform ├── __init__.py └── mapper.py ├── output └── .gitignore ├── plugins ├── extractors │ ├── tap-csv--meltanolabs.lock │ └── tap-smoke-test.lock ├── loaders │ └── target-sqlite--meltanolabs.lock └── mappers │ └── meltano-map-transformer--meltano.lock ├── poetry.lock ├── pyproject.toml └── scripts ├── nested.sh └── people.sh /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/constraints.txt: -------------------------------------------------------------------------------- 1 | meltano==4.0.6 2 | poetry==2.2.1 3 | -------------------------------------------------------------------------------- /.github/workflows/project_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.github/workflows/project_add.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/README.md -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/cliff.toml -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/mapperpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/examples/mapperpic.png -------------------------------------------------------------------------------- /examples/meltano.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/examples/meltano.yml -------------------------------------------------------------------------------- /examples/output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !dev 4 | !prod 5 | -------------------------------------------------------------------------------- /fixtures/animals-data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/fixtures/animals-data.jsonl -------------------------------------------------------------------------------- /fixtures/customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/fixtures/customers.csv -------------------------------------------------------------------------------- /fixtures/employees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/fixtures/employees.csv -------------------------------------------------------------------------------- /fixtures/nested.singer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/fixtures/nested.singer -------------------------------------------------------------------------------- /fixtures/people.singer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/fixtures/people.singer -------------------------------------------------------------------------------- /meltano.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/meltano.yml -------------------------------------------------------------------------------- /meltano_map_transform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/meltano_map_transform/__init__.py -------------------------------------------------------------------------------- /meltano_map_transform/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/meltano_map_transform/mapper.py -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !dev 4 | !prod 5 | -------------------------------------------------------------------------------- /plugins/extractors/tap-csv--meltanolabs.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/plugins/extractors/tap-csv--meltanolabs.lock -------------------------------------------------------------------------------- /plugins/extractors/tap-smoke-test.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/plugins/extractors/tap-smoke-test.lock -------------------------------------------------------------------------------- /plugins/loaders/target-sqlite--meltanolabs.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/plugins/loaders/target-sqlite--meltanolabs.lock -------------------------------------------------------------------------------- /plugins/mappers/meltano-map-transformer--meltano.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/plugins/mappers/meltano-map-transformer--meltano.lock -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeltanoLabs/meltano-map-transform/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/nested.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat fixtures/nested.singer 4 | -------------------------------------------------------------------------------- /scripts/people.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat fixtures/people.singer 4 | --------------------------------------------------------------------------------