Example #1
0
def get_campaigns2015(dbname, conn):
    try:
        cur = conn.cursor()
        #print(dbname + " Campaigns 2015?")
        # Get the column headers for campaigns.
        SQL = '''select "column_name" from information_schema.columns where table_name = 'state_of_channel_campaigns2015to2016';'''
        cur.execute(SQL)
        campaign_headers = cur.fetchall()
        #print("Here?")

        SQL = 'select * from state_of_channel_campaigns2015to2016;'
        #print("Here 1?")
        cur.execute(SQL)
        campaigns = cur.fetchall()
        #logger.log(campaign);
        #print("Here 2?")
        campaigns.insert(0, campaign_headers)
        campaigns_prep = {}
        campaigns_prep.update({"Sheet 1": campaigns})
        save_data("exports/" + dbname + "_campaigns2015to2016.xls",
                  campaigns_prep)
        cur.close()
    except (psycopg2.OperationalError) as e:
        conn.rollback()
        logger.log("Error: " + str(e), 0)
    except:
        conn.rollback()
        logger.log(str(sys.exc_info()), 0)
Example #2
0
def get_DB_list(dbname, user, password, host):
    # Connect to the source DB and create a cursor.
    try:
        conn = psycopg2.connect(dbname=dbname,
                                user=user,
                                password=password,
                                host=host)
        cur = conn.cursor()
        SQL = "select datname from pg_catalog.pg_database;"
        cur.execute(SQL)
        data = cur.fetchall()
        cur.close()
        conn.close()
    except (psycopg2.OperationalError) as e:
        logger.log("Error: " + str(e), 0)
    except:
        logger.log(str(sys.exc_info()), 0)
    return data
Example #3
0
def get_activities(dbname, conn):
    try:
        cur = conn.cursor()
        # Get the column headers for activities.
        SQL = '''select "column_name" from information_schema.columns where table_name = 'state_of_channel_activity';'''
        cur.execute(SQL)
        activity_headers = cur.fetchall()

        # Get activity data.
        SQL = 'select * from state_of_channel_activity;'
        cur.execute(SQL)
        activity = cur.fetchall()
        #Prepend the headers to the top of the list
        activity.insert(0, activity_headers)
        activity_prep = {}
        activity_prep.update({"Sheet 1": activity})
        save_data("exports/" + dbname + "_activity.xls", activity_prep)
        cur.close()
    except (psycopg2.OperationalError) as e:
        conn.rollback()
        logger.log("Error: " + str(e), 0)
    except:
        conn.rollback()
        logger.log(str(sys.exc_info()), 0)
Example #4
0
def create_connection(dbname, user, password, host):
    try:
        # Connect to the source DB and create a cursor.
        logger.log("Connecting to " + dbname)
        conn = psycopg2.connect(dbname=str(dbname),
                                user=user,
                                password=password,
                                host=host)
    except (psycopg2.OperationalError) as e:
        logger.log("Error: " + str(e), 0)
    except:
        logger.log(str(sys.exc_info()), 0)
    return conn
Example #5
0

def input_stuff(message, default):
    # Used to make data input and defaults generic
    data = input(message)
    if len(data) is 0:
        data = default
        print(data)
    return data


try:
    #Request needed info from command line.
    host = input_stuff("Source database host address (default is localhost):",
                       "localhost")
    logger.log("Source host name %s" % host, 0)

    # dbname = input_stuff(
    #         "Database name (Name of database on host):"
    #         ,"pyjunk")
    #logger.log("Database name %s" % dbname, 0)

    user = input_stuff(
        "Database role (username - leave blank if same as your current user):",
        getpass.getuser())
    logger.log("Username %s" % user, 0)

    #Obviously, don't log the role password in the log
    password = getpass.getpass("Role password:")

    #Create the DB connection and cursor.