Esempio n. 1
0
def update_ids():
    red_db,cur_red = config_file.db_connection()
    abhi_db,cur_abhi = config_file.db_connection()

    cur_red.execute("select * from redbus_operator_master_id")
    red_data = cur_red.fetchall()
    sql = "UPDATE abhibus_operator_master_id SET id = %s where map_status <>1"
    cur_abhi.execute(sql,(0))
    abhi_db.commit()
    print("Check db")

    cur_abhi.execute("select * from abhibus_operator_master_id")
    abhi_data = cur_abhi.fetchall()
    count = 0
    for each_red in red_data:
        red_opr_name = each_red[0].lower()
        red_opr_id = each_red[1]
        for each_abhi in abhi_data:
            abhi_opr_name_bk = each_abhi[0]
            abhi_opr_name = each_abhi[0].lower()
            if red_opr_name == abhi_opr_name:

                sql = "UPDATE abhibus_operator_master_id SET id = %s WHERE operator = %s"
                cur_abhi.execute(sql,(red_opr_id,abhi_opr_name_bk))
                count += 1
                abhi_db.commit()
                break
    abhi_db.commit()
    print(count)
Esempio n. 2
0
def get_ids_for_operators(date_selected,route):
    db,cur_red  = config_file.db_connection()
    db1,cur_abhi = config_file.db_connection()
    cur_red.execute("select operator from redbus_operators_data_datewise")
    red_data = cur_red.fetchall()
    for each_rd_opr in red_data:
        red_opr = each_rd_opr[0]
        cur_red.execute("Select id from redbus_operator_master_id where lower(operator) = '%s'" % red_opr.lower())
        red_data1 = cur_red.fetchall()

        if len(red_data1) > 0:
            Id = red_data1[0]
            Id = Id[0]
            if Id is not None:
                cur_red.execute("update redbus_operators_data_datewise set rid = %s where operator = '%s'" %(Id,red_opr))
                db.commit()
            else:
                try:
                    cur_red.execute("update redbus_operators_data_datewise set rid = %s where operator = '%s'" %(Id,red_opr))
                    db.commit()
                except:
                    pass
            db.commit()
        else:
            cur_red.execute("insert into redbus_operator_master_id(operator) values('%s')"%(red_opr))
            db.commit()
    update_ids()
    print("Abhibus Ids updated")
    cur_abhi.execute("select operator from abhibus_operators_data_datewise")
    abhi_data = cur_abhi.fetchall()
    for each_ab_opr in abhi_data:
        abhi_opr = each_ab_opr[0]

        cur_abhi.execute("Select id from abhibus_operator_master_id where lower(operator) = '%s'" % abhi_opr.lower())
        abhi_data1 = cur_abhi.fetchall()
        if len(abhi_data1) > 0:
            Id1 = abhi_data1[0]
            Id1 = Id1[0]
            if Id1 is not None:
                cur_abhi.execute("update abhibus_operators_data_datewise set rid = %s where operator = '%s'" %(Id1,abhi_opr))
                db1.commit()
            else:
                try:
                    cur_abhi.execute("update abhibus_operators_data_datewise set rid = %s where operator = '%s'" %(Id1,abhi_opr))
                    db1.commit()
                except:
                    pass
        else:
            cur_abhi.execute("insert into abhibus_operator_master_id(operator) values('%s')"%(abhi_opr))
            db1.commit()


    db1.commit()
    db.commit()
    print("Commited")
Esempio n. 3
0
def red_update():
    red_opr = request.form['redbus']
    red_opr1  = request.form['redbus1']


    db,cur = config_file.db_connection()
    cur.execute("SELECT id from redbus_operator_master_id where operator = '%s'"%red_opr)

    for each_id in cur.fetchall():
        id = each_id[0]
    status = "Already Mapped"
    if id != 0:
        cur.execute("UPDATE redbus_operator_master_id SET id = %s WHERE operator ='%s'"%(id,red_opr1))
        db.commit()
        status = "Mapped"

    cur.execute("SELECT operator,id from redbus_operator_master_id")
    red_list = cur.fetchall()
    red_op_list = []
    for each_red in red_list:
        red_op_list.append(each_red[0])
    print(len(red_op_list))
    cur.execute("SELECT operator,id from abhibus_operator_master_id")
    abhi_list = cur.fetchall()
    abhi_op_list = []
    for each_abhi in abhi_list:
        abhi_op_list.append(each_abhi[0])
    print(len(abhi_op_list))


    red_op_list = json.dumps(red_op_list)
    abhi_op_list = json.dumps(abhi_op_list)
    return render_template("map_operators.html",status=status,red = red_op_list,abhi =abhi_op_list)
Esempio n. 4
0
def dashboard():
    try:
        db,cur = config_file.db_connection()
        today_date = datetime.datetime.today().strftime('%d-%m-%Y')
        today_date = datetime.datetime.strptime(today_date,"%d-%m-%Y")
        sql = "SELECT route,DATE,SUM(abhibus_inventory),SUM(redbus_inventory) FROM display_data GROUP BY route,DATE"
        cur.execute(sql)
        result = {}
        headers = ['route','date','abhi_inv','red_inv','diff','percent']
        for each_header in headers :
            result[each_header] = []
        for each_row in cur.fetchall():
            each_dt1 = each_row[1]
            each_dt = datetime.datetime.strptime(each_dt1,"%d-%m-%Y")
            if each_dt >= today_date:
                result['route'].append(each_row[0])
                result['date'].append(each_row[1])
                result['abhi_inv'].append(each_row[2])
                result['red_inv'].append(each_row[3])
                result['diff'].append(int(each_row[3])-int(each_row[2]))
                dif = int(each_row[3])-int(each_row[2])
                red = int(each_row[3])
                res = int((dif/red)*100)
                result['percent'].append(res)
        df = pd.DataFrame(result)
        return render_template('dashboard.html',data=df)
    except:
        return render_template("error_page.html")
