1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00
ArchiveBox/archivebox/cli/archivebox_info.py

31 lines
742 B
Python
Raw Normal View History

#!/usr/bin/env python3
__package__ = 'archivebox.cli'
__command__ = 'archivebox info'
__description__ = 'Print out some info and statistics about the archive collection'
import sys
import argparse
2019-04-28 09:26:24 +12:00
from typing import Optional, List, IO
2019-04-28 09:26:24 +12:00
from ..main import info
from ..config import OUTPUT_DIR
from ..util import reject_stdin
2019-04-28 09:26:24 +12:00
def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional[str]=None) -> None:
parser = argparse.ArgumentParser(
prog=__command__,
description=__description__,
add_help=True,
)
2019-04-28 09:26:24 +12:00
parser.parse_args(args or ())
reject_stdin(__command__, stdin)
info(out_dir=pwd or OUTPUT_DIR)
if __name__ == '__main__':
2019-04-28 09:26:24 +12:00
main(args=sys.argv[1:], stdin=sys.stdin)