mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 20:23:12 +00:00
10 lines
347 B
Python
10 lines
347 B
Python
from archivebox.logging_util import log_shell_welcome_msg
|
|
|
|
|
|
if __name__ == '__main__':
|
|
# load the rich extension for ipython for pretty printing
|
|
# https://rich.readthedocs.io/en/stable/introduction.html#ipython-extension
|
|
get_ipython().run_line_magic('load_ext', 'rich')
|
|
|
|
# print the welcome message
|
|
log_shell_welcome_msg()
|