Esempio n. 5
0
def compare_both_sites(date_selected,route):
    db,cur = config_file.db_connection()
    db.commit()

    sql = "SELECT operator,Count(operator),rid,site,date,route,GROUP_CONCAT(pick_time) AS service_time from redbus_operators_data_datewise  where date =%s and route =%s  group by operator"
    cur.execute(sql,(date_selected,route))
    red_full_list = []
    opr_data = cur.fetchall()
    for each_opr in opr_data:
        try:
            sql = "insert into both_operators values(%s,%s,%s,%s,%s,%s,%s)"
            cur.execute(sql,(each_opr[0],each_opr[1],each_opr[2],'Redbus',date_selected,route,each_opr[6]))
            db.commit()
        except:
            print("Except Red: ",each_opr)
            pass

    sql = "SELECT operator,Count(operator),rid,site,date,route,GROUP_CONCAT(pick_time) AS service_time from abhibus_operators_data_datewise where date =%s and route =%s group by operator"
    cur.execute(sql,(date_selected,route))
    opr_data1 = cur.fetchall()
    for each_opr1 in opr_data1:
        try:
            sql = "INSERT INTO both_operators VALUES(%s,%s,%s,%s,%s,%s,%s)"
            cur.execute(sql,(each_opr1[0],each_opr1[1],each_opr1[2],'Abhibus',date_selected,route,each_opr1[6]))
            db.commit()
        except:
            print("Except Abhi: ",each_opr)
            pass
    db.commit()
    print("Comparing Both Sides is Completed")
Esempio n. 6
0
def already_mapped_operator():
    print("hello")
    db,cur = config_file.db_connection()
    sql = "SELECT operator,id from abhibus_operator_master_id where map_status = 1"
    cur.execute(sql)
    opr = cur.fetchall()
    opr_list = []

    dict = {'abhi_opr':[],'red_opr':[],'status':[]}

    for each in opr:
        abhi_id = each[1]
        opr_abhi = each[0]
        opr_list.append(each[0])
        sql = "SELECT operator,id from redbus_operator_master_id where id = %s"
        cur.execute(sql,abhi_id)
        red_oprs = cur.fetchall()
        for each_red in red_oprs:
            opr_red = each_red[0]
            red_id = each_red[1]
            dict['abhi_opr'].append(opr_abhi)
            dict['red_opr'].append(opr_red)
            dict['status'].append("Mapped")
    print(dict)
    return None
Esempio n. 7
0
def update():
    abhi_opr = request.form['abhibus']
    red_opr  = request.form['redbus']

    print(abhi_opr,red_opr)
    db,cur = config_file.db_connection()
    sql = "SELECT id from redbus_operator_master_id where lower(operator) = %s"
    cur.execute(sql,(red_opr.lower()))
    for each_id in cur.fetchall():
        id = each_id[0]
        print("id is ",id)
    sql = "UPDATE abhibus_operator_master_id SET id = %s, map_status = %s WHERE lower(operator) = %s"
    cur.execute(sql,(id,1,abhi_opr.lower()))
    db.commit()
    sql = "SELECT operator,id from redbus_operator_master_id"
    cur.execute(sql)
    red_list = cur.fetchall()
    red_op_list = []
    for each_red in red_list:
        red_op_list.append(each_red[0])

    #print(len(red_op_list))

    sql = "SELECT operator,id from abhibus_operator_master_id"
    cur.execute(sql)
    abhi_list = cur.fetchall()
    abhi_op_list = []
    for each_abhi in abhi_list:
        abhi_op_list.append(each_abhi[0])
    #print(len(abhi_op_list))

    abhi_selected  = request
    red_op_list = json.dumps(red_op_list)
    abhi_op_list = json.dumps(abhi_op_list)


    sql = "SELECT operator,id from abhibus_operator_master_id where map_status = 1"
    cur.execute(sql)
    opr = cur.fetchall()

    dict = {'abhi_opr':[],'red_opr':[],'status':[]}

    for each in opr:
        abhi_id = each[1]
        opr_abhi = each[0]
        sql = 'SELECT operator,id from redbus_operator_master_id where id = "%s"'
        cur.execute(sql,abhi_id)
        red_oprs = cur.fetchall()
        for each_red in red_oprs:
            opr_red = each_red[0]
            red_id = each_red[1]
            dict['abhi_opr'].append(opr_abhi)
            dict['red_opr'].append(opr_red)
            dict['status'].append("Mapped")

    df = pd.DataFrame(dict)

    return render_template("update_operators.html",status="Mapped",red = red_op_list,abhi =abhi_op_list,df =df)
Esempio n. 8
0
def home():
    db,cur = config_file.db_connection()
    cur.execute("SELECT citynames FROM location")
    locs = cur.fetchall()
    loc_list = []
    for each_loc in locs:
        loc_list.append(each_loc[0])

    loc_list = json.dumps(loc_list)
    return render_template("route_search.html", locations = loc_list)
