mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 12:13:05 +00:00
29 lines
588 B
Python
Executable file
29 lines
588 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
__package__ = 'archivebox.cli'
|
|
__command__ = 'archivebox init'
|
|
__description__ = 'Initialize a new ArchiveBox collection in the current directory'
|
|
|
|
import sys
|
|
import argparse
|
|
|
|
from ..legacy.util import reject_stdin
|
|
from ..legacy.main import init
|
|
|
|
|
|
def main(args=None):
|
|
args = sys.argv[1:] if args is None else args
|
|
|
|
parser = argparse.ArgumentParser(
|
|
prog=__command__,
|
|
description=__description__,
|
|
add_help=True,
|
|
)
|
|
parser.parse_args(args)
|
|
reject_stdin(__command__)
|
|
|
|
init()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|