v0.0.1
Initial release for the public 🎉
This release has been tested on Windows and macOS for Python 3.7 to 3.11.
Breaking changes should be expected in a future release, so don't import from any sub-modules and use keyword arguments liberally. A quick-start template is below:
# pip install git+https://github.com/Bilbottom/db-query-profiler@v0.0.1
import db_query_profiler
def main() -> None:
db_conn = ... # TODO: Create your database connection
db_query_profiler.time_queries(
conn=db_conn,
repeat=5,
directory="queries" # TODO: Link your directory
)
if __name__ == "__main__":
main()