diff --git a/scrape.py b/scrape.py index 8788451..6ba29f9 100755 --- a/scrape.py +++ b/scrape.py @@ -356,8 +356,8 @@ with shelve.open('shelf.db') as shelf: if not args.dump: while iterator <= MAX_DEGREE: - for user_str in users_to_process: - print('Processing ' + user_str + ' (distance ' + str(iterator) + ')') + for pos, user_str in enumerate(users_to_process): + print('Processing {} (distance {}, {} of {})'.format(user_str, str(iterator), str(pos), str(len(users_to_process)))) # Skip any users that have already been passed over to avoid infinite loops if user_str in user_dict.keys():