You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
372 B
12 lines
372 B
3 years ago
|
from cont_modules import *
|
||
|
|
||
|
# csv_wrapper = read_api_to_wrapper()
|
||
|
|
||
|
# write_csv_from_list(construct_ID('api_out', 'ALL'), csv_wrapper)
|
||
|
|
||
|
csv_wrapper = read_csv_to_list_wrapper('./%s' % construct_ID('api_out', 'ALL'))
|
||
|
|
||
|
collections = split_collection(csv_wrapper)
|
||
|
|
||
|
for collection_code in collections:
|
||
|
run_algorithm('api_out', collection_code, collections[collection_code])
|