ArchiveBox/archivebox/cli/archivebox_manage.py

25 lines
562 B
Python
Raw Normal View History

#!/usr/bin/env python3
__package__ = 'archivebox.cli'
__command__ = 'archivebox manage'
import sys
2024-10-01 00:44:18 +00:00
from pathlib import Path
2019-04-27 21:26:24 +00:00
from typing import Optional, List, IO
2024-10-01 00:25:15 +00:00
from archivebox.misc.util import docstring
2024-10-01 00:44:18 +00:00
from archivebox.config import DATA_DIR
from ..main import manage
@docstring(manage.__doc__)
2019-04-27 21:26:24 +00:00
def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional[str]=None) -> None:
manage(
args=args,
2024-10-01 00:44:18 +00:00
out_dir=Path(pwd) if pwd else DATA_DIR,
2019-04-27 21:26:24 +00:00
)
if __name__ == '__main__':
2019-04-27 21:26:24 +00:00
main(args=sys.argv[1:], stdin=sys.stdin)