Skip to content

Commit

Permalink
Add 'blurry' output on run
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfraney committed Mar 3, 2024
1 parent 866188c commit ab74249
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions blurry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ def json_converter_with_dates(item: Any) -> None | str:
return item.strftime("%Y-%M-%D")


print(
"""
. .
|-.| . ..-..-.. .
`-''-'-'' ' '-|
`-'
""".strip()
)

console = Console()

plugin_table = Table(show_header=True)
Expand Down Expand Up @@ -241,8 +250,8 @@ async def build(release=True):
)
)

task_count = len(markdown_tasks) + len(non_markdown_tasks)
print(f"Gathered {task_count} tasks")
content_dir_relative = CONTENT_DIR.relative_to(Path.cwd())
print(f"Blurring {len(markdown_tasks)} Markdown files from: {content_dir_relative}")

await asyncio.gather(*markdown_tasks)
for non_markdown_task in non_markdown_tasks:
Expand Down

0 comments on commit ab74249

Please sign in to comment.