Skip to content

Instantly share code, notes, and snippets.

View AshishThakur's full-sized avatar
🎯
Focusing

Ashish Thakur AshishThakur

🎯
Focusing
  • Singapore
  • 12:19 (UTC +08:00)
View GitHub Profile
from sqlalchemy import engine
from sqlalchemy import event
class DbStats():
def __init__(self):
self.clear()
def clear(self):
self.total_queries = 0
self.total_time = 0