Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data.
visualization
javascript
mysql
python
bigquery
bi
spark
dashboard
athena
analytics
postgresql
business-intelligence
redash
redshift
databricks
hacktoberfest
spark-sql
-
Updated
Sep 10, 2021 - Python
Example of usage:
users = await User.filter(first_name__ilike="c%r")I know this can be done with startswith and endswith, but there are cases where using the LIKE operator is better:
users = await User.filter(first_name__ilike="j_r%")This would be used to match Jeremy, Jorge, Jordan...