ArchiveBox/archivebox/__main__.py

20 lines
472 B
Python
Raw Normal View History

#!/usr/bin/env python3
2024-10-02 21:17:28 +00:00
# _ _ _ ____
# / \ _ __ ___| |__ (_)_ _____| __ ) _____ __
# / _ \ | '__/ __| '_ \| \ \ / / _ \ _ \ / _ \ \/ /
# / ___ \| | | (__| | | | |\ V / __/ |_) | (_) > <
# /_/ \_\_| \___|_| |_|_| \_/ \___|____/ \___/_/\_\
__package__ = 'archivebox'
2024-10-02 21:17:28 +00:00
import archivebox # noqa
2019-04-27 21:26:24 +00:00
import sys
from .cli import main
2020-07-13 15:22:07 +00:00
if __name__ == '__main__':
main(args=sys.argv[1:], stdin=sys.stdin)