mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-25 09:06:02 +03:00
[PR #207] [MERGED] v0.4 (first Django release) #2608
Labels
No labels
expected: maybe someday
expected: next release
expected: release after next
expected: unlikely unless contributed
good first ticket
help wanted
pull-request
scope: all users
scope: windows users
size: easy
size: hard
size: medium
size: medium
status: backlog
status: blocked
status: done
status: idea-phase
status: needs followup
status: wip
status: wontfix
touches: API/CLI/Spec
touches: configuration
touches: data/schema/architecture
touches: dependencies/packaging
touches: docs
touches: js
touches: views/replayers/html/css
why: correctness
why: functionality
why: performance
why: security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ArchiveBox#2608
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/ArchiveBox/ArchiveBox/pull/207
Author: @pirate
Created: 4/2/2019
Status: ✅ Merged
Merged: 7/28/2020
Merged by: @pirate
Base:
master← Head:django📝 Commits (10+)
158f145move docstrings to main.py out of cli files0ba821bbetter return status from list cmddaf5951allow passing debug flag to archivebox server95007d9split up utils into separate filesd26f87emake archivebox server work for urls, hashes, and timestampsfc05567bump docs versionc82651abump docs versioncb2dd1erename model Page to Snapshotad3898aallow forcing init in dirty directoryf60b5edbetter stdin handling📊 Changes
159 files changed (+12374 additions, -3732 deletions)
View changed files
📝
.dockerignore(+9 -13)➕
.flake8(+6 -0)➕
.github/workflows/test.yml(+145 -0)📝
.gitignore(+9 -14)📝
Dockerfile(+56 -62)➕
MANIFEST.in(+4 -0)➕
Pipfile(+12 -0)📝
README.md(+141 -110)➖
archive(+0 -1)➕
archivebox/.flake8(+6 -0)➕
archivebox/VERSION(+1 -0)📝
archivebox/__init__.py(+1 -1)➕
archivebox/__main__.py(+11 -0)➖
archivebox/archive.py(+0 -137)➖
archivebox/archive_methods.py(+0 -623)➕
archivebox/cli/__init__.py(+135 -0)➕
archivebox/cli/archivebox_add.py(+92 -0)➕
archivebox/cli/archivebox_config.py(+61 -0)➕
archivebox/cli/archivebox_help.py(+32 -0)➕
archivebox/cli/archivebox_init.py(+40 -0)...and 80 more files
📄 Description
The v0.4 Release
A bunch of big changes:
pip install archiveboxis now availablearchivebox/cli/archivebox.pyarchivebox(see below)For more info, see: https://github.com/pirate/ArchiveBox/wiki/Roadmap
Released in this version:
Install Methods:
pip/pipenv install archivebox [--dev]docker run nikisweeting/archivebox/docker-compose upapt/brew/pkg/yum/nix/etc install archivebox(maybe later)Note: apt, brew are now available as of v0.5
Command Line Interface:
archiveboxarchivebox versionarchivebox helparchivebox initarchivebox statusarchivebox addarchivebox removearchivebox updatearchivebox listarchivebox schedulearchivebox configarchivebox serverarchivebox shellarchivebox managearchivebox oneshot(released later in v0.5)archivebox export(usearchivebox list --json > index.json)archivebox proxy(too complex)Web UI:
/Main index/addPage to add new links to the archive (but needs improvement)/archive/<timestamp>/Snapshot details page/archive/<timestamp>/<url>live wget archive of page/archive/<timestamp>/<extractor>get a specific extractor output for a given snapshot/archive/<url>shortcut to view most recent snapshot of given url/archive/<url_hash>shortcut to view most recent snapshot of given url/adminAdmin interface to view and edit archive dataPython API:
from archivebox import add, remove, info, config, etc...from archivebox.core.models import Snapshot, User, etc...from archivebox.extractors import media, wget, screenshot, etc...from archivebox.index import json, sql, html, etc...from archivebox.parsers import pinboard_rss, pocket_html, generic_json, etc...(Red ❌ features are still unfinished and will be released in later versions)
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.