2019-04-22 14:34:30 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
__package__ = 'archivebox.cli'
|
2020-06-25 23:32:01 -04:00
|
|
|
__command__ = 'archivebox status'
|
2019-04-22 14:34:30 -04:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import argparse
|
2024-09-30 17:44:18 -07:00
|
|
|
from pathlib import Path
|
2019-04-27 17:26:24 -04:00
|
|
|
from typing import Optional, List, IO
|
2019-04-22 14:34:30 -04:00
|
|
|
|
2024-09-30 17:25:15 -07:00
|
|
|
from archivebox.misc.util import docstring
|
2024-09-30 17:44:18 -07:00
|
|
|
from archivebox.config import DATA_DIR
|
2020-07-22 11:02:13 -05:00
|
|
|
from ..logging_util import SmartFormatter, reject_stdin
|
2024-09-30 17:44:18 -07:00
|
|
|
from ..main import status
|
2019-04-22 14:34:30 -04:00
|
|
|
|
|
|
|
|
2020-06-25 23:32:01 -04:00
|
|
|
@docstring(status.__doc__)
|
2019-04-27 17:26:24 -04:00
|
|
|
def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional[str]=None) -> None:
|
2019-04-22 14:34:30 -04:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
prog=__command__,
|
2020-06-25 23:32:01 -04:00
|
|
|
description=status.__doc__,
|
2019-04-22 14:34:30 -04:00
|
|
|
add_help=True,
|
2019-04-30 23:10:48 -04:00
|
|
|
formatter_class=SmartFormatter,
|
2019-04-22 14:34:30 -04:00
|
|
|
)
|
2019-04-27 17:26:24 -04:00
|
|
|
parser.parse_args(args or ())
|
|
|
|
reject_stdin(__command__, stdin)
|
|
|
|
|
2024-09-30 17:44:18 -07:00
|
|
|
status(out_dir=Path(pwd) if pwd else DATA_DIR)
|
2019-04-22 14:34:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-04-27 17:26:24 -04:00
|
|
|
main(args=sys.argv[1:], stdin=sys.stdin)
|