POSTGRES
Quick start
You can use ModsysML to sync data with your environment in seconds.
# import the package
from modsys.client import Modsys
# sync data from your database instance
# (we support supabase at the current moment or postgresql via uri format)
Modsys.connect("postgres://username:password@hostname:port/database_name")
# If you want to test out operation on your external connection
Modsys.fetch_tables()
Modsys.query("desc", "table", "column")