Esempio n. 9
0
def top_route_display():
    db,cur = config_file.db_connection()
    cur.execute("SELECT route FROM display_data GROUP BY route")
    all_routes = []
    tp_routes = config_file.top_routes
    today_date = datetime.datetime.today().strftime('%d-%m-%Y')
    today_date = datetime.datetime.strptime(today_date,"%d-%m-%Y")
    for each_route in tp_routes:
        cur.execute("SELECT distinct(date) from display_data where route ='%s' "%(each_route))
        route_data = {}
        days_lst = []
        lst_of_scrapped = {}
        for each_date in cur.fetchall():
            each_dt1 = each_date[0]
            each_dt = datetime.datetime.strptime(each_dt1,"%d-%m-%Y")
            if each_dt >= today_date:
                each_dt = datetime.datetime.strftime(each_dt,'%d-%m-%Y')
                cur.execute("select * FROM display_data where route = '%s' and date = '%s'" %(each_route,each_dt))
                full_date_data = {}
                headers = ['sno','opr','abhi_inv','red_inv','diff','abhi_op_time','red_op_time','status','cmnts','each_dt','each_rt']
                for each in headers :
                    full_date_data[each] =[]

                lst_of_days = {}
                for each_rt_dte in cur.fetchall():
                    full_date_data['sno'].append(each_rt_dte[0])
                    full_date_data['opr'].append(each_rt_dte[1])
                    full_date_data['abhi_inv'].append(each_rt_dte[2])
                    full_date_data['red_inv'].append(each_rt_dte[3])
                    full_date_data['diff'].append(each_rt_dte[4])
                    full_date_data['abhi_op_time'].append(each_rt_dte[5])
                    full_date_data['red_op_time'].append(each_rt_dte[6])
                    full_date_data['status'].append(each_rt_dte[7])
                    full_date_data['cmnts'].append(each_rt_dte[8])
                    full_date_data['each_dt'].append(each_dt)
                    full_date_data['each_rt'].append(each_route)
                    scraped_time = each_rt_dte[11]
                    #scraped_time = datetime.datetime.now()
                df = pd.DataFrame(full_date_data)
                lst_of_days[each_dt] = df
                print(df)
                if scraped_time != None:
                    de = str(scraped_time).split(".")[0]
                    got_date = de.split(" ")[0]

                    got_date_new = got_date.split("-")[2]+"-"+got_date.split("-")[1]+"-"+got_date.split("-")[0]
                    scraped_time = got_date_new + " " + de.split(" ")[1]

                lst_of_scrapped[each_dt] = scraped_time
                days_lst.append(lst_of_days)
        route_data['days'] = days_lst
        route_data['scrapped'] = lst_of_scrapped
        route_data['name'] = each_route
        all_routes.append(route_data)
    return render_template('top_routes.html',route_total_df=all_routes)
Esempio n. 10
0
def all_routes():
    db,cur = config_file.db_connection()
    sql = "SELECT distinct(route) FROM display_data"
    cur.execute(sql)
    data = cur.fetchall()
    unique_routes =[]
    for each_rt in data:
        unique_routes.append(each_rt[0])
    data = pd.DataFrame(unique_routes)
    if request.method == 'POST':
        rt_selected = request.form.get("route")#['route_sel']
        sql = "SELECT distinct(date) from display_data where route =%s"
        cur.execute(sql,rt_selected)
        route_data = {}
        days_lst = []
        today = datetime.datetime.now()
        for each_date in cur.fetchall():
            each_dt = each_date[0]
            print(each_dt,type(each_dt))
            each_dt = datetime.datetime.strftime(each_dt
            ,"%d-%m-%Y")
            print(each_dt)#,type(each_dt))

            cur.execute("select * FROM display_data where route = '%s' and date = '%s'" %(rt_selected,each_dt))
            full_date_data = {}
            headers = ['sno','opr','abhi_inv','red_inv','diff','abhi_op_time','red_op_time','status','cmnts','each_dt','each_rt']
            for each in headers :
                full_date_data[each] =[]

            lst_of_days = {}
            for each_rt_dte in cur.fetchall():
                full_date_data['sno'].append(each_rt_dte[0])
                full_date_data['opr'].append(each_rt_dte[1])
                full_date_data['abhi_inv'].append(each_rt_dte[2])
                full_date_data['red_inv'].append(each_rt_dte[3])
                full_date_data['diff'].append(each_rt_dte[4])
                full_date_data['abhi_op_time'].append(each_rt_dte[5])
                full_date_data['red_op_time'].append(each_rt_dte[6])
                full_date_data['status'].append(each_rt_dte[7])
                full_date_data['cmnts'].append(each_rt_dte[8])
                full_date_data['each_dt'].append(each_dt)
                full_date_data['each_rt'].append(rt_selected)

            df = pd.DataFrame(full_date_data)
            lst_of_days[each_dt] = df
            days_lst.append(lst_of_days)
        route_data['days'] = days_lst
        route_data['name'] = rt_selected

        return render_template("all_routes.html", routes_data= route_data,routes=unique_routes)
    return render_template("all_routes.html",routes=unique_routes,route_data={},data=data)
Esempio n. 11
0
def update_opr1():
    db,cur = config_file.db_connection()
    cur.execute("SELECT operator,id from redbus_operator_master_id")
    red_list = cur.fetchall()
    red_op_list = []
    for each_red in red_list:
        red_op_list.append(each_red[0])

    #print(len(red_op_list))

    cur.execute("SELECT operator,id from abhibus_operator_master_id")
    abhi_list = cur.fetchall()
    abhi_op_list = []
    for each_abhi in abhi_list:
        abhi_op_list.append(each_abhi[0])
    #print(len(abhi_op_list))


    red_op_list = json.dumps(red_op_list)
    abhi_op_list = json.dumps(abhi_op_list)

    sql = "SELECT operator,id from abhibus_operator_master_id where map_status = 1"
    cur.execute(sql)
    opr = cur.fetchall()

    dict = {'abhi_opr':[],'red_opr':[],'status':[]}

    for each in opr:
        abhi_id = each[1]
        opr_abhi = each[0]
        sql = 'SELECT operator,id from redbus_operator_master_id where id = "%s"'
        cur.execute(sql,abhi_id)
        red_oprs = cur.fetchall()
        for each_red in red_oprs:
            opr_red = each_red[0]
            red_id = each_red[1]
            dict['abhi_opr'].append(opr_abhi)
            dict['red_opr'].append(opr_red)
            dict['status'].append("Mapped")

    df = pd.DataFrame(dict)

    return render_template("update_operators.html", red = red_op_list, abhi = abhi_op_list, df = df)
