This project is alpha, some functionality only works under the right conditions or may break during development.
Query is a Data Exploration tool and SQL IDE for mabel datasets
- Data Exploration using the built-in SQL IDE
- Automatic vizualization of data
Query is built using:
NOTE: Query currently requires an alpha version of mabel, v0.5, which is available using:
pip install mabelbeta
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.
If you have a suggestion for an improvement or a bug, raise a ticket or start a discussion.
Want to help build mabel? See the contribution guidance.
query/
├── assets/ <-- Items for this page
├── src/
│ ├── internals/
│ │ ├── drivers/ <-- Transformers and adapters
│ │ ├── helpers/ <-- Reused functions
│ │ └── models/ <-- Pydantic models for API interfaces
│ ├── routers/ <-- API end-point handlers
│ ├── static/
│ │ ├── dist/ <-- Application specific assets (e.g. css, js)
│ │ └── plugins/ <-- Self-hosted 3rd party assets
│ └── templates/ <-- HTML assets
├── tests/ <-- Unit and Regression Tests
└── main.py <-- application entry-point