atomica.migration.all_results¶
- atomica.migration.all_results(proj)[source]¶
Helper generator to iterate over all results in a project
- Project results may be
Standalone results
A list of results
A UID string (that should be ignored)
This function is a generator that allows iteration over all results in a project
- Parameters:
proj – A Project object
- Returns:
A Result (via yield)
Example usage:
- for result in all_results(proj):
do_stuff(result)