Esempio n. 12
0
def map_operator():
    db,cur = config_file.db_connection()
    cur.execute("SELECT operator,id from redbus_operator_master_id")
    red_list = cur.fetchall()
    red_op_list = []
    for each_red in red_list:
        red_op_list.append(each_red[0])

    #print(len(red_op_list))

    cur.execute("SELECT operator,id from abhibus_operator_master_id")
    abhi_list = cur.fetchall()
    abhi_op_list = []
    for each_abhi in abhi_list:
        abhi_op_list.append(each_abhi[0])
    #print(len(abhi_op_list))

    red_op_list = json.dumps(red_op_list)
    abhi_op_list = json.dumps(abhi_op_list)

    return render_template("map_operators.html", red = red_op_list, abhi = abhi_op_list)
Esempio n. 13
0
def get_data(date_selected,route):
    db,cur = config_file.db_connection()
    sql = "SELECT * FROM both_operators WHERE id<>0 and date = %s AND route = %s" # and
    cur.execute(sql,(date_selected,route))
    op_data = cur.fetchall()
    operator, a_services,r_services,schedule_period_abhi,schedule_period_red,status,description,serial_no,scraped_time = [],[],[],[],[],[],[],[],[]
    date_db,route_db = [],[]
    disp ={}
    abhi_service_timings,red_service_timings = [],[]
    disp_header=['operator','opid','abhibus_services','redbus_services','missing_services']
    missing_services = []
    dummy,ids = [],[]
    print(op_data)
    print(len(op_data))
    for each in op_data:
        id = each[2]
        print(each[0],id)
        if id not in dummy:
            ids.append(id)
            operator.append(each[0])
            sql = "SELECT * FROM both_operators WHERE site = %s AND id = %s AND date = %s AND route = %s"
            cur.execute(sql,('Abhibus',id,date_selected,route))
            samp_ab_data = cur.fetchall()
            if len(samp_ab_data) > 0:
                for e in samp_ab_data:
                    timings = e[-1]
                    timings = timings.split(",")
                    running_time = timings[0] + " - " + timings[-1]
                    schedule_period_abhi.append(running_time)
                    a_services.append(e[1])
                    abhi_service_timings.append(timings)
            else:
                a_services.append(0)
                schedule_period_abhi.append("NA")
                abhi_service_timings.append("NA")
            sql = "SELECT * FROM both_operators WHERE site = %s ANd id = %s AND date = %s AND route = %s"
            cur.execute(sql,('Redbus',id,date_selected,route))
            samp_red_data = cur.fetchall()
            if len(samp_red_data) > 0:
                for e1 in samp_red_data:
                    timings1 = e1[-1]
                    timings1 = timings1.split(",")
                    running_time1 = timings1[0] + " - " + timings1[-1]
                    schedule_period_red.append(running_time1)
                    r_services.append(e1[1])
                    red_service_timings.append(timings1)
            else:
                r_services.append(0)
                schedule_period_red.append("NA")
                red_service_timings.append("NA")
            dummy.append(id)

    sql = "Select * FROM both_operators where id = %s and site=%s and date = %s and route = %s"
    cur.execute(sql,(0,'Abhibus',date_selected,route))

    abhi_zeros = cur.fetchall()
    for each_zero in abhi_zeros:
        ids.append(each_zero[2])
        operator.append(each_zero[0])
        a_services.append(each_zero[1])
        r_services.append(0)
        timings2 = each_zero[-1]
        print(timings2)
        if "NA" not in timings2:
            timings2 = timings2.split(",")
            running_time2 = timings2[0] + " - " + timings2[-1]
            abhi_service_timings.append(timings2)
        else:
            abhi_service_timings.append("NA")
        red_service_timings.append("NA")
        schedule_period_abhi.append(running_time2)
        schedule_period_red.append("NA")

    i = 1
    scraped_datetime = datetime.datetime.now()
    for a,b in zip(a_services,r_services):
        missing_serv = a-b
        missing_services.append(missing_serv)
        serial_no.append(i)
        scraped_time.append(scraped_datetime)
        i += 1
        date_db.append(date_selected)
        route_db.append(route)

    for ab,rd in zip(abhi_service_timings,red_service_timings):
        print("Abhibus ",ab)
        print("Redbus ",rd)
        if "NA" in ab:
            status_code = "Missing"
            content = "No services in Abhibus"
        elif "NA" not in rd:
            missing_pickTime = list(set(rd)-set(ab))
            extra_picktime = list(set(ab)-set(rd))
            content = ""
            sts = 0
            if len(missing_pickTime) >0:
                sts = 1
                content = content + ",".join(missing_pickTime)
                content = content + " are missing services in Abhibus."
            if len(extra_picktime) > 0:
                sts = 2
                content = content + ",".join(extra_picktime)
                content = content + " are extra services in Abhibus."
            if sts == 0:
                status_code = "Exact"
            else:
                status_code = "Excess"
        else:
            status_code = "Excess"
            content = "Services are only avialable in Abhibus"
        status.append(status_code)
        description.append(content)

    print("Operator",len(operator))
    opr = pd.DataFrame(operator)
    opr.columns = ["Operator"]

    print("a_services",len(a_services))
    abh_serv = pd.DataFrame(a_services)
    abh_serv.columns = ["Abhibus Inventory"]

    print("r_services",len(r_services))
    red_serv = pd.DataFrame(r_services)
    red_serv.columns = ["Redbus Inventory"]

    print("missing_services",len(missing_services))
    missing_serv = pd.DataFrame(missing_services)
    missing_serv.columns = ["Difference"]

    print("schedule_period_abhi",len(schedule_period_abhi))
    schedule_period_abhi_df = pd.DataFrame(schedule_period_abhi)
    schedule_period_abhi_df.columns = ["Abhibus Operation Time"]

    print("schedule_period_red",len(schedule_period_red))
    schedule_period_red_df = pd.DataFrame(schedule_period_red)
    schedule_period_red_df.columns = ["Redbus Operation Time"]

    print("status",len(status))
    status_df = pd.DataFrame(status)
    status_df.columns = ["Status"]

    print("serial_no",len(serial_no))
    serial_num_df = pd.DataFrame(serial_no)
    serial_num_df.columns = ['S.No']

    print("description",len(description))
    description_df = pd.DataFrame(description)
    description_df.columns = ['Comments']

    print("date",len(date_db))
    date_db_df = pd.DataFrame(date_db)
    date_db_df.columns = ['date']

    print("route",len(route_db))
    route_db_df = pd.DataFrame(route_db)
    route_db_df.columns = ['route']

    print("scrape_time",len(scraped_time))
    scraped_time_df = pd.DataFrame(scraped_time)
    scraped_time_df.columns = ['scrape_time']


