Ejemplo n.º 1
0
def injured_around_schools(start_date, end_date, distance, batch_size):
    from anyway.parsers.injured_around_schools import parse

    return parse(start_date=start_date,
                 end_date=end_date,
                 distance=distance,
                 batch_size=batch_size)
Ejemplo n.º 2
0
def schools_with_description(schools_description_filepath,
                             schools_coordinates_filepath,
                             batch_size):
    from anyway.parsers.schools_with_description import parse
    return parse(schools_description_filepath=schools_description_filepath,
                 schools_coordinates_filepath=schools_coordinates_filepath,
                 batch_size=batch_size)
Ejemplo n.º 3
0
def embedded_reports(filename):
    from anyway.parsers.embedded_reports import parse

    return parse(filename)
Ejemplo n.º 4
0
def schools(filepath, batch_size):
    from anyway.parsers.schools import parse

    return parse(filepath=filepath, batch_size=batch_size)
Ejemplo n.º 5
0
def road_segments(filename):
    from anyway.parsers.road_segments import parse

    return parse(filename)
Ejemplo n.º 6
0
def rsa(filename):
    from anyway.parsers.rsa import parse

    return parse(filename)
Ejemplo n.º 7
0
def update_casualties_costs(filename):
    from anyway.parsers.casualties_costs import parse

    return parse(filename)
Ejemplo n.º 8
0
def rsa(filename):
    from anyway.parsers.rsa import parse

    return parse(filename)
Ejemplo n.º 9
0
def schools(filepath, batch_size):
    from anyway.parsers.schools import parse
    return parse(filepath=filepath,
                 batch_size=batch_size)