2019-04-03 04:27:37 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
__package__ = 'archivebox.cli'
|
|
|
|
__command__ = 'archivebox version'
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import argparse
|
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-03 04:27:37 +00:00
|
|
|
|
2024-10-01 01:33:43 +00:00
|
|
|
# from archivebox.misc.util import docstring
|
|
|
|
from archivebox.config import DATA_DIR, VERSION
|
2020-07-22 16:02:13 +00:00
|
|
|
from ..logging_util import SmartFormatter, reject_stdin
|
2019-04-03 04:27:37 +00:00
|
|
|
|
|
|
|
|
2024-10-01 01:33:43 +00:00
|
|
|
# @docstring(version.__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:
|
2024-10-01 01:33:43 +00:00
|
|
|
"""Print the ArchiveBox version and dependency information"""
|
2019-04-03 04:27:37 +00:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
prog=__command__,
|
2024-10-01 01:33:43 +00:00
|
|
|
description="Print the ArchiveBox version and dependency information", # version.__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-04-11 07:42:35 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--quiet', '-q',
|
|
|
|
action='store_true',
|
|
|
|
help='Only print ArchiveBox version number and nothing else.',
|
|
|
|
)
|
2019-04-27 21:26:24 +00:00
|
|
|
command = parser.parse_args(args or ())
|
|
|
|
reject_stdin(__command__, stdin)
|
2019-04-03 04:27:37 +00:00
|
|
|
|
2024-10-01 01:33:43 +00:00
|
|
|
# for speed reasons, check if quiet flag was set and just return simple version immediately if so
|
|
|
|
if command.quiet:
|
|
|
|
print(VERSION)
|
|
|
|
return
|
|
|
|
|
|
|
|
# otherwise do big expensive import to get the full version
|
|
|
|
from ..main import version
|
2019-04-27 21:26:24 +00:00
|
|
|
version(
|
|
|
|
quiet=command.quiet,
|
2024-10-01 00:44:18 +00:00
|
|
|
out_dir=Path(pwd) if pwd else DATA_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)
|