#    op_ids = pd.DataFrame(ids)

    df = pd.concat([serial_num_df,opr,abh_serv,red_serv,missing_serv,schedule_period_abhi_df,schedule_period_red_df,status_df,description_df,date_db_df,route_db_df,scraped_time_df],axis = 1)

    for indx,row in df.iterrows():
        sno = int(df['S.No'][indx])
        opr = df['Operator'][indx]
        abhi_inv = int(df['Abhibus Inventory'][indx])
        red_inv = int(df['Redbus Inventory'][indx])
        diff = int(df['Difference'][indx])
        abhi_opr_time = df['Abhibus Operation Time'][indx]
        red_opr_time = df['Redbus Operation Time'][indx]
        status = df['Status'][indx]
        cmts = df['Comments'][indx]
        dte = df['date'][indx]
        rte = df['route'][indx]
        scr_time = str(df['scrape_time'][indx])
        #print(scr_time,type(scr_time))
        #print(sno,opr,abhi_inv,red_inv,diff,abhi_opr_time,red_opr_time,status,cmts,dte,rte,scr_time)
        sql = "INSERT INTO display_data(sno,operator,abhibus_inventory,redbus_inventory,difference,abhibus_operation_time,redbus_operation_time,status,comment,date,route,scraped_time) values(%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)"
        cur.execute(sql,(sno,opr,abhi_inv,red_inv,diff,abhi_opr_time,red_opr_time,status,cmts,dte,rte,scr_time))

    opr_count = int(df.shape[0])

    l1 = list(df['Abhibus Inventory'])
    l2 = list(df['Redbus Inventory'])
    bus_sum = 0
    for n,m in zip(l1,l2):
        if n == m:
            bus_sum += n
        else:
            if n>m :
                bus_sum += n
            else :
                bus_sum += m
    bus_count = int(bus_sum)

    sql = "INSERT INTO bus_opr_count values(%s,%s,%s,%s)"
    cur.execute(sql,(date_selected,route,bus_count,opr_count))
    return df
Esempio n. 14
0
def top_routes():
    print(datetime.datetime.now())
    db,cur = config_file.db_connection()
    #src_dest = {'Hyderabad - Adilabad':['Hyderabad','Adilabad'],'Adilabad - Hyderabad':['Adilabad','Hyderabad']}
    src_dest = {'Hyderabad - Bangalore':['Hyderabad','Bangalore'],'Bangalore - Hyderabad':['Bangalore','Hyderabad'],'Pune - Shirdi':['Pune','Shirdi'],'Chennai - Coimbatore':['Chennai','Coimbatore'],
    'Hyderabad - Visakhapatnam':['Hyderabad','Visakhapatnam'],'Bangalore - Vijayawada':['Bangalore','Vijayawada'],'Hyderabad - Chennai':['Hyderabad','Chennai'],'Delhi - Manali':['Delhi','Manali'],'Mumbai - Bangalore':['Mumbai','Bangalore'],
    'Chennai - Bangalore':['Chennai','Bangalore'],'Indore - Bhopal':['Indore','Bhopal'],'Bangalore-Chennai':['Bangalore','Chennai'],'Pune - Mumbai':['Pune','Mumbai']
    ,'Ahmedabad - Mumbai':['Ahmedabad','Mumbai']}

    route_total_df = {}
    for route1,val in src_dest.items():
        source = val[0]
        dest = val[1]
        print(route1,source,dest)
        nt = datetime.datetime.now()
        list_of_days = []
        for each_day in range(2):
            today_plus_1 = nt+datetime.timedelta(each_day)
            today_plus_1 = datetime.datetime.strftime(today_plus_1,"%d-%m-%Y")
            list_of_days.append(today_plus_1)
        print(list_of_days)
        total_bus_lst,total_oprs_lst = [],[]
        total_df,lst_of_dates = [],[]
        route = source + "-" + dest
        for each_date in list_of_days:
            print(each_date)
            #today_plus_1 = day1+datetime.timedelta(each_date)
            #date_selected = today_plus_1.strftime('%d-%m-%Y')
            date_selected = each_date
            sql = "DELETE FROM abhibus_operators_data_datewise WHERE date = %s AND route = %s"
            cur.execute(sql,(date_selected,route))
            db.commit()
            sql1 = "DELETE FROM redbus_operators_data_datewise WHERE date = %s AND route = %s"
            cur.execute(sql1,(date_selected,route))
            db.commit()
            sql2 = "DELETE FROM both_operators WHERE date = %s AND route = %s"
            cur.execute(sql2,(date_selected,route))
            db.commit()
            sql3 = "DELETE FROM display_data WHERE date = %s AND route = %s"
            cur.execute(sql3,(date_selected,route))
            db.commit()
            sql3 = "DELETE FROM display_data WHERE date = %s AND route = %s"
            cur.execute(sql3,(date_selected,route))
            db.commit()
            compare.routes(source,dest,date_selected)
            #compare.get_ids_for_operators(date_selected,route)
            compare.compare_both_sites(date_selected,route)
            df = compare.get_data(date_selected,route)
            opr_count = df.shape[0]
            ab_bus_count = df['Abhibus Inventory'].sum()
            rd_bus_count = df['Redbus Inventory'].sum()
            if ab_bus_count >= rd_bus_count:
                bus_count = rd_bus_count
            else:
                bus_count = ab_bus_count
            total_oprs_lst.append(opr_count)
            total_df.append(df)
            lst_of_dates.append(date_selected)
            l1 = list(df['Abhibus Inventory'])
            l2 = list(df['Redbus Inventory'])
            bus_sum = 0
            for n,m in zip(l1,l2):
                if n == m:
                    bus_sum += n
                else:
                    if n>m :
                        bus_sum += n
                    else :
                        bus_sum += m
            total_bus_lst.append(bus_sum)
            print(total_df)
            print(datetime.datetime.now())
        src = source
        dest=dest
        route_total_df[route] = []
        route_total_df[route].extend([src,dest,lst_of_dates,total_df,total_bus_lst,total_oprs_lst])
    # return render_template('route_search_multi.html', src = source, dest=dest,total_df = total_df,lst_of_dates = lst_of_dates,
    # total_bus_lst= total_bus_lst ,total_oprs_lst= total_oprs_lst)
    print(route_total_df)
    print(type(route_total_df))
    return render_template('route_search_multi_details.html',route_total_df=route_total_df)
Esempio n. 15
0
def compare_operators_src_dest():
    db,cur = config_file.db_connection()
    source = request.form['source']
    dest  = request.form['dest']
    route = source + "-" + dest
    date_selected  = request.form['datepicker1']
    date_selected_2  = request.form['datepicker2']
    if date_selected_2 != "":
        date_selected_split2 = date_selected_2.split('/')
        date_selected_2 = date_selected_split2[1]+'-'+date_selected_split2[0]+'-'+date_selected_split2[2]
        date_selected_split = date_selected.split('/')
        date_selected = date_selected_split[1]+'-'+date_selected_split[0]+'-'+date_selected_split[2]
        day2 = datetime.datetime.strptime(date_selected_2,"%d-%m-%Y")
        day1 = datetime.datetime.strptime(date_selected,"%d-%m-%Y")
        diff_in_days = (day2-day1).days
        total_bus_lst,total_oprs_lst = [],[]
        total_df,lst_of_dates = [],[]
        for each_date in range(diff_in_days+1):
            today_plus_1 = day1+datetime.timedelta(each_date)
            date_selected = today_plus_1.strftime('%d-%m-%Y')
            sql = "DELETE FROM abhibus_operators_data_datewise WHERE date = %s AND route = %s"
            cur.execute(sql,(date_selected,route))
            db.commit()
            sql1 = "DELETE FROM redbus_operators_data_datewise WHERE date = %s AND route = %s"
            cur.execute(sql1,(date_selected,route))
            db.commit()
            sql2 = "DELETE FROM both_operators WHERE date = %s AND route = %s"
            cur.execute(sql2,(date_selected,route))
            db.commit()
            sql3 = "DELETE FROM display_data WHERE date = %s AND route = %s"
            cur.execute(sql3,(date_selected,route))
            db.commit()
            print(date_selected)
            compare.routes(source,dest,date_selected)
            print("Route Over")
            #compare.get_ids_for_operators(date_selected,route)
            compare.compare_both_sites(date_selected,route)
            df = compare.get_data(date_selected,route)
            opr_count = df.shape[0]
            ab_bus_count = df['Abhibus Inventory'].sum()
            rd_bus_count = df['Redbus Inventory'].sum()
            if ab_bus_count >= rd_bus_count:
                bus_count = rd_bus_count
            else:
                bus_count = ab_bus_count
            total_oprs_lst.append(opr_count)
            total_df.append(df)
            lst_of_dates.append(date_selected)
            l1 = list(df['Abhibus Inventory'])
            l2 = list(df['Redbus Inventory'])
            bus_sum = 0
            for n,m in zip(l1,l2):
                if n == m:
                    bus_sum += n
                else:
                    if n>m :
                        bus_sum += n
                    else :
                        bus_sum += m
            total_bus_lst.append(bus_sum)
            print(total_df)
            print(datetime.datetime.now())
        print(total_bus_lst)
        print(total_oprs_lst)
        return render_template('route_search_multi_details.html', src = source, dest=dest,total_df = total_df,lst_of_dates = lst_of_dates,
        total_bus_lst= total_bus_lst ,total_oprs_lst= total_oprs_lst)
    else:
        date_selected_split = date_selected.split('/')
        date_selected = date_selected_split[1]+'-'+date_selected_split[0]+'-'+date_selected_split[2]
        date_selected = datetime.datetime.strptime(date_selected,"%d-%m-%Y")
        date_selected = date_selected.strftime('%d-%m-%Y')
        sql = "DELETE FROM abhibus_operators_data_datewise WHERE date = %s AND route = %s"
        cur.execute(sql,(date_selected,route))
        db.commit()
        sql1 = "DELETE FROM redbus_operators_data_datewise WHERE date = %s AND route = %s"
        cur.execute(sql1,(date_selected,route))
        db.commit()
        sql2 = "DELETE FROM both_operators WHERE date = %s AND route = %s"
        cur.execute(sql2,(date_selected,route))
        db.commit()
        sql3 = "DELETE FROM display_data WHERE date = %s AND route = %s"
        cur.execute(sql3,(date_selected,route))
        db.commit()
        print(date_selected)
        compare.routes(source,dest,date_selected)
        print("Route Over")
        #compare.get_ids_for_operators(date_selected,route)
        compare.compare_both_sites(date_selected,route)
        df = compare.get_data(date_selected,route)
        opr_count = df.shape[0]
        ab_bus_count = df['Abhibus Inventory'].sum()
        rd_bus_count = df['Redbus Inventory'].sum()
        if ab_bus_count >= rd_bus_count:
            bus_count = rd_bus_count
        else:
            bus_count = ab_bus_count

        l1 = list(df['Abhibus Inventory'])
        l2 = list(df['Redbus Inventory'])
        bus_sum = 0
        for n,m in zip(l1,l2):
            if n == m:
                bus_sum += n
            else:
                if n>m :
                    bus_sum += n
                else :
                    bus_sum += m
        total_bus_lst = bus_sum

        print(df)
        print(datetime.datetime.now())
        return render_template('route_search_details.html',data = df, date=date_selected,src = source, dest=dest,
        total_bus_lst= bus_sum ,total_oprs_lst= opr_count)
