mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-12 22:25:44 -04:00
add index-only option to archivebox add and update
This commit is contained in:
parent
95a7d3d1de
commit
d248684839
4 changed files with 19 additions and 3 deletions
|
@ -8,7 +8,7 @@ from importlib import import_module
|
||||||
CLI_DIR = os.path.dirname(os.path.abspath(__file__))
|
CLI_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
# these common commands will appear sorted before any others for ease-of-use
|
# these common commands will appear sorted before any others for ease-of-use
|
||||||
display_first = ('help', 'version', 'init', 'info', 'list', 'update', 'add', 'remove')
|
display_first = ('help', 'version', 'init', 'info', 'config', 'list', 'update', 'add', 'remove')
|
||||||
|
|
||||||
# every imported command module must have these properties in order to be valid
|
# every imported command module must have these properties in order to be valid
|
||||||
required_attrs = ('__package__', '__command__', 'main')
|
required_attrs = ('__package__', '__command__', 'main')
|
||||||
|
|
|
@ -7,6 +7,8 @@ __description__ = 'Add a new URL or list of URLs to your archive'
|
||||||
import sys
|
import sys
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
|
from typing import List, Optional
|
||||||
|
|
||||||
from ..legacy.config import stderr, check_dependencies, check_data_folder
|
from ..legacy.config import stderr, check_dependencies, check_data_folder
|
||||||
from ..legacy.util import (
|
from ..legacy.util import (
|
||||||
handle_stdin_import,
|
handle_stdin_import,
|
||||||
|
@ -15,7 +17,7 @@ from ..legacy.util import (
|
||||||
from ..legacy.main import update_archive_data
|
from ..legacy.main import update_archive_data
|
||||||
|
|
||||||
|
|
||||||
def main(args=None, stdin=None):
|
def main(args: List[str]=None, stdin: Optional[str]=None) -> None:
|
||||||
check_data_folder()
|
check_data_folder()
|
||||||
|
|
||||||
args = sys.argv[1:] if args is None else args
|
args = sys.argv[1:] if args is None else args
|
||||||
|
@ -36,6 +38,11 @@ def main(args=None, stdin=None):
|
||||||
action='store_true',
|
action='store_true',
|
||||||
help="Don't attempt to retry previously skipped/failed links when updating",
|
help="Don't attempt to retry previously skipped/failed links when updating",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'--index-only', #'-o',
|
||||||
|
action='store_true',
|
||||||
|
help="Add the links to the main index without archiving them",
|
||||||
|
)
|
||||||
# parser.add_argument(
|
# parser.add_argument(
|
||||||
# '--mirror', #'-m',
|
# '--mirror', #'-m',
|
||||||
# action='store_true',
|
# action='store_true',
|
||||||
|
@ -81,6 +88,7 @@ def main(args=None, stdin=None):
|
||||||
import_path=import_path,
|
import_path=import_path,
|
||||||
resume=None,
|
resume=None,
|
||||||
only_new=command.only_new,
|
only_new=command.only_new,
|
||||||
|
index_only=command.index_only,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,13 +7,14 @@ __description__ = 'Import any new links from subscriptions and retry any previou
|
||||||
import sys
|
import sys
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
|
from typing import List
|
||||||
|
|
||||||
from ..legacy.config import check_data_folder
|
from ..legacy.config import check_data_folder
|
||||||
from ..legacy.util import reject_stdin
|
from ..legacy.util import reject_stdin
|
||||||
from ..legacy.main import update_archive_data
|
from ..legacy.main import update_archive_data
|
||||||
|
|
||||||
|
|
||||||
def main(args=None):
|
def main(args: List[str]=None):
|
||||||
check_data_folder()
|
check_data_folder()
|
||||||
|
|
||||||
args = sys.argv[1:] if args is None else args
|
args = sys.argv[1:] if args is None else args
|
||||||
|
@ -28,6 +29,11 @@ def main(args=None):
|
||||||
action='store_true',
|
action='store_true',
|
||||||
help="Don't attempt to retry previously skipped/failed links when updating",
|
help="Don't attempt to retry previously skipped/failed links when updating",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'--index-only', #'-o',
|
||||||
|
action='store_true',
|
||||||
|
help="Update the main index without archiving any content",
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--resume', #'-r',
|
'--resume', #'-r',
|
||||||
type=float,
|
type=float,
|
||||||
|
@ -41,6 +47,7 @@ def main(args=None):
|
||||||
import_path=None,
|
import_path=None,
|
||||||
resume=command.resume,
|
resume=command.resume,
|
||||||
only_new=command.only_new,
|
only_new=command.only_new,
|
||||||
|
index_only=command.index_only,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ ACTIVE_THEME = 'default'
|
||||||
|
|
||||||
IS_SHELL = 'shell' in sys.argv[:3] or 'shell_plus' in sys.argv[:3]
|
IS_SHELL = 'shell' in sys.argv[:3] or 'shell_plus' in sys.argv[:3]
|
||||||
|
|
||||||
|
|
||||||
INSTALLED_APPS = [
|
INSTALLED_APPS = [
|
||||||
'django.contrib.auth',
|
'django.contrib.auth',
|
||||||
'django.contrib.contenttypes',
|
'django.contrib.contenttypes',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue