You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parsing DBML syntax takes about 7-8 seconds in my computer using your provided test_schema.dbml or any simple DBML. This parsing time is slow, thus please try reduce it.
import time
from pathlib import Path
from pydbml import PyDBML
start = time.time()
parsed = PyDBML(Path("test_schema.dbml"))
end = time.time()
print("DBML parse time:", end - start)