Esempio n. 16
0
def testing():
    db,cur = config_file.db_connection()
    sql = "INSERT INTO test VALUES(10)"
    #print("hi")
    cur.execute(sql)
Esempio n. 17
0
def routes(src,dest,date_selected):
    db,cur = config_file.db_connection()
    print("Route Started")
    pause_time = 0.5
    month = {"01":"Jan","02":"Feb","03":"Mar","04":"Apr","05":"May","06":"Jun","07":"Jul","08":"Aug","09":"Sep","10":"Oct","11":"Nov","12":"Dec"}
    headers = ['route','operator','pick_time','drop_time','site','date','id']
    date_selected = date_selected.replace("/","-")
    route = src + "-" +dest
    options = Options()
    ua = UserAgent()
    userAgent = ua.random
    print(userAgent)
    #options.add_argument(f'user-agent={userAgent}')
    #options.add_argument(f'--proxy-server={None}')
    options.add_argument('--headless')
    options.add_argument('--no-sandbox')
    options.add_argument('--disable-dev-shm-usage')
    driver = webdriver.Chrome(ChromeDriverManager().install(),chrome_options=options)
#    driver = webdriver.Chrome(ChromeDriverManager().install(),chrome_options=options)
    print("test1")

    driver.get('https://www.redbus.in/')
    print("test2")
    #print(driver.current_url)
    #driver.find_element_by_xpath('/html/body/div/div/div[1]').click()
    time.sleep(5)
    red_source = driver.find_element_by_xpath('//*[@id="src"]')
    red_source.send_keys(src)

    time.sleep(1)
    red_source.send_keys(Keys.TAB)
    red_desti = driver.find_element_by_xpath('//*[@id="dest"]')
    red_desti.send_keys(dest)
    time.sleep(1)
    red_desti.send_keys(Keys.TAB)
    print(driver.current_url)
    #driver.find_element_by_xpath('//*[@id="rb-calendar_onward_cal"]/table/tbody/tr[1]/td[3]').click()
    driver.find_element_by_xpath('//*[@id="rb-calendar_onward_cal"]/table/tbody/tr[6]/td[1]').click()

    driver.find_element_by_xpath('//*[@id="search_btn"]').click()
    current_link_1 = driver.current_url
    time.sleep(1)
    current_link_date = re.search('&onward=(.*)&opId',current_link_1).group(1)
    cur_link_month = current_link_date.split("-")[1]
    cur_link_date = current_link_date.split("-")[0]
    cur_link_year = current_link_date.split("-")[2]
    date_selected_month = date_selected.split("-")[1]
    user_month = month[date_selected_month]
    user_date = date_selected.split("-")[0]
    user_year = date_selected.split("-")[2]
    user_selected_date = user_date + "-"+user_month + "-" + user_year
    new_current_link = current_link_1.replace(current_link_date,user_selected_date)
    print(new_current_link)
    driver.get(new_current_link)
    time.sleep(3)
    last_height = driver.execute_script("return document.body.scrollHeight")
    while True:
        driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
        time.sleep(pause_time)
        new_height = driver.execute_script("return document.body.scrollHeight")
        if new_height == last_height:
            break
        last_height = new_height

    red_operator = driver.find_elements_by_xpath('//div[@class="travels lh-24 f-bold d-color"]')
    red_origin = driver.find_elements_by_xpath('//div[@class="dp-time f-19 d-color f-bold"]')
    red_destination = driver.find_elements_by_xpath('//div[@class="bp-time f-19 d-color disp-Inline"]')
    #red_fare = driver.find_elements_by_class('f-19 f-bold')

    redbus_oper = []

    red_site_details = {}

    for each in headers:
        red_site_details[each]=[]

#sql = "UPDATE abhibus_operator_master_id SET id = %s WHERE operator = %s"
#cur_abhi.execute(sql,(red_opr_id,abhi_opr_name_bk))

    def get_id(opr,site):
        if site == "red":
            sql = "Select id FROM redbus_operator_master_id WHERE LOWER(operator) = %s"
            cur.execute(sql,opr.lower())
