Skip to content

v0.1.0

Compare
Choose a tag to compare
@JustinFrizzell JustinFrizzell released this 15 Nov 22:53
· 109 commits to main since this release
8d9a78b

This release includes new SQL functions:

  • sql_to_df(query_path: str) returns a pandas DataFrame for a given path to a SQL file
  • sql_to_df_str(query: str) returns a pandas DataFrame for a given SQL string
  • execute_sql(sql_path: str) executes a SQL command from a given path to a SQL file, returns None
  • execute_sql_str(command: str) executes a SQL command from a given SQL string, returns None