Skip to content

v0.0.1

Compare
Choose a tag to compare
@billwallis billwallis released this 08 May 07:52
· 113 commits to main since this release
644a3fe

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()

Full Changelog