def get_pilots(page): total_pilots, busy_pilots = get_numeric_values_regex(PILOTS_REGEX, page) return total_pilots, busy_pilots
def get_flight_attendants(page): total_flight_attendants, busy_flight_attendants = get_numeric_values_regex(FLIGHT_ATTENDANTS_REGEX, page) return total_flight_attendants, busy_flight_attendants