diff --git a/src/fk_graph/cli.py b/src/fk_graph/cli.py index 4b0b037..365d5f7 100644 --- a/src/fk_graph/cli.py +++ b/src/fk_graph/cli.py @@ -1,2 +1,10 @@ +from sqlalchemy import create_engine + +from fk_graph import setup_data, get_graph +from fk_graph.plotly_functions import run_app + def main(): - print("Here are some words") + engine = create_engine("sqlite+pysqlite:///:memory:") + setup_data(engine) + graph = get_graph(engine, "table_a", 1) + run_app(graph)