@@ -2,6 +2,7 | |||||
2 | from ckanapi.cli import workers, dump |
|
2 | from ckanapi.cli import workers, dump | |
3 | from ckanapi.cli.utils import pretty_json, completion_stats, compact_json, quiet_int_pipe |
|
3 | from ckanapi.cli.utils import pretty_json, completion_stats, compact_json, quiet_int_pipe | |
4 | from datetime import datetime |
|
4 | from datetime import datetime | |
|
5 | from tqdm import tqdm | |||
5 | import sys |
|
6 | import sys | |
6 | import json |
|
7 | import json | |
7 | import os |
|
8 | import os | |
@@ -114,7 +115,8 def create_datapackage_change(record, filtered_url, datapackage_dir, stderr, api | |||||
114 | record['path'] = datapackage_dir |
|
115 | record['path'] = datapackage_dir | |
115 |
|
116 | |||
116 | ckan_resources = [] |
|
117 | ckan_resources = [] | |
117 | for resource in record.get('resources', []): |
|
118 | for resource in tqdm(record.get('resources', []), unit_scale=True): | |
|
119 | #for resource in record.get('resources', []): | |||
118 | if resource['format'] in resource_formats_to_ignore: |
|
120 | if resource['format'] in resource_formats_to_ignore: | |
119 | continue |
|
121 | continue | |
120 |
|
122 |
General Comments 0
You need to be logged in to leave comments.
Login now