bookcli 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bookcli-0.2.0 → bookcli-0.2.1}/PKG-INFO +1 -1
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/__init__.py +1 -1
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/cli.py +4 -1
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli.egg-info/PKG-INFO +1 -1
- {bookcli-0.2.0 → bookcli-0.2.1}/pyproject.toml +1 -1
- {bookcli-0.2.0 → bookcli-0.2.1}/README.md +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/cache.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/config.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/database/__init__.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/database/migrations.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/downloader.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/exceptions.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/models.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/opener.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/providers/__init__.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/providers/base.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/providers/google_books.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/providers/gutenberg.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/providers/internet_archive.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/providers/openlibrary.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/services/__init__.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/services/history.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/services/ranking.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/services/search.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/settings.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli/utils.py +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli.egg-info/SOURCES.txt +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli.egg-info/dependency_links.txt +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli.egg-info/entry_points.txt +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli.egg-info/requires.txt +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/bookcli.egg-info/top_level.txt +0 -0
- {bookcli-0.2.0 → bookcli-0.2.1}/setup.cfg +0 -0
|
@@ -303,8 +303,11 @@ def make_banner() -> Panel:
|
|
|
303
303
|
banner_text.append("██████╔╝╚██████╔╝╚██████╔╝██║ ██╗╚██████╗███████╗██║\n", style="bold yellow")
|
|
304
304
|
banner_text.append("╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝╚═╝\n", style="bold yellow")
|
|
305
305
|
banner_text.append(" Search, inspect, and legally download books\n", style="italic dim white")
|
|
306
|
-
banner_text.append(" Powered by Open Library & Gutenberg", style="italic dim white")
|
|
306
|
+
banner_text.append(" Powered by Open Library & Gutenberg\n", style="italic dim white")
|
|
307
|
+
banner_text.append(" Developer - Dipesh Malla\n", style="italic dim white")
|
|
308
|
+
banner_text.append(" GitHub : greycode009 ", style="italic dim white")
|
|
307
309
|
|
|
310
|
+
|
|
308
311
|
from rich.box import ROUNDED
|
|
309
312
|
return Panel(
|
|
310
313
|
Align.center(banner_text),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|