1
0
Fork 0
mirror of synced 2024-05-16 18:32:41 +12:00
ArchiveBox/README.md

522 lines
30 KiB
Markdown
Raw Normal View History

2019-01-23 15:58:24 +13:00
<div align="center">
2020-11-23 22:51:05 +13:00
<em><img src="https://i.imgur.com/5B48E3N.png" height="90px"></em>
2019-01-23 17:12:48 +13:00
<h1>ArchiveBox<br/><sub>The open-source self-hosted web archive.</sub></h1>
2019-01-23 15:58:24 +13:00
2020-11-23 20:04:39 +13:00
▶️ <a href="https://github.com/ArchiveBox/ArchiveBox/wiki/Quickstart">Quickstart</a> |
<a href="https://archivebox.zervice.io/">Demo</a> |
2020-11-23 20:04:39 +13:00
<a href="https://github.com/ArchiveBox/ArchiveBox">Github</a> |
<a href="https://github.com/ArchiveBox/ArchiveBox/wiki">Documentation</a> |
<a href="#background--motivation">Info & Motivation</a> |
2020-11-23 20:04:39 +13:00
<a href="https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community">Community</a> |
<a href="https://github.com/ArchiveBox/ArchiveBox/wiki/Roadmap">Roadmap</a>
2019-01-23 17:46:49 +13:00
<pre>
2019-01-28 22:40:42 +13:00
"Your own personal internet archive" (网站存档 / 爬虫)
2019-01-23 17:46:49 +13:00
</pre>
2019-01-23 17:13:38 +13:00
<!--<a href="http://webchat.freenode.net?channels=ArchiveBox&uio=d4"><img src="https://img.shields.io/badge/Community_chat-IRC-%2328A745.svg"/></a>-->
2020-07-24 04:32:40 +12:00
2020-11-23 20:04:39 +13:00
<a href="https://github.com/ArchiveBox/ArchiveBox/blob/master/LICENSE"><img src="https://img.shields.io/badge/Open_source-MIT-green.svg?logo=git&logoColor=green"/></a>
<a href="https://github.com/ArchiveBox/ArchiveBox/commits/dev"><img src="https://img.shields.io/github/last-commit/ArchiveBox/ArchiveBox.svg?logo=Sublime+Text&logoColor=green&label=Active"/></a>
<a href="https://github.com/ArchiveBox/ArchiveBox"><img src="https://img.shields.io/github/stars/ArchiveBox/ArchiveBox.svg?logo=github&label=Stars&logoColor=blue"/></a>
<a href="https://test.pypi.org/project/archivebox/"><img src="https://img.shields.io/badge/Python-%3E%3D3.7-yellow.svg?logo=python&logoColor=yellow"/></a>
2020-11-23 20:04:39 +13:00
<a href="https://github.com/ArchiveBox/ArchiveBox/wiki/Install#dependencies"><img src="https://img.shields.io/badge/Chromium-%3E%3D59-orange.svg?logo=Google+Chrome&logoColor=orange"/></a>
<a href="https://hub.docker.com/r/archivebox/archivebox"><img src="https://img.shields.io/badge/Docker-all%20platforms-lightblue.svg?logo=docker&logoColor=lightblue"/></a>
2019-07-10 04:51:00 +12:00
<hr/>
2019-01-23 16:00:21 +13:00
</div>
2020-12-12 10:04:05 +13:00
ArchiveBox is a powerful self-hosted internet archiving solution written in Python 3. You feed it URLs of pages you want to archive, and it saves them to disk in a varitety of formats depending on the configuration and the content it detects.
2020-10-11 09:08:52 +13:00
2020-12-12 10:42:23 +13:00
Your archive can be managed through the command line with commands like `archivebox add`, through the built-in Web UI `archivebox server`, or via the Python library API (beta). It can ingest bookmarks from a browser or service like Pocket/Pinboard, your entire browsing history, RSS feeds, or URLs one at a time. You can also schedule regular/realtime imports with `archivebox schedule`.
2020-10-11 19:44:55 +13:00
2020-12-12 10:42:23 +13:00
The main index is a self-contained `index.sqlite3` file, and each snapshot is stored as a folder `data/archive/<timestamp>/`, with an easy-to-read `index.html` and `index.json` within. For each page, ArchiveBox auto-extracts many types of assets/media and saves them in standard formats, with out-of-the-box support for: several types of HTML snapshots (wget, Chrome headless, singlefile), PDF snapshotting, screenshotting, WARC archiving, git repositories, images, audio, video, subtitles, article text, and more. The snapshots are browseable and managable offline through the filesystem, the built-in webserver, or the Python library API.
2019-01-23 15:31:42 +13:00
2020-12-12 10:04:05 +13:00
### Quickstart
2020-12-12 10:32:48 +13:00
ArchiveBox can be installed via [Docker](https://docs.docker.com/get-docker/) (recommended), [`apt`](https://launchpad.net/~archivebox/+archive/ubuntu/archivebox/+packages), [`brew`](https://github.com/ArchiveBox/homebrew-archivebox), or [`pip`](https://www.python.org/downloads/). It works on macOS (stable), Windows (beta), and Linux/BSD (stable on both Intel and ARM CPUs).
2020-12-12 10:04:05 +13:00
```bash
pip3 install archivebox
2020-12-12 10:11:22 +13:00
archivebox --version
2020-12-12 10:22:11 +13:00
# install extras as-needed, or use one of full setup methods below to get everything out-of-the-box
2020-12-12 10:04:05 +13:00
mkdir ~/archivebox && cd ~/archivebox
archivebox init
archivebox add 'https://example.com'
2020-12-12 10:08:58 +13:00
archivebox help # to see more options
2020-12-12 10:04:05 +13:00
```
2020-12-12 10:23:56 +13:00
*(click to expand the sections below for full setup instructions)*
2020-12-12 09:45:15 +13:00
2020-12-12 09:46:34 +13:00
<details>
2020-12-12 10:08:58 +13:00
<summary><b>Get ArchiveBox with <code>docker-compose</code> on any platform (recommended, everything included out-of-the-box)</b></summary>
2020-12-12 12:37:39 +13:00
First make sure you have Docker installed: https://docs.docker.com/get-docker/
This is the recommended way to run ArchiveBox because it includes *all* the extractors like chrome, wget, youtube-dl, git, etc., as well as full-text search with sonic, and many other great features.
2020-12-12 09:45:15 +13:00
```bash
2020-12-12 09:50:16 +13:00
# create a new empty directory and initalize your collection (can be anywhere)
2020-12-12 09:45:15 +13:00
mkdir ~/archivebox && cd ~/archivebox
2020-12-12 09:50:16 +13:00
curl -O https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/master/docker-compose.yml
2020-12-12 09:45:15 +13:00
docker-compose run archivebox init
2020-12-12 09:59:43 +13:00
docker-compose run archivebox --version
2020-12-12 09:50:16 +13:00
# start the webserver and open the UI (optional)
2020-12-12 09:59:43 +13:00
docker-compose run archivebox manage createsuperuser
2020-12-12 09:45:15 +13:00
docker-compose up -d
open http://127.0.0.1:8000
2020-12-12 09:59:43 +13:00
# you can also add links and manage your archive via the CLI:
docker-compose run archivebox add 'https://example.com'
docker-compose run archivebox status
docker-compose run archivebox help # to see more options
2020-12-12 09:45:15 +13:00
```
</details>
2020-12-12 09:46:34 +13:00
<details>
2020-12-12 10:08:58 +13:00
<summary><b>Get ArchiveBox with <code>docker</code> on any platform</b></summary>
First make sure you have Docker installed: https://docs.docker.com/get-docker/
2020-12-12 09:45:15 +13:00
```bash
2020-12-12 09:50:16 +13:00
# create a new empty directory and initalize your collection (can be anywhere)
2020-12-12 09:45:15 +13:00
mkdir ~/archivebox && cd ~/archivebox
docker run -v $PWD:/data -it archivebox/archivebox init
2020-12-12 09:59:43 +13:00
docker run -v $PWD:/data -it archivebox/archivebox --version
2020-12-12 09:50:16 +13:00
# start the webserver and open the UI (optional)
2020-12-12 09:59:43 +13:00
docker run -v $PWD:/data -it archivebox/archivebox manage createsuperuser
docker run -v $PWD:/data -p 8000:8000 archivebox/archivebox server 0.0.0.0:8000
2020-12-12 09:45:15 +13:00
open http://127.0.0.1:8000
2020-12-12 09:59:43 +13:00
# you can also add links and manage your archive via the CLI:
docker run -v $PWD:/data -it archivebox/archivebox add 'https://example.com'
docker run -v $PWD:/data -it archivebox/archivebox status
docker run -v $PWD:/data -it archivebox/archivebox help # to see more options
2020-12-12 09:45:15 +13:00
```
</details>
2020-12-12 09:46:34 +13:00
<details>
<summary><b>Get ArchiveBox with <code>apt</code> on Ubuntu >=20.04</b></summary>
2020-12-12 09:45:15 +13:00
```bash
sudo add-apt-repository -u ppa:archivebox/archivebox
apt install archivebox
2020-12-12 09:59:43 +13:00
# create a new empty directory and initalize your collection (can be anywhere)
mkdir ~/archivebox && cd ~/archivebox
2020-12-12 12:30:18 +13:00
npm install --prefix . 'git+https://github.com/ArchiveBox/ArchiveBox.git'
2020-12-12 09:59:43 +13:00
archivebox init
archivebox --version
2020-12-12 12:30:18 +13:00
# start the webserver and open the web UI (optional)
2020-12-12 09:59:43 +13:00
archivebox manage createsuperuser
archivebox server 0.0.0.0:8000
open http://127.0.0.1:8000
2020-12-12 12:33:03 +13:00
# you can also add URLs and manage the archive via the CLI and filesystem:
2020-12-12 09:59:43 +13:00
archivebox add 'https://example.com'
archivebox status
2020-12-12 12:33:03 +13:00
archivebox list --html --with-headers > index.html
archivebox list --json --with-headers > index.json
2020-12-12 09:59:43 +13:00
archivebox help # to see more options
2020-12-12 09:45:15 +13:00
```
2020-12-12 09:45:15 +13:00
</details>
2019-01-23 20:08:29 +13:00
2020-12-12 09:46:34 +13:00
<details>
<summary><b>Get ArchiveBox with <code>brew</code> on macOS >=10.13</b></summary>
2019-03-13 11:55:45 +13:00
2020-12-12 09:45:15 +13:00
```bash
brew install archivebox/archivebox/archivebox
2020-11-24 17:37:16 +13:00
2020-12-12 09:45:15 +13:00
# create a new empty directory and initalize your collection (can be anywhere)
mkdir ~/archivebox && cd ~/archivebox
2020-12-12 12:30:18 +13:00
npm install --prefix . 'git+https://github.com/ArchiveBox/ArchiveBox.git'
2020-12-12 09:45:15 +13:00
archivebox init
2020-12-12 09:59:43 +13:00
archivebox --version
2020-12-12 12:33:03 +13:00
# start the webserver and open the web UI (optional)
2020-12-12 09:59:43 +13:00
archivebox manage createsuperuser
archivebox server 0.0.0.0:8000
open http://127.0.0.1:8000
2020-12-12 12:33:03 +13:00
# you can also add URLs and manage the archive via the CLI and filesystem:
2020-12-12 09:59:43 +13:00
archivebox add 'https://example.com'
archivebox status
2020-12-12 12:33:03 +13:00
archivebox list --html --with-headers > index.html
archivebox list --json --with-headers > index.json
2020-12-12 09:59:43 +13:00
archivebox help # to see more options
2020-12-12 09:45:15 +13:00
```
2020-11-24 17:44:18 +13:00
2020-12-12 09:45:15 +13:00
</details>
2020-11-24 17:37:16 +13:00
2020-12-12 09:46:34 +13:00
<details>
<summary><b>Get ArchiveBox with <code>pip</code> on any platform</b></summary>
2020-11-24 17:37:16 +13:00
```bash
2020-12-12 09:45:15 +13:00
pip3 install archivebox
# create a new empty directory and initalize your collection (can be anywhere)
mkdir ~/archivebox && cd ~/archivebox
2020-12-12 12:30:18 +13:00
npm install --prefix . 'git+https://github.com/ArchiveBox/ArchiveBox.git'
2020-11-24 17:39:08 +13:00
archivebox init
2020-12-12 09:59:43 +13:00
archivebox --version
# Install any missing extras like wget/git/chrome/etc. manually as needed
2020-12-12 09:45:15 +13:00
2020-12-12 12:33:03 +13:00
# start the webserver and open the web UI (optional)
2020-12-12 09:59:43 +13:00
archivebox manage createsuperuser
archivebox server 0.0.0.0:8000
open http://127.0.0.1:8000
2020-12-12 09:45:15 +13:00
2020-12-12 12:33:03 +13:00
# you can also add URLs and manage the archive via the CLI and filesystem:
2020-12-12 09:59:43 +13:00
archivebox add 'https://example.com'
archivebox status
2020-12-12 12:33:03 +13:00
archivebox list --html --with-headers > index.html
archivebox list --json --with-headers > index.json
2020-12-12 09:59:43 +13:00
archivebox help # to see more options
2020-11-24 17:37:16 +13:00
```
2020-11-23 21:42:11 +13:00
2020-12-12 09:59:43 +13:00
</details>
2020-12-12 12:10:55 +13:00
---
2020-10-11 09:00:53 +13:00
<div align="center">
2020-11-23 22:51:05 +13:00
<img src="https://i.imgur.com/lUuicew.png" width="400px">
2020-10-11 09:00:53 +13:00
<br/>
2020-11-23 22:21:35 +13:00
<a href="https://archivebox.zervice.io">DEMO: archivebox.zervice.io/</a>
For more information, see the <a href="https://github.com/ArchiveBox/ArchiveBox/wiki/Quickstart">full Quickstart guide</a>, <a href="https://github.com/ArchiveBox/ArchiveBox/wiki/Usage">Usage</a>, and <a href="https://github.com/ArchiveBox/ArchiveBox/wiki/Configuration">Configuration</a> docs.
2020-10-11 09:00:53 +13:00
</div>
2020-08-19 12:45:34 +12:00
2020-10-11 09:00:53 +13:00
---
2020-08-19 12:45:34 +12:00
2020-10-11 09:00:53 +13:00
# Overview
ArchiveBox is a command line tool, self-hostable web-archiving server, and Python library all-in-one. It can be installed on Docker, macOS, and Linux/BSD, and Windows. You can download and install it as a Debian/Ubuntu package, Homebrew package, Python3 package, or a Docker image. No matter which install method you choose, they all provide the same CLI, Web UI, and on-disk data format.
2020-10-11 09:00:53 +13:00
2020-12-12 10:42:23 +13:00
To use ArchiveBox you start by creating a folder for your data to live in (it can be anywhere on your system), and running `archivebox init` inside of it. That will create a sqlite3 index and an `ArchiveBox.conf` file. After that, you can continue to add/export/manage/etc using the CLI `archivebox help`, or you can run the Web UI (recommended). If you only want to archive a single site, you can run `archivebox oneshot` to avoid having to create a whole collection.
2019-03-19 18:59:05 +13:00
2020-11-23 21:59:45 +13:00
The CLI is considered "stable", the ArchiveBox Python API and REST APIs are in "beta", and the [desktop app](https://github.com/ArchiveBox/desktop) is in "alpha" stage.
2020-07-24 04:32:40 +12:00
2020-10-11 09:00:53 +13:00
At the end of the day, the goal is to sleep soundly knowing that the part of the internet you care about will be automatically preserved in multiple, durable long-term formats that will be accessible for decades (or longer). You can also self-host your archivebox server on a public domain to provide archive.org-style public access to your site snapshots.
2019-03-13 11:01:34 +13:00
2019-03-13 12:03:07 +13:00
<div align="center">
2020-07-24 04:32:40 +12:00
<img src="https://i.imgur.com/3tBL7PU.png" width="22%" alt="CLI Screenshot" align="top">
<img src="https://i.imgur.com/viklZNG.png" width="22%" alt="Desktop index screenshot" align="top">
<img src="https://i.imgur.com/RefWsXB.jpg" width="22%" alt="Desktop details page Screenshot"/>
<img src="https://i.imgur.com/M6HhzVx.png" width="22%" alt="Desktop details page Screenshot"/><br/>
2020-11-23 20:04:39 +13:00
<sup><a href="https://archive.sweeting.me/">Demo</a> | <a href="https://github.com/ArchiveBox/ArchiveBox/wiki/Usage">Usage</a> | <a href="#screenshots">Screenshots</a></sup>
2019-03-13 12:09:06 +13:00
<br/>
2019-03-13 12:03:07 +13:00
<sub>. . . . . . . . . . . . . . . . . . . . . . . . . . . .</sub>
</div><br/>
2019-03-13 11:56:38 +13:00
2019-01-23 17:24:30 +13:00
2020-10-11 09:00:53 +13:00
## Key Features
2020-11-23 20:04:39 +13:00
- [**Free & open source**](https://github.com/ArchiveBox/ArchiveBox/blob/master/LICENSE), doesn't require signing up for anything, stores all data locally
- [**Few dependencies**](https://github.com/ArchiveBox/ArchiveBox/wiki/Install#dependencies) and [simple command line interface](https://github.com/ArchiveBox/ArchiveBox/wiki/Usage#CLI-Usage)
- [**Comprehensive documentation**](https://github.com/ArchiveBox/ArchiveBox/wiki), [active development](https://github.com/ArchiveBox/ArchiveBox/wiki/Roadmap), and [rich community](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community)
- Easy to set up **[scheduled importing](https://github.com/ArchiveBox/ArchiveBox/wiki/Scheduled-Archiving) from multiple sources**
2020-10-11 09:00:53 +13:00
- Uses common, **durable, [long-term formats](#saves-lots-of-useful-stuff-for-each-imported-link)** like HTML, JSON, PDF, PNG, and WARC
2020-11-23 20:04:39 +13:00
- ~~**Suitable for paywalled / [authenticated content](https://github.com/ArchiveBox/ArchiveBox/wiki/Configuration#chrome_user_data_dir)** (can use your cookies)~~ (do not do this until v0.5 is released with some security fixes)
2020-10-12 19:57:31 +13:00
- **Doesn't require a constantly-running daemon**, proxy, or native app
- Provides a CLI, Python API, self-hosted web UI, and REST API (WIP)
2020-11-23 20:04:39 +13:00
- Architected to be able to run [**many varieties of scripts during archiving**](https://github.com/ArchiveBox/ArchiveBox/issues/51), e.g. to extract media, summarize articles, [scroll pages](https://github.com/ArchiveBox/ArchiveBox/issues/80), [close modals](https://github.com/ArchiveBox/ArchiveBox/issues/175), expand comment threads, etc.
- Can also [**mirror content to 3rd-party archiving services**](https://github.com/ArchiveBox/ArchiveBox/wiki/Configuration#submit_archive_dot_org) automatically for redundancy
2020-10-11 09:00:53 +13:00
## Input formats
ArchiveBox supports many input formats for URLs, including Pocket & Pinboard exports, Browser bookmarks, Browser history, plain text, HTML, markdown, and more!
```bash
echo 'http://example.com' | archivebox add
archivebox add 'https://example.com/some/page'
archivebox add < ~/Downloads/firefox_bookmarks_export.html
archivebox add < any_text_with_urls_in_it.txt
archivebox add --depth=1 'https://example.com/some/downloads.html'
archivebox add --depth=1 'https://news.ycombinator.com#2020-12-12'
```
- <img src="https://nicksweeting.com/images/bookmarks.png" height="22px"/> Browser history or bookmarks exports (Chrome, Firefox, Safari, IE, Opera, and more)
- <img src="https://nicksweeting.com/images/rss.svg" height="22px"/> RSS, XML, JSON, CSV, SQL, HTML, Markdown, TXT, or any other text-based format
- <img src="https://getpocket.com/favicon.ico" height="22px"/> Pocket, Pinboard, Instapaper, Shaarli, Delicious, Reddit Saved Posts, Wallabag, Unmark.it, OneTab, and more
2020-11-23 20:04:39 +13:00
See the [Usage: CLI](https://github.com/ArchiveBox/ArchiveBox/wiki/Usage#CLI-Usage) page for documentation and examples.
2020-10-11 09:00:53 +13:00
It also includes a built-in scheduled import feature and browser bookmarklet, so you can ingest URLs from RSS feeds, websites, or the filesystem regularly.
## Output formats
All of ArchiveBox's state (including the index, snapshot data, and config file) is stored in a single folder called the "ArchiveBox data folder". All `archivebox` CLI commands must be run from inside this folder, and you first create it by running `archivebox init`.
The on-disk layout is optimized to be easy to browse by hand and durable long-term. The main index is a standard sqlite3 database (it can also be exported as static JSON/HTML), and the archive snapshots are organized by date-added timestamp in the `archive/` subfolder. Each snapshot subfolder includes a static JSON and HTML index describing its contents, and the snapshot extrator outputs are plain files within the folder (e.g. `media/example.mp4`, `git/somerepo.git`, `static/someimage.png`, etc.)
```bash
ls ./archive/<timestamp>/
```
- **Index:** `index.html` & `index.json` HTML and JSON index files containing metadata and details
- **Title:** `title` title of the site
- **Favicon:** `favicon.ico` favicon of the site
- **WGET Clone:** `example.com/page-name.html` wget clone of the site, with .html appended if not present
- **WARC:** `warc/<timestamp>.gz` gzipped WARC of all the resources fetched while archiving
- **PDF:** `output.pdf` Printed PDF of site using headless chrome
- **Screenshot:** `screenshot.png` 1440x900 screenshot of site using headless chrome
- **DOM Dump:** `output.html` DOM Dump of the HTML after rendering using headless chrome
- **URL to Archive.org:** `archive.org.txt` A link to the saved site on archive.org
- **Audio & Video:** `media/` all audio/video files + playlists, including subtitles & metadata with youtube-dl
- **Source Code:** `git/` clone of any repository found on github, bitbucket, or gitlab links
2020-11-23 20:04:39 +13:00
- _More coming soon! See the [Roadmap](https://github.com/ArchiveBox/ArchiveBox/wiki/Roadmap)..._
2020-10-11 09:00:53 +13:00
2020-11-23 20:04:39 +13:00
It does everything out-of-the-box by default, but you can disable or tweak [individual archive methods](https://github.com/ArchiveBox/ArchiveBox/wiki/Configuration) via environment variables or config file.
2020-10-11 09:00:53 +13:00
## Dependencies
2020-11-23 20:04:39 +13:00
You don't need to install all the dependencies, ArchiveBox will automatically enable the relevant modules based on whatever you have available, but it's recommended to use the official [Docker image](https://github.com/ArchiveBox/ArchiveBox/wiki/Docker) with everything preinstalled.
2020-10-11 09:00:53 +13:00
2020-11-23 20:04:39 +13:00
If you so choose, you can also install ArchiveBox and its dependencies directly on any Linux or macOS systems using the [automated setup script](https://github.com/ArchiveBox/ArchiveBox/wiki/Quickstart) or the [system package manager](https://github.com/ArchiveBox/ArchiveBox/wiki/Install).
2020-10-11 09:00:53 +13:00
ArchiveBox is written in Python 3 so it requires `python3` and `pip3` available on your system. It also uses a set of optional, but highly recommended external dependencies for archiving sites: `wget` (for plain HTML, static files, and WARC saving), `chromium` (for screenshots, PDFs, JS execution, and more), `youtube-dl` (for audio and video), `git` (for cloning git repos), and `nodejs` (for readability and singlefile), and more.
## Caveats
If you're importing URLs containing secret slugs or pages with private content (e.g Google Docs, CodiMD notepads, etc), you may want to disable some of the extractor modules to avoid leaking private URLs to 3rd party APIs during the archiving process.
2020-10-25 15:23:08 +13:00
```bash
# don't do this:
archivebox add 'https://docs.google.com/document/d/12345somelongsecrethere'
archivebox add 'https://example.com/any/url/you/want/to/keep/secret/'
# without first disabling share the URL with 3rd party APIs:
archivebox config --set SAVE_ARCHIVE_DOT_ORG=False # disable saving all URLs in Archive.org
archivebox config --set SAVE_FAVICON=False # optional: only the domain is leaked, not full URL
archivebox config --get CHROME_VERSION # optional: set this to chromium instead of chrome if you don't like Google
```
2020-10-11 09:00:53 +13:00
2020-11-23 20:04:39 +13:00
Be aware that malicious archived JS can also read the contents of other pages in your archive due to snapshot CSRF and XSS protections being imperfect. See the [Security Overview](https://github.com/ArchiveBox/ArchiveBox/wiki/Security-Overview#stealth-mode) page for more details.
2020-10-25 15:23:08 +13:00
```bash
# visiting an archived page with malicious JS:
https://127.0.0.1:8000/archive/1602401954/example.com/index.html
2020-10-11 09:00:53 +13:00
2020-10-25 15:23:08 +13:00
# example.com/index.js can now make a request to read everything:
https://127.0.0.1:8000/index.html
https://127.0.0.1:8000/archive/*
# then example.com/index.js can send it off to some evil server
```
2020-11-23 20:04:39 +13:00
Support for saving multiple snapshots of each site over time will be [added soon](https://github.com/ArchiveBox/ArchiveBox/issues/179) (along with the ability to view diffs of the changes between runs). For now ArchiveBox is designed to only archive each URL with each extractor type once. A workaround to take multiple snapshots of the same URL is to make them slightly different by adding a hash:
2020-10-25 15:23:08 +13:00
```bash
archivebox add 'https://example.com#2020-10-24'
...
archivebox add 'https://example.com#2020-10-25'
```
2020-10-11 09:00:53 +13:00
---
2019-03-13 12:19:48 +13:00
<div align="center">
<img src="https://i.imgur.com/PVO88AZ.png" width="80%"/>
</div>
2020-10-11 09:00:53 +13:00
---
2019-03-19 18:19:04 +13:00
2020-10-11 09:00:53 +13:00
# Background & Motivation
2019-03-13 11:09:20 +13:00
2020-07-24 04:32:40 +12:00
Vast treasure troves of knowledge are lost every day on the internet to link rot. As a society, we have an imperative to preserve some important parts of that treasure, just like we preserve our books, paintings, and music in physical libraries long after the originals go out of print or fade into obscurity.
2019-03-13 11:42:19 +13:00
2019-03-13 11:09:20 +13:00
Whether it's to resist censorship by saving articles before they get taken down or edited, or
2020-07-24 04:32:40 +12:00
just to save a collection of early 2010's flash games you love to play, having the tools to
2019-03-13 11:09:20 +13:00
archive internet content enables to you save the stuff you care most about before it disappears.
2019-03-13 11:52:51 +13:00
<div align="center">
<img src="https://i.imgur.com/bC6eZcV.png" width="50%"/><br/>
<sup><i>Image from <a href="https://digiday.com/media/wtf-link-rot/">WTF is Link Rot?</a>...</i><br/></sup>
</div>
2019-03-13 11:31:05 +13:00
2020-07-24 04:32:40 +12:00
The balance between the permanence and ephemeral nature of content on the internet is part of what makes it beautiful.
2019-03-13 11:53:52 +13:00
I don't think everything should be preserved in an automated fashion, making all content permanent and never removable, but I do think people should be able to decide for themselves and effectively archive specific content that they care about.
2020-10-11 09:00:53 +13:00
Because modern websites are complicated and often rely on dynamic content,
ArchiveBox archives the sites in **several different formats** beyond what public archiving services like Archive.org and Archive.is are capable of saving. Using multiple methods and the market-dominant browser to execute JS ensures we can save even the most complex, finicky websites in at least a few high-quality, long-term data formats.
All the archived links are stored by date bookmarked in `./archive/<timestamp>`, and everything is indexed nicely with JSON & HTML files. The intent is for all the content to be viewable with common software in 50 - 100 years without needing to run ArchiveBox in a VM.
2019-03-13 17:45:01 +13:00
## Comparison to Other Projects
2019-03-13 11:49:11 +13:00
2020-11-23 20:04:39 +13:00
**Check out our [community page](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community) for an index of web archiving initiatives and projects.**
2019-03-19 18:46:01 +13:00
2020-11-23 22:52:54 +13:00
<img src="https://i.imgur.com/4nkFjdv.png" width="10%" align="left" alt="comparison"/> The aim of ArchiveBox is to go beyond what the Wayback Machine and other public archiving services can do, by adding a headless browser to replay sessions accurately, and by automatically extracting all the content in multiple redundant formats that will survive being passed down to historians and archivists through many generations.
2019-03-13 11:09:20 +13:00
2019-03-19 18:42:32 +13:00
#### User Interface & Intended Purpose
2020-11-23 20:04:39 +13:00
ArchiveBox differentiates itself from [similar projects](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community#Web-Archiving-Projects) by being a simple, one-shot CLI interface for users to ingest bulk feeds of URLs over extended periods, as opposed to being a backend service that ingests individual, manually-submitted URLs from a web UI. However, we also have the option to add urls via a web interface through our Django frontend.
2019-03-19 18:25:00 +13:00
2019-03-13 17:45:01 +13:00
#### Private Local Archives vs Centralized Public Archives
2020-07-24 04:32:40 +12:00
Unlike crawler software that starts from a seed URL and works outwards, or public tools like Archive.org designed for users to manually submit links from the public internet, ArchiveBox tries to be a set-and-forget archiver suitable for archiving your entire browsing history, RSS feeds, or bookmarks, ~~including private/authenticated content that you wouldn't otherwise share with a centralized service~~ (do not do this until v0.5 is released with some security fixes). Also by having each user store their own content locally, we can save much larger portions of everyone's browsing history than a shared centralized service would be able to handle.
2019-03-13 17:45:01 +13:00
2019-03-19 18:25:00 +13:00
#### Storage Requirements
2019-03-13 17:45:01 +13:00
2020-07-24 04:32:40 +12:00
Because ArchiveBox is designed to ingest a firehose of browser history and bookmark feeds to a local disk, it can be much more disk-space intensive than a centralized service like the Internet Archive or Archive.today. However, as storage space gets cheaper and compression improves, you should be able to use it continuously over the years without having to delete anything. In my experience, ArchiveBox uses about 5gb per 1000 articles, but your milage may vary depending on which options you have enabled and what types of sites you're archiving. By default, it archives everything in as many formats as possible, meaning it takes more space than a using a single method, but more content is accurately replayable over extended periods of time. Storage requirements can be reduced by using a compressed/deduplicated filesystem like ZFS/BTRFS, or by setting `SAVE_MEDIA=False` to skip audio & video files.
2019-03-13 11:24:15 +13:00
2019-03-31 09:23:51 +13:00
## Learn more
2020-07-24 04:32:40 +12:00
Whether you want to learn which organizations are the big players in the web archiving space, want to find a specific open-source tool for your web archiving need, or just want to see where archivists hang out online, our Community Wiki page serves as an index of the broader web archiving community. Check it out to learn about some of the coolest web archiving projects and communities on the web!
2019-03-13 11:24:15 +13:00
2019-03-13 11:51:00 +13:00
<img src="https://i.imgur.com/0ZOmOvN.png" width="14%" align="right"/>
2019-03-13 11:42:19 +13:00
2020-11-23 20:04:39 +13:00
- [Community Wiki](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community)
- [The Master Lists](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community#The-Master-Lists)
2020-07-24 04:32:40 +12:00
_Community-maintained indexes of archiving tools and institutions._
2020-11-23 20:04:39 +13:00
- [Web Archiving Software](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community#Web-Archiving-Projects)
2020-07-24 04:32:40 +12:00
_Open source tools and projects in the internet archiving space._
2020-11-23 20:04:39 +13:00
- [Reading List](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community#Reading-List)
2020-07-24 04:32:40 +12:00
_Articles, posts, and blogs relevant to ArchiveBox and web archiving in general._
2020-11-23 20:04:39 +13:00
- [Communities](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community#Communities)
2020-07-24 04:32:40 +12:00
_A collection of the most active internet archiving communities and initiatives._
2020-11-23 20:04:39 +13:00
- Check out the ArchiveBox [Roadmap](https://github.com/ArchiveBox/ArchiveBox/wiki/Roadmap) and [Changelog](https://github.com/ArchiveBox/ArchiveBox/wiki/Changelog)
2020-07-24 04:32:40 +12:00
- Learn why archiving the internet is important by reading the "[On the Importance of Web Archiving](https://parameters.ssrc.org/2018/09/on-the-importance-of-web-archiving/)" blog post.
2020-11-23 20:57:38 +13:00
- Or reach out to me for questions and comments via [@ArchiveBoxApp](https://twitter.com/ArchiveBoxApp) or [@theSquashSH](https://twitter.com/thesquashSH) on Twitter.
2020-07-24 04:32:40 +12:00
2019-03-13 12:22:18 +13:00
---
2020-07-24 04:32:40 +12:00
2019-03-13 12:25:10 +13:00
# Documentation
2019-01-23 16:08:27 +13:00
2019-03-13 11:51:00 +13:00
<img src="https://read-the-docs-guidelines.readthedocs-hosted.com/_images/logo-dark.png" width="13%" align="right"/>
2019-03-13 11:29:46 +13:00
2020-11-23 20:04:39 +13:00
We use the [Github wiki system](https://github.com/ArchiveBox/ArchiveBox/wiki) and [Read the Docs](https://archivebox.readthedocs.io/en/latest/) (WIP) for documentation.
2019-01-01 14:16:16 +13:00
2020-11-23 20:04:39 +13:00
You can also access the docs locally by looking in the [`ArchiveBox/docs/`](https://github.com/ArchiveBox/ArchiveBox/wiki/Home) folder.
2019-01-01 15:01:20 +13:00
2019-03-13 12:25:10 +13:00
## Getting Started
2017-05-05 21:10:50 +12:00
2020-11-23 20:04:39 +13:00
- [Quickstart](https://github.com/ArchiveBox/ArchiveBox/wiki/Quickstart)
- [Install](https://github.com/ArchiveBox/ArchiveBox/wiki/Install)
- [Docker](https://github.com/ArchiveBox/ArchiveBox/wiki/Docker)
2017-06-30 17:57:20 +12:00
2019-03-13 12:25:10 +13:00
## Reference
2017-06-30 17:57:20 +12:00
2020-11-23 20:04:39 +13:00
- [Usage](https://github.com/ArchiveBox/ArchiveBox/wiki/Usage)
- [Configuration](https://github.com/ArchiveBox/ArchiveBox/wiki/Configuration)
- [Supported Sources](https://github.com/ArchiveBox/ArchiveBox/wiki/Quickstart#2-get-your-list-of-urls-to-archive)
- [Supported Outputs](https://github.com/ArchiveBox/ArchiveBox/wiki#can-save-these-things-for-each-site)
- [Scheduled Archiving](https://github.com/ArchiveBox/ArchiveBox/wiki/Scheduled-Archiving)
- [Publishing Your Archive](https://github.com/ArchiveBox/ArchiveBox/wiki/Publishing-Your-Archive)
2020-11-27 17:36:37 +13:00
- [Chromium Install](https://github.com/ArchiveBox/ArchiveBox/wiki/Chromium-Install)
2020-11-23 20:04:39 +13:00
- [Security Overview](https://github.com/ArchiveBox/ArchiveBox/wiki/Security-Overview)
- [Troubleshooting](https://github.com/ArchiveBox/ArchiveBox/wiki/Troubleshooting)
2020-10-11 09:00:53 +13:00
- [Python API](https://docs.archivebox.io/en/latest/modules.html)
- REST API (coming soon...)
2017-06-30 17:57:20 +12:00
2019-03-13 12:25:10 +13:00
## More Info
2017-06-30 17:57:20 +12:00
2020-11-23 20:04:39 +13:00
- [Tickets](https://github.com/ArchiveBox/ArchiveBox/issues)
- [Roadmap](https://github.com/ArchiveBox/ArchiveBox/wiki/Roadmap)
- [Changelog](https://github.com/ArchiveBox/ArchiveBox/wiki/Changelog)
- [Donations](https://github.com/ArchiveBox/ArchiveBox/wiki/Donations)
- [Background & Motivation](https://github.com/ArchiveBox/ArchiveBox#background--motivation)
- [Web Archiving Community](https://github.com/ArchiveBox/ArchiveBox/wiki/Web-Archiving-Community)
2019-01-12 01:57:46 +13:00
---
2020-10-11 09:00:53 +13:00
# ArchiveBox Development
2020-11-23 20:04:39 +13:00
All contributions to ArchiveBox are welcomed! Check our [issues](https://github.com/ArchiveBox/ArchiveBox/issues) and [Roadmap](https://github.com/ArchiveBox/ArchiveBox/wiki/Roadmap) for things to work on, and please open an issue to discuss your proposed implementation before working on things! Otherwise we may have to close your PR if it doesn't align with our roadmap.
2020-10-11 09:00:53 +13:00
### Setup the dev environment
2020-10-25 15:23:08 +13:00
First, install the system dependencies from the "Bare Metal" section above.
Then you can clone the ArchiveBox repo and install
2020-10-11 09:00:53 +13:00
```python3
2020-11-23 20:04:39 +13:00
git clone https://github.com/ArchiveBox/ArchiveBox
2020-10-11 09:00:53 +13:00
cd ArchiveBox
git checkout master # or the branch you want to test
git pull
2020-12-04 04:01:58 +13:00
git submodule init
git submodule update
2020-10-11 09:00:53 +13:00
# Install ArchiveBox + python dependencies
python3 -m venv .venv && source .venv/bin/activate && pip install -e .[dev]
# or
pipenv install --dev && pipenv shell
# Install node dependencies
npm install
# Optional: install the extractor dependencies
./bin/setup.sh
2020-11-01 09:33:09 +13:00
# Optional: develop via docker by mounting the code dir into the container
# if you edit e.g. ./archivebox/core/models.py on the docker host, runserver
# inside the container will reload and pick up your changes
docker build . -t archivebox
docker run -it -p 8000:8000 \
-v $PWD/data:/data \
-v $PWD/archivebox:/app/archivebox \
archivebox server 0.0.0.0:8000 --debug --reload
2020-10-11 09:00:53 +13:00
```
2020-10-11 09:43:44 +13:00
### Common development tasks
2020-10-11 09:00:53 +13:00
2020-10-11 09:43:44 +13:00
See the `./bin/` folder and read the source of the bash scripts within.
You can also run all these in Docker. For more examples see the Github Actions CI/CD tests that are run: `.github/workflows/*.yaml`.
2020-10-11 09:00:53 +13:00
2020-10-11 09:43:44 +13:00
#### Run the linters
2020-10-11 09:00:53 +13:00
2020-10-11 09:43:44 +13:00
```bash
./bin/lint.sh
```
(uses `flake8` and `mypy`)
2020-10-11 09:00:53 +13:00
2020-10-11 09:43:44 +13:00
#### Run the integration tests
```bash
./bin/test.sh
2020-10-11 09:00:53 +13:00
```
2020-10-11 09:43:44 +13:00
(uses `pytest -s`)
2020-10-11 09:00:53 +13:00
2020-10-11 09:43:44 +13:00
#### Build the docs, pip package, and docker image
2020-10-11 09:00:53 +13:00
2020-10-11 09:43:44 +13:00
```bash
./bin/build.sh
# or individually:
./bin/build_docs.sh
./bin/build_pip.sh
./bin/build_docker.sh
2020-10-11 09:00:53 +13:00
```
2020-10-11 09:43:44 +13:00
#### Roll a release
```bash
./bin/release.sh
```
(bumps the version, builds, and pushes a release to PyPI, Docker Hub, and Github Packages)
2020-10-11 09:00:53 +13:00
---
2019-01-23 16:18:59 +13:00
<div align="center">
2019-01-23 16:29:23 +13:00
<br/><br/>
2019-01-23 16:35:00 +13:00
<img src="https://raw.githubusercontent.com/Monadical-SAS/redux-time/HEAD/examples/static/jeremy.jpg" height="40px"/>
<br/>
2020-07-29 02:43:46 +12:00
<sub><i>This project is maintained mostly in <a href="https://nicksweeting.com/blog#About">my spare time</a> with the help from generous contributors and Monadical.com.</i></sub>
2019-03-13 11:12:36 +13:00
<br/><br/>
2019-03-13 11:11:08 +13:00
2019-03-13 11:10:51 +13:00
<br/>
<a href="https://github.com/sponsors/pirate">Sponsor us on Github</a>
2020-07-24 04:32:40 +12:00
<br>
<br>
2019-01-23 17:07:10 +13:00
<a href="https://www.patreon.com/theSquashSH"><img src="https://img.shields.io/badge/Donate_to_support_development-via_Patreon-%23DD5D76.svg?style=flat"/></a>
<br/>
2020-07-24 04:32:40 +12:00
2020-11-23 20:57:38 +13:00
<a href="https://twitter.com/ArchiveBoxApp"><img src="https://img.shields.io/badge/Tweet-%40ArchiveBoxApp-blue.svg?style=flat"/></a>
2020-11-23 20:04:39 +13:00
<a href="https://github.com/ArchiveBox/ArchiveBox"><img src="https://img.shields.io/github/stars/ArchiveBox/ArchiveBox.svg?style=flat&label=Star+on+Github"/></a>
2019-03-13 08:22:49 +13:00
<br/><br/>
2019-01-23 16:18:59 +13:00
</div>