{"library":"sqltap","title":"sqltap","type":"library","description":"sqltap is a profiling and introspection library for applications using SQLAlchemy, providing a web-based UI to inspect SQL queries, their frequency, and execution time. The latest version is 0.3.11, released on PyPI with a stable but low-maintenance status.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install sqltap"],"cli":null},"imports":["import sqltap"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/inconshreveable/sqltap","docs":null,"changelog":null,"pypi":"https://pypi.org/project/sqltap/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"import sqltap\nfrom sqlalchemy import create_engine\n\nengine = create_engine('sqlite:///:memory:')\nprofiler = sqltap.start()\n# run your SQLAlchemy queries here\nengine.execute('SELECT 1')\nstatistics = sqltap.stop(profiler)\nsqltap.report(statistics, \"report.html\")","lang":"python","description":"Profile SQLAlchemy queries by wrapping code with sqltap.start() and sqltap.stop(), then generate an HTML report.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}