#            cur.execute("Select id FROM redbus_operator_master_id WHERE LOWER(operator) = '%s'" %opr.lower())
            data = cur.fetchall()
            found = False
            if len(data) > 0:
                # Select stmt to get ids in ascedning order and take the last value. Add one to that value.Assign to a variable.
                # Id = variable
                #cur.execute("Select * From redbus_operator_master_id ORDER BY id where LAST(id) As LAST_value From redbus_operator_master_id")
                Id = data[0][0]

            else:
                sql = "INSERT INTO redbus_operator_master_id(operator) VALUES(%s)"
                cur.execute(sql,(opr))
                db.commit()
                sql = "Select id FROM redbus_operator_master_id WHERE LOWER(operator) = %s"
                cur.execute(sql,(opr.lower()))
#                cur.execute("Select id FROM redbus_operator_master_id WHERE LOWER(operator) = '%s'" % (opr.lower()))
                data2 = cur.fetchall()
                if len(data2) > 0:
                    Id = data2[0][0]
            return Id
        elif site == "abhi":
            sql = "Select id FROM abhibus_operator_master_id WHERE LOWER(operator) =%s"
            cur.execute(sql,(opr.lower()))

            data = cur.fetchall()
            found = False
            Id = 0
            print(data)
            if len(data) > 0:
                Id = int(data[0][0])
                #print(Id)
            else:
                sql = "INSERT INTO abhibus_operator_master_id(operator,id) VALUES(%s,%s)"
                cur.execute(sql,(opr,0))

                db.commit()
            return Id

    for op1,pi1,drp1 in zip(red_operator,red_origin,red_destination):
        opr = op1.text.strip()

        id = get_id(opr,"red")

        red_site_details['operator'].append(opr)
        red_site_details['drop_time'].append(drp1.text.strip())
        red_site_details['pick_time'].append(pi1.text.strip())
        red_site_details['date'].append(date_selected)
        red_site_details['site'].append("Redbus")
        red_site_details['route'].append(route)
        red_site_details['id'].append(id)

    update_ids()
    print("update_ids is over")
    url = 'https://www.abhibus.com/'
    driver.get(url)
    driver.maximize_window()
    time.sleep(3)
    print(driver.current_url)
    print("abhi opened")
    driver.find_element_by_xpath('//*[@id="myModal"]/div/div/div[1]/button/span').click()
    source = driver.find_element_by_xpath('//input[@id = "source"]')
    source.send_keys(src)
    time.sleep(5)
    source.send_keys(Keys.TAB)
    destination = driver.find_element_by_xpath('//input[@id = "destination"]')
    destination.send_keys(dest)
    sleep(2)
    destination.send_keys(Keys.TAB)
    driver.find_element_by_xpath('//*[@id="datepicker1"]').click()
    driver.find_element_by_xpath('//*[@id="ui-datepicker-div"]/div[2]/table/tbody/tr[3]/td[4]/a').click()
    sleep(2)
    driver.find_element_by_xpath('//*[@id="frmFinal"]/div/div[6]/a').click()
    sleep(4)
    current_link = driver.current_url
    print(current_link)
    dt = current_link.split('/')[-2]
    new_current_url = current_link.replace(dt,date_selected)
    driver.get(new_current_url)
    print(new_current_url)
    sleep(4)
    last_height = driver.execute_script("return document.body.scrollHeight")
    while True:
        driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
        time.sleep(pause_time)
        new_height = driver.execute_script("return document.body.scrollHeight")
        if new_height == last_height:
            break
        last_height = new_height

    operator = driver.find_elements_by_xpath('//h2[@class="TravelAgntNm ng-binding"]')
    price = driver.find_elements_by_xpath('//strong[@class="TickRate ng-binding"]')
    drop_time = driver.find_elements_by_xpath('//span[@class="ArvTm tooltipsteredDropping ng-binding tooltipstered"]')
    pick_time = driver.find_elements_by_xpath('//span[@class="StrtTm tooltipsteredBoarding ng-binding tooltipstered"]')

    abhi_site_details = {}
    for each in headers:
        abhi_site_details[each] = []
    operators_list = []

    for op,pr,pi,drp in zip(operator,price,pick_time,drop_time):
        opr = op.text
        if opr != "":
            id = get_id(opr,'abhi')
            abhi_site_details['operator'].append(opr)
            abhi_site_details['drop_time'].append(drp.text.strip())
            abhi_site_details['pick_time'].append(pi.text.strip())
            abhi_site_details['date'].append(date_selected)
            abhi_site_details['site'].append("Abhibus")
            abhi_site_details['route'].append(route)
            abhi_site_details['id'].append(id)

    df_abhi_oprs = pd.DataFrame(abhi_site_details)

    df_red_oprs = pd.DataFrame(red_site_details)

    for index,row in df_red_oprs['operator'].iteritems():
        sql = "INSERT INTO redbus_operators_data_datewise(operator,pick_time,date,site,rid,route) VALUES (%s,%s,%s,%s,%s,%s)"
        cur.execute(sql,(df_red_oprs['operator'][index],df_red_oprs['pick_time'][index],
        df_red_oprs['date'][index],df_red_oprs['site'][index],int(df_red_oprs['id'][index]),route))


    for index,row in df_abhi_oprs['operator'].iteritems():
        id = df_abhi_oprs['id'][index].item()

        sql = "INSERT INTO abhibus_operators_data_datewise(operator,pick_time,date,site,rid,route) VALUES(%s,%s,%s,%s,%s,%s)"
        cur.execute(sql,(df_abhi_oprs['operator'][index],df_abhi_oprs['pick_time'][index],df_abhi_oprs['date'][index],df_abhi_oprs['site'][index],
        id,route))

    db.commit()
    print("Scraping Finished and Data Pushed to DB")