mirror of
https://github.com/Xevion/postgres-test.git
synced 2025-12-06 07:15:47 -06:00
9 lines
257 B
Python
9 lines
257 B
Python
from psycopg2 import connect
|
|
from seed import main
|
|
|
|
if __name__ == '__main__':
|
|
conn = connect(dbname='railway', user='postgres', password='8h9hxh5YeBwfqTCrxQQb',
|
|
host='containers-us-west-174.railway.app', port='7238')
|
|
|
|
main(conn)
|