2019-04-22 23:08:01 +00:00
|
|
|
#!/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
|
2019-04-22 23:08:01 +00:00
|
|
|
|
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
|
2019-04-22 23:08:01 +00:00
|
|
|
|
|
|
|
|
2019-05-01 03:10:48 +00:00
|
|
|
@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
|
|
|
)
|
2019-04-22 23:08:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-04-27 21:26:24 +00:00
|
|
|
main(args=sys.argv[1:], stdin=sys.stdin)
|