You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
all_files = [os.path.join(root, _file) for root, folders, files in os.walk(parent_dir) for _file in files if _file == 'shape.geojson' and 'TN-3' not in root]
return all_files
def run(self):
total_files_to_process = len(self.all_files)
for index, _file in enumerate(self.all_files):
print 'Processing {} out of {}...'.format(index, total_files_to_process)