Hello SQLalchemy users, I just wanted to share my latest project for profiling sqlalchemy applications. It's an extremely simple library that hooks in via sqlalchemy's new eventing system to give you really easy introspection, profiling and reporting.
Docs: https://sqltap.you-compete.com/ Code: https://github.com/aes-/sqltap PyPI: http://pypi.python.org/pypi/sqltap Install with: > pip install sqltap Simplest possible example use: > sqltap.start() > session.Query(Knights).filter_by(who_say = 'Ni').all() > statistics = sqltap.collect() > sqltap.report(statistics, "report.html") Would love to hear any feedback or criticisms you have. Special thanks to zzzeek for helping me understand some relevant parts of the new event API. -aes -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.
