mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-12 22:25:44 -04:00
wip
This commit is contained in:
parent
4b6f08b0fe
commit
5d9a32c364
178 changed files with 2982 additions and 1322 deletions
32
click_test.py
Normal file
32
click_test.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
import sys
|
||||
import click
|
||||
from rich import print
|
||||
from archivebox.config.django import setup_django
|
||||
|
||||
setup_django()
|
||||
|
||||
import abx.archivebox.writes
|
||||
|
||||
|
||||
def parse_stdin_to_args(io=sys.stdin):
|
||||
for line in io.read().split('\n'):
|
||||
for url_or_id in line.split(' '):
|
||||
if url_or_id.strip():
|
||||
yield url_or_id.strip()
|
||||
|
||||
|
||||
# Gather data from stdin in case using a pipe
|
||||
if not sys.stdin.isatty():
|
||||
sys.argv += parse_stdin_to_args(sys.stdin)
|
||||
|
||||
|
||||
@click.command()
|
||||
@click.argument("snapshot_ids_or_urls", type=str, nargs=-1)
|
||||
def extract(snapshot_ids_or_urls):
|
||||
for url_or_snapshot_id in snapshot_ids_or_urls:
|
||||
print('- EXTRACTING', url_or_snapshot_id, file=sys.stderr)
|
||||
for result in abx.archivebox.writes.extract(url_or_snapshot_id):
|
||||
print(result)
|
||||
|
||||
if __name__ == "__main__":
|
||||
extract()
|
Loading…
Add table
Add a link
Reference in a new issue