2019-04-03 04:27:37 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
__package__ = 'archivebox.cli'
|
|
|
|
__command__ = 'archivebox init'
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import argparse
|
|
|
|
|
2019-04-27 21:26:24 +00:00
|
|
|
from typing import Optional, List, IO
|
2019-04-03 04:27:37 +00:00
|
|
|
|
2020-07-24 17:25:25 +00:00
|
|
|
from ..main import init
|
|
|
|
from ..util import docstring
|
2019-04-27 21:26:24 +00:00
|
|
|
from ..config import OUTPUT_DIR
|
2020-07-22 16:02:13 +00:00
|
|
|
from ..logging_util import SmartFormatter, reject_stdin
|
2019-04-03 04:27:37 +00:00
|
|
|
|
|
|
|
|
2019-05-01 03:10:48 +00:00
|
|
|
@docstring(init.__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:
|
2019-04-03 04:27:37 +00:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
prog=__command__,
|
2019-05-01 03:10:48 +00:00
|
|
|
description=init.__doc__,
|
2019-04-03 04:27:37 +00:00
|
|
|
add_help=True,
|
2019-05-01 03:10:48 +00:00
|
|
|
formatter_class=SmartFormatter,
|
2019-04-03 04:27:37 +00:00
|
|
|
)
|
2019-05-01 06:27:50 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--force', # '-f',
|
|
|
|
action='store_true',
|
|
|
|
help='Ignore unrecognized files in current directory and initialize anyway',
|
|
|
|
)
|
2021-02-15 19:52:10 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--quick', '-q',
|
|
|
|
action='store_true',
|
|
|
|
help='Run any updates or migrations without rechecking all snapshot dirs',
|
|
|
|
)
|
2021-04-06 01:15:32 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--setup', #'-s',
|
|
|
|
action='store_true',
|
|
|
|
help='Automatically install dependencies and extras used for archiving',
|
|
|
|
)
|
2019-05-01 06:27:50 +00:00
|
|
|
command = parser.parse_args(args or ())
|
2019-04-27 21:26:24 +00:00
|
|
|
reject_stdin(__command__, stdin)
|
2019-04-03 04:27:37 +00:00
|
|
|
|
2019-05-01 06:27:50 +00:00
|
|
|
init(
|
|
|
|
force=command.force,
|
2021-02-15 19:52:10 +00:00
|
|
|
quick=command.quick,
|
2021-04-06 01:15:32 +00:00
|
|
|
setup=command.setup,
|
2019-05-01 06:27:50 +00:00
|
|
|
out_dir=pwd or OUTPUT_DIR,
|
|
|
|
)
|
2019-04-03 04:27:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-04-27 21:26:24 +00:00
|
|
|
main(args=sys.argv[1:], stdin=sys.stdin)
|