You can run queries from the command line.
sqlhild 'select * from `sqlhild.example.OneToTen`'You can load modules.
sqlhild -m botoquery/__init__.py "select EnvironmentName from EBEnvironment"If you don't have command line options you can just pass the whole SQL query as if the command was "echo". Watch out for shell globbing!
sqlhild select '*' from `sqlhild.example.OneToTen`You can put the module path as the parent of your table
sqlhild select '*' from `botoquery/ecs.py.Clusters`sqlhild in server mode runs a Postgres facade. You can use your favourite Postgres client to play around with sqlhild tables.
sqlhild --server 0.0.0.0:10000 --modules sqlhild.example