1
0
Fork 0
mirror of synced 2024-05-16 10:23:51 +12:00
ArchiveBox/README.md

196 lines
14 KiB
Markdown
Raw Normal View History

2019-01-23 15:58:24 +13:00
<div align="center">
2019-01-28 22:39:21 +13:00
<img src="https://i.imgur.com/4nkFjdv.png" height="80px">
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
2019-01-23 17:46:49 +13:00
▶️ <a href="https://github.com/pirate/ArchiveBox/wiki/Quickstart">Quickstart</a> |
<a href="https://archive.sweeting.me">Demo</a> |
<a href="https://archivebox.io">Website</a> |
<a href="https://github.com/pirate/ArchiveBox">Github</a> |
2019-01-23 17:47:29 +13:00
<a href="https://github.com/pirate/ArchiveBox/wiki">Documentation</a> |
<a href="https://github.com/pirate/ArchiveBox/wiki/Troubleshooting">Troubleshooting</a> |
<a href="https://github.com/pirate/ArchiveBox/wiki/Changelog">Changelog</a> |
<a href="https://github.com/pirate/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
2019-01-23 17:07:10 +13:00
<a href="https://github.com/pirate/ArchiveBox">
2019-01-23 17:53:01 +13:00
<img src="https://img.shields.io/badge/Open_source-free-green.svg?logo=git&logoColor=green"/>
2019-01-26 11:31:01 +13:00
<img src="https://img.shields.io/github/last-commit/pirate/ArchiveBox.svg?logo=Sublime+Text&logoColor=green&label=Active"/>
2019-01-23 17:53:46 +13:00
<img src="https://img.shields.io/badge/License-MIT-lightgreen.svg?logo=MakerBot&logoColor=lightgreen"/>
2019-01-23 17:51:37 +13:00
<img src="https://img.shields.io/github/stars/pirate/ArchiveBox.svg?logo=github&label=Stars&logoColor=blue"/>
2019-01-23 17:07:10 +13:00
<img src="https://img.shields.io/badge/Python-%3E%3D3.5-yellow.svg?logo=python&logoColor=yellow"/>
2019-01-23 23:33:30 +13:00
<img src="https://img.shields.io/badge/Chromium-%3E%3D59-orange.svg?logo=Google+Chrome&logoColor=orange"/>
2019-01-23 17:51:37 +13:00
<img src="https://img.shields.io/badge/Docker-all%20platforms-lightblue.svg?logo=docker&logoColor=lightblue"/>
2019-01-23 17:07:10 +13:00
</a>
2019-01-23 17:49:30 +13:00
<hr/>
2019-01-23 16:00:21 +13:00
</div>
2019-01-26 18:45:44 +13:00
**ArchiveBox takes a list of website URLs you want to archive, and creates a local, static, browsable HTML clone of the content from those websites (it saves HTML, JS, media files, PDFs, images and more).**
2019-01-23 15:31:42 +13:00
2019-03-11 01:29:07 +13:00
You can use it to preserve access to websites you care about by storing them locally offline. ArchiveBox works by rendering the pages in a headless browser, then saving all the requests and fully loaded pages in multiple redundant common formats (HTML, PDF, PNG, WARC) that will last long after the original content disappears off the internet. It also automatically extracts assets like git repositories, audio, video, subtitles, images, and PDFs into separate files using `youtube-dl`, `pywb`, and `wget`.
2019-01-23 20:08:29 +13:00
2019-01-23 17:12:48 +13:00
<div align="center"><sub>. . . . . . . . . . . . . . . . . . . . . . . . . . . .</sub></div><br/>
2019-01-23 17:07:47 +13:00
2019-03-13 11:01:34 +13:00
ArchiveBox doesn't require a constantly running server or backend, instead, you just run the `./archive` command each time you want to import new links and update the static output. It can import and export JSON (among other formats), so it's easy to script or hook up to other APIs. If you run it on a schedule and import from browser history or bookmarks regularly, you can sleep soundly knowing that the slice of the internet you care about will be automatically preserved in multiple, durable long-term formats that will be accessible for decades (or longer).
## Quickstart
2019-01-23 17:24:30 +13:00
2019-03-13 07:52:53 +13:00
ArchiveBox has [3 main dependencies](https://github.com/pirate/ArchiveBox/wiki/Install#dependencies) beyond `python3`: `wget`, `chromium`, and `youtube-dl`.
2019-03-13 10:58:53 +13:00
To get started, you can [install them manually](https://github.com/pirate/ArchiveBox/wiki/Install) using your system's package manager, you can use the [automated helper script](https://github.com/pirate/ArchiveBox/wiki/Quickstart), or you can use the official [Docker](https://github.com/pirate/ArchiveBox/wiki/Docker) container. All three dependencies are optional if the methods that depend on them are [disabled](https://github.com/pirate/ArchiveBox/wiki/Configuration#archive-method-toggles).
2019-03-11 20:53:17 +13:00
2019-01-23 17:24:30 +13:00
```bash
2019-03-13 07:58:52 +13:00
# 1. Install dependencies (use apt on ubuntu, brew on mac, or pkg on BSD)
2019-03-13 10:59:39 +13:00
apt install python3 python3-pip git curl wget youtube-dl chromium-browser
2019-01-23 17:24:30 +13:00
2019-03-13 07:58:52 +13:00
# 2. Download ArchiveBox
2019-03-13 07:50:34 +13:00
git clone https://github.com/pirate/ArchiveBox.git && cd ArchiveBox
2019-01-23 17:24:30 +13:00
2019-03-13 07:58:52 +13:00
# 3. Add your first links to your archive
echo 'https://example.com' | ./archive # pass URLs to archive via stdin
2019-03-13 07:50:34 +13:00
2019-03-13 07:58:52 +13:00
./archive https://getpocket.com/users/example/feed/all # or import an RSS/JSON/XML/TXT feed
2019-01-23 17:24:30 +13:00
```
2019-03-13 07:50:34 +13:00
One you've added your first links, open `output/index.html` in a browser to view the archive. [DEMO: archive.sweeting.me](https://archive.sweeting.me)
2019-03-13 11:02:13 +13:00
For more information, see the [full Quickstart guide](https://github.com/pirate/ArchiveBox/wiki/Quickstart), [Usage](https://github.com/pirate/ArchiveBox/wiki/Usage), and [Configuration](https://github.com/pirate/ArchiveBox/wiki/Configuration) docs.
*(`pip install archivebox` will be available in the near future, follow our [Roadmap](https://github.com/pirate/ArchiveBox/wiki/Roadmap) for progress)*
2019-01-23 17:24:30 +13:00
## Overview
2019-01-23 15:31:42 +13:00
Because modern websites are complicated and often rely on dynamic content,
2019-01-23 17:36:37 +13:00
ArchiveBox archives the sites in **several different formats** beyond what public
archiving services like Archive.org and Archive.is are capable of saving.
2019-01-23 17:09:06 +13:00
2019-03-13 10:58:53 +13:00
ArchiveBox imports a list of URLs from stdin, remote URL, or file, then adds the pages to a local archive folder using wget to create a browsable HTML clone, youtube-dl to extract media, and a full instance of Chrome headless for PDF, Screenshot, and DOM dumps, and more...
2019-01-23 15:31:42 +13:00
2019-02-05 07:59:19 +13:00
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.
2017-07-01 06:17:41 +12:00
2019-01-12 01:56:24 +13:00
### Can import links from:
2018-06-11 10:32:51 +12:00
2019-01-23 17:36:37 +13:00
- <img src="https://getpocket.com/favicon.ico" height="22px"/> Pocket, Pinboard, Instapaper
2019-02-28 07:37:57 +13:00
- <img src="https://nicksweeting.com/images/rss.svg" height="22px"/> RSS, XML, JSON, HTML, Markdown, or plain text lists
2019-01-28 22:45:22 +13:00
- <img src="https://nicksweeting.com/images/bookmarks.png" height="22px"/> Browser history or bookmarks (Chrome, Firefox, Safari, IE, Opera, and more)
2019-01-23 15:40:23 +13:00
- *Shaarli, Delicious, Reddit Saved Posts, Wallabag, Unmark.it, and any other text with links in it!*
2018-06-11 10:32:51 +12:00
2019-01-12 01:56:24 +13:00
### Can save these things for each site:
2018-06-11 10:32:51 +12:00
2019-03-11 20:46:36 +13:00
- **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
2019-03-13 08:49:53 +13:00
- **WARC:** `warc/<timestamp>.gz` gzipped WARC of all the resources fetched while archiving
2019-03-11 20:46:36 +13:00
- **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
2019-03-13 07:50:34 +13:00
- *More coming soon! See the [Roadmap](https://github.com/pirate/ArchiveBox/wiki/Roadmap)...*
2019-01-23 17:36:37 +13:00
2019-03-13 10:58:53 +13:00
By default it does everything but you can disable or tweak [individual options](https://github.com/pirate/ArchiveBox/wiki/Configuration) via environment variables or config file.
2019-01-23 21:06:40 +13:00
2019-03-13 10:58:53 +13:00
The archiving is additive so you can schedule `./archive` to [run regularly](https://github.com/pirate/ArchiveBox/wiki/Scheduled-Archiving) and pull new links into the index.
2019-01-12 01:56:24 +13:00
All the saved content is static and indexed with JSON files, so it lives forever & is easily parseable, it requires no always-running backend.
2017-07-04 22:57:42 +12:00
2019-03-13 11:09:20 +13:00
# Background & Motivation
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.
Whether it's to resist censorship by saving articles before they get taken down or edited, or
just to save a collection of early 2010's flash games you love to play, having the tools to
archive internet content enables to you save the stuff you care most about before it disappears.
The balance between the permanence and ephemeral nature of content on the internet is part of what makes it beautiful.
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.
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.
*Read more:*
- 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.
- Discover the web archiving community on the [community](https://github.com/pirate/ArchiveBox/wiki/Web-Archiving-Community) wiki page.
- Find other archiving projects on Github using the [awesome-web-archiving](https://github.com/iipc/awesome-web-archiving) list.
- Or reach out to me for questions and comments via [@theSquashSH](https://twitter.com/thesquashSH) on Twitter.
To learn more about ArchiveBox's past history and future plans, check out the [roadmap](https://github.com/pirate/ArchiveBox/wiki/Roadmap) and [changelog](https://github.com/pirate/ArchiveBox/wiki/Changelog).
# Related Projects
2019-02-07 12:40:53 +13:00
2019-03-13 10:58:53 +13:00
There are tons of other [great web archiving tools out there](https://github.com/pirate/ArchiveBox/wiki/Web-Archiving-Community). ArchiveBox differentiates itself by trying to be a simple, robust, way for the average tech-savvy user to save sizable portions of the content they view and care about locally. 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 browsing history, RSS feeds, or bookmarks, including private/authenticated content that you wouldn't want to share with a centralized service.
2019-02-07 12:40:53 +13:00
2019-03-13 07:50:34 +13:00
To learn more about the motivation for this project and how it fits into the broader community, see our [Background & Motivation](#background--motivation) section or [Community](https://github.com/pirate/ArchiveBox/wiki/Web-Archiving-Community) wiki page.
2019-02-07 12:40:53 +13:00
2019-01-23 16:58:04 +13:00
# Documentation
2019-01-23 16:08:27 +13:00
2019-01-23 16:09:33 +13:00
2019-01-23 16:58:04 +13:00
<div align="center">
2019-01-23 16:09:33 +13:00
<img src="https://i.imgur.com/PVO88AZ.png"/>
2019-01-23 16:58:04 +13:00
</div>
---
2019-01-01 14:16:16 +13:00
We use the [Github wiki system](https://github.com/pirate/ArchiveBox/wiki) for documentation.
2019-01-01 15:01:20 +13:00
You can also access the docs locally by looking in the [`ArchiveBox/docs/`](https://github.com/pirate/ArchiveBox/wiki/Home) folder.
2019-03-13 11:09:20 +13:00
## Getting Started
2017-05-05 21:10:50 +12:00
2019-03-01 22:20:49 +13:00
- [Home](https://github.com/pirate/ArchiveBox/wiki/Home)
2019-01-01 14:12:17 +13:00
- [Quickstart](https://github.com/pirate/ArchiveBox/wiki/Quickstart)
- [Install](https://github.com/pirate/ArchiveBox/wiki/Install)
2019-01-19 11:45:48 +13:00
- [Docker](https://github.com/pirate/ArchiveBox/wiki/Docker)
2017-06-30 17:57:20 +12:00
2019-03-13 11:09:20 +13:00
## Reference
2017-06-30 17:57:20 +12:00
2019-01-15 13:12:08 +13:00
- [Usage](https://github.com/pirate/ArchiveBox/wiki/Usage)
2019-01-01 14:12:17 +13:00
- [Configuration](https://github.com/pirate/ArchiveBox/wiki/Configuration)
2019-03-01 22:20:49 +13:00
- [Supported Sources](https://github.com/pirate/ArchiveBox/wiki/Quickstart#2-get-your-list-of-urls-to-archive)
- [Supported Outputs](https://github.com/pirate/ArchiveBox/wiki#can-save-these-things-for-each-site)
2019-03-01 22:21:49 +13:00
- [Scheduled Archiving](https://github.com/pirate/ArchiveBox/wiki/Scheduled-Archiving)
2019-01-01 14:12:17 +13:00
- [Publishing Your Archive](https://github.com/pirate/ArchiveBox/wiki/Publishing-Your-Archive)
2019-03-01 22:21:49 +13:00
- [Chromium Install](https://github.com/pirate/ArchiveBox/wiki/Install-Chromium)
2019-01-01 14:12:17 +13:00
- [Troubleshooting](https://github.com/pirate/ArchiveBox/wiki/Troubleshooting)
2017-06-30 17:57:20 +12:00
2019-03-13 11:09:20 +13:00
## More Info
2017-06-30 17:57:20 +12:00
2019-01-01 14:12:17 +13:00
- [Roadmap](https://github.com/pirate/ArchiveBox/wiki/Roadmap)
- [Changelog](https://github.com/pirate/ArchiveBox/wiki/Changelog)
- [Donations](https://github.com/pirate/ArchiveBox/wiki/Donations)
2019-03-01 22:21:49 +13:00
- [Web Archiving Community](https://github.com/pirate/ArchiveBox/wiki/Web-Archiving-Community)
2019-01-01 15:04:41 +13:00
2019-01-23 15:48:48 +13:00
2019-01-01 15:04:41 +13:00
# Screenshots
2019-01-30 17:11:10 +13:00
<img src="https://i.imgur.com/viklZNG.png" width="75%" alt="Desktop index screenshot" align="top"><img src="https://i.imgur.com/mW2dITg.png" width="25%" alt="Mobile details page screenshot" align="top"><br/>
2019-01-30 17:07:48 +13:00
<img src="https://i.imgur.com/wnpdAVM.jpg" width="100%" alt="Desktop details page Screenshot"/><br/>
2019-01-01 15:04:41 +13:00
<img src="https://i.imgur.com/3tBL7PU.png" width="100%" alt="CLI Screenshot">
2019-01-12 01:57:46 +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/>
2019-03-13 11:15:15 +13: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.</i></sub>
2019-03-13 11:12:36 +13:00
<br/><br/>
2019-03-13 11:13:35 +13:00
Contributor Spotlight:<br/><br/>
2019-03-13 11:11:08 +13:00
2019-03-13 11:10:51 +13:00
[![](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/images/0)](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/links/0)[![](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/images/1)](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/links/1)[![](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/images/2)](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/links/2)[![](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/images/3)](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/links/3)[![](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/images/4)](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/links/4)[![](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/images/5)](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/links/5)[![](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/images/6)](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/links/6)[![](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/images/7)](https://sourcerer.io/fame/pirate/pirate/ArchiveBox/links/7)
2019-03-13 11:11:08 +13:00
2019-03-13 11:10:51 +13:00
<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/>
<br/>
<a href="https://twitter.com/thesquashSH"><img src="https://img.shields.io/badge/Tweet-%40theSquashSH-blue.svg?style=flat"/></a>
<a href="https://github.com/pirate/ArchiveBox"><img src="https://img.shields.io/github/stars/pirate/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>