├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dbt2looker ├── __init__.py ├── cli.py ├── generator.py ├── models.py └── parser.py ├── docs └── demo.gif ├── example ├── README.md ├── dbt_project.yml ├── lookml │ ├── pages.model.lkml │ └── views │ │ └── pages.view.lkml └── models │ ├── prod │ ├── pages.sql │ └── pages.yml │ └── sources.yml ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/README.md -------------------------------------------------------------------------------- /dbt2looker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt2looker/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/dbt2looker/cli.py -------------------------------------------------------------------------------- /dbt2looker/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/dbt2looker/generator.py -------------------------------------------------------------------------------- /dbt2looker/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/dbt2looker/models.py -------------------------------------------------------------------------------- /dbt2looker/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/dbt2looker/parser.py -------------------------------------------------------------------------------- /docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/docs/demo.gif -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/example/README.md -------------------------------------------------------------------------------- /example/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/example/dbt_project.yml -------------------------------------------------------------------------------- /example/lookml/pages.model.lkml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/example/lookml/pages.model.lkml -------------------------------------------------------------------------------- /example/lookml/views/pages.view.lkml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/example/lookml/views/pages.view.lkml -------------------------------------------------------------------------------- /example/models/prod/pages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/example/models/prod/pages.sql -------------------------------------------------------------------------------- /example/models/prod/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/example/models/prod/pages.yml -------------------------------------------------------------------------------- /example/models/sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/example/models/sources.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightdash/dbt2looker/HEAD/pyproject.toml --------------------------------------------------------------------------------