1234567891011121314151617181920212223242526272829 |
- import psycopg2 as pg
- from sshtunnel import SSHTunnelForwarder
- from config import SSH_H, host, user, db_name, password
- def connect():
- try:
- print('Connecting to the PostgreSQL Database...')
-
- ssh_tunnel = SSHTunnelForwarder(
- (SSH_H, 334),
- ssh_username="evgeny_polivanov",
- ssh_private_key= 'D:/sshc',
- ssh_private_key_password= '',
- remote_bind_address=(host, 5432)
- )
- ssh_tunnel.start()
- print("Tunnel start!")
-
- conn = pg.connect(
- host=host,
- port=ssh_tunnel.local_bind_port,
- user=user,
- password= password,
- database=db_name
- )
- print("Success database connect!")
- return conn
- except:
- print('Connection Has Failed...')
|