This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 -u | |
import sys | |
import getpass | |
import psycopg2 | |
import logging | |
from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT | |
from psycopg2.extras import CompositeCaster | |
from psycopg2.extras import LoggingConnection | |
from psycopg2.extras import LoggingCursor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 -u | |
import sys | |
import getpass | |
import psycopg2 | |
import logging | |
from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT | |
from psycopg2.extras import CompositeCaster | |
from psycopg2.extras import LoggingConnection | |
from psycopg2.extras import LoggingCursor |