예제 #1
0
파일: main.py 프로젝트: AlonJoshua/anyway
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)
예제 #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)
예제 #3
0
파일: main.py 프로젝트: AlonJoshua/anyway
def embedded_reports(filename):
    from anyway.parsers.embedded_reports import parse

    return parse(filename)
예제 #4
0
파일: main.py 프로젝트: AlonJoshua/anyway
def schools(filepath, batch_size):
    from anyway.parsers.schools import parse

    return parse(filepath=filepath, batch_size=batch_size)
예제 #5
0
파일: main.py 프로젝트: AlonJoshua/anyway
def road_segments(filename):
    from anyway.parsers.road_segments import parse

    return parse(filename)
예제 #6
0
파일: main.py 프로젝트: AlonJoshua/anyway
def rsa(filename):
    from anyway.parsers.rsa import parse

    return parse(filename)
예제 #7
0
def update_casualties_costs(filename):
    from anyway.parsers.casualties_costs import parse

    return parse(filename)
예제 #8
0
파일: main.py 프로젝트: amosoz/anyway
def rsa(filename):
    from anyway.parsers.rsa import parse

    return parse(filename)
예제 #9
0
파일: main.py 프로젝트: hasadna/anyway
def schools(filepath, batch_size):
    from anyway.parsers.schools import parse
    return parse(filepath=filepath,
                 batch_size=batch_size)