this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Better progress bar formatting for user-timeline

Closes #38

+5 -1
+5 -1
twitter_to_sqlite/cli.py
··· 264 264 identifiers = [profile["screen_name"]] 265 265 ids = False 266 266 267 + format_string = ( 268 + "@{:" + str(max(len(identifier) for identifier in identifiers)) + "}" 269 + ) 270 + 267 271 for identifier in identifiers: 268 272 kwargs = {} 269 273 if ids: ··· 292 296 session, stop_after=stop_after, since_id=since_id, **kwargs 293 297 ), 294 298 length=expected_length, 295 - label=profile["screen_name"], 299 + label=format_string.format(profile["screen_name"]), 296 300 show_pos=True, 297 301 ) as bar: 298 302 # Save them 100 at a time