1
0
Fork 0
mirror of synced 2024-05-17 10:53:34 +12:00
ArchiveBox/README.md

152 lines
8.7 KiB
Markdown
Raw Normal View History

2017-06-16 10:58:03 +12:00
# Bookmark Archiver <img src="https://getpocket.com/favicon.ico" height="22px"/> <img src="https://pinboard.in/favicon.ico" height="22px"/> <img src="https://nicksweeting.com/images/bookmarks.png" height="22px"/> [![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/thesquashSH)
2017-06-16 11:42:22 +12:00
**Browser Bookmarks (Chrome, Firefox, Safari, IE, Opera), Pocket, Pinboard, Shaarli, Delicious, Instapaper, Unmark.it**
2017-05-05 21:10:50 +12:00
2017-05-30 11:53:08 +12:00
(Your own personal Way-Back Machine) [DEMO: sweeting.me/pocket](https://home.sweeting.me/pocket)
2017-05-05 21:15:19 +12:00
2017-06-16 11:31:33 +12:00
Save an archived copy of all websites you star.
Outputs browsable html archives of each site, a PDF, a screenshot, and a link to a copy on archive.org, all indexed in a nice html file.
2017-06-16 10:58:03 +12:00
2017-06-28 08:06:31 +12:00
(Powered by the [headless](https://developers.google.com/web/updates/2017/04/headless-chrome) Chromium and good 'ol `wget`.)
2017-05-30 11:38:05 +12:00
NEW: Also submits each link to save on archive.org!
2017-05-05 21:10:50 +12:00
![](screenshot.png)
## Quickstart
2017-05-30 11:53:08 +12:00
```bash
2017-06-16 11:31:33 +12:00
./archive.py bookmark_export.html
2017-05-30 11:53:08 +12:00
```
2017-05-05 22:56:12 +12:00
2017-06-16 11:37:39 +12:00
`archive.py` is a script that takes a [Pocket-format](https://getpocket.com/export), [Pinboard-format](https://pinboard.in/export/), or [Netscape-format](https://msdn.microsoft.com/en-us/library/aa753582(v=vs.85).aspx) bookmark export file, and turns it into a browsable archive that you can store locally or host online.
2017-05-05 21:56:11 +12:00
2017-06-28 08:06:31 +12:00
**1. Install dependencies:** `chromium >= 59`,` wget >= 1.16`, `python3 >= 3.5` (google-chrome >= v59 also works well, no need to install chromium if you already have Google Chrome installed)
2017-05-05 21:10:50 +12:00
```bash
2017-05-05 23:36:17 +12:00
# On Mac:
2017-06-28 08:06:31 +12:00
brew install Caskroom/versions/google-chrome-canary wget python3 # or chromium, up to you
echo -e '#!/bin/bash\n/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary "$@"' > /usr/local/bin/google-chrome
2017-05-06 16:18:34 +12:00
chmod +x /usr/local/bin/google-chrome
2017-05-30 11:53:08 +12:00
2017-05-05 23:36:17 +12:00
# On Linux:
2017-05-05 21:10:50 +12:00
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
2017-05-06 04:23:40 +12:00
apt update; apt install google-chrome-beta python3 wget
2017-05-30 11:53:08 +12:00
2017-05-06 16:21:30 +12:00
# Check:
google-chrome --version && which wget && which python3 && echo "[√] All dependencies installed."
2017-05-05 21:10:50 +12:00
```
2017-05-30 06:05:16 +12:00
2017-05-30 11:53:08 +12:00
**2. Run the archive script:**
2017-05-05 21:10:50 +12:00
2017-06-16 11:42:22 +12:00
1. Get your HTML export file from [Pocket](https://getpocket.com/export), [Pinboard](https://pinboard.in/export/), [Instapaper](https://www.instapaper.com/user/export), [Shaarli](http://sebsauvage.net/wiki/lib/exe/fetch.php?media=php:php_shaarli:shaarli_cap16_dragbutton.png), [Unmark.it](http://help.unmark.it/import-export), [Chrome Bookmarks](https://support.google.com/chrome/answer/96816?hl=en), [Firefox Bookmarks](https://support.mozilla.org/en-US/kb/export-firefox-bookmarks-to-backup-or-transfer), [Safari Bookmarks](http://i.imgur.com/AtcvUZA.png), [Opera Bookmarks](http://help.opera.com/Windows/12.10/en/importexport.html), [Internet Explorer Bookmarks](https://support.microsoft.com/en-us/help/211089/how-to-import-and-export-the-internet-explorer-favorites-folder-to-a-32-bit-version-of-windows)
2017-06-16 10:50:13 +12:00
2. Clone this repo `git clone https://github.com/pirate/bookmark-archiver`
3. `cd bookmark-archiver/`
2017-06-16 11:31:33 +12:00
4. `./archive.py ~/Downloads/bookmarks_export.html`
You may optionally specify a third argument to `archive.py export.html [pocket|pinboard|bookmarks]` to enforce the use of a specific link parser.
2017-05-05 21:10:50 +12:00
2017-05-30 12:06:50 +12:00
It produces a folder like `pocket/` containing an `index.html`, and archived copies of all the sites,
2017-05-30 12:05:20 +12:00
organized by starred timestamp. For each sites it saves:
2017-05-05 21:15:19 +12:00
2017-05-05 21:21:35 +12:00
- wget of site, e.g. `en.wikipedia.org/wiki/Example.html` with .html appended if not present
- `sreenshot.png` 1440x900 screenshot of site using headless chrome
- `output.pdf` Printed PDF of site using headless chrome
2017-05-30 06:05:16 +12:00
- `archive.org.txt` A link to the saved site on archive.org
2017-05-05 21:10:50 +12:00
2017-05-30 12:05:20 +12:00
You can tweak parameters like screenshot size, file paths, timeouts, dependencies, at the top of `archive.py`.
2017-05-05 21:54:31 +12:00
You can also tweak the outputted html index in `index_template.html`. It just uses python
format strings (not a proper templating engine like jinja2), which is why the CSS is double-bracketed `{{...}}`.
2017-05-05 21:52:07 +12:00
2017-05-30 11:53:08 +12:00
**Estimated Runtime:** I've found it takes about an hour to download 1000 articles, and they'll take up roughly 1GB.
2017-06-16 10:48:20 +12:00
Those numbers are from running it single-threaded on my i5 machine with 50mbps down. YMMV. Users have also reported
running it with 50k+ bookmarks with success (though it will take more RAM while running).
2017-05-30 11:53:08 +12:00
**Troubleshooting:**
On some Linux distributions the python3 package might not be recent enough.
If this is the case for you, resort to installing a recent enough version manually.
```bash
add-apt-repository ppa:fkrull/deadsnakes && apt update && apt install python3.6
```
If you still need help, [the official Python docs](https://docs.python.org/3.6/using/unix.html) are a good place to start.
To switch from Google Chrome to chromium, change the `CHROME_BINARY` variable at the top of `archive.py`.
If you're missing `wget` or `curl`, simply install them using `apt` or your package manager of choice.
**Live Updating:** (coming soon... maybe...)
2017-05-05 22:56:12 +12:00
2017-05-23 03:35:20 +12:00
It's possible to pull links via the pocket API or public pocket RSS feeds instead of downloading an html export.
2017-05-05 22:56:12 +12:00
Once I write a script to do that, we can stick this in `cron` and have it auto-update on it's own.
For now you just have to download `ril_export.html` and run `archive.py` each time it updates. The script
will run fast subsequent times because it only downloads new links that haven't been archived already.
2017-05-05 21:19:25 +12:00
## Publishing Your Archive
2017-05-06 12:42:12 +12:00
The archive is suitable for serving on your personal server, you can upload the
2017-05-30 12:06:50 +12:00
archive to `/var/www/pocket` and allow people to access your saved copies of sites.
2017-05-05 21:10:50 +12:00
2017-05-05 21:19:25 +12:00
Just stick this in your nginx config to properly serve the wget-archived sites:
```nginx
2017-05-30 12:06:50 +12:00
location /pocket/ {
alias /var/www/pocket/;
2017-05-05 23:11:43 +12:00
index index.html;
autoindex on;
try_files $uri $uri/ $uri.html =404;
2017-05-05 21:19:25 +12:00
}
```
Make sure you're not running any content as CGI or PHP, you only want to serve static files!
2017-05-30 12:05:20 +12:00
Urls look like: `https://sweeting.me/archive/archive/1493350273/en.wikipedia.org/wiki/Dining_philosophers_problem`
2017-05-05 21:19:25 +12:00
2017-05-05 21:10:50 +12:00
## Info
2017-05-05 21:30:07 +12:00
This is basically an open-source version of [Pocket Premium](https://getpocket.com/premium) (which you should consider paying for!).
2017-05-05 21:15:19 +12:00
I got tired of sites I saved going offline or changing their URLS, so I started
archiving a copy of them locally now, similar to The Way-Back Machine provided
2017-05-06 01:26:40 +12:00
by [archive.org](https://archive.org). Self hosting your own archive allows you to save
PDFs & Screenshots of dynamic sites in addition to static html, something archive.org doesn't do.
2017-05-05 21:10:50 +12:00
Now I can rest soundly knowing important articles and resources I like wont dissapear off the internet.
2017-05-05 21:30:07 +12:00
My published archive as an example: [sweeting.me/pocket](https://home.sweeting.me/pocket).
2017-05-05 21:15:19 +12:00
2017-05-30 11:53:08 +12:00
## Security WARNING & Content Disclaimer
2017-05-05 21:10:50 +12:00
Hosting other people's site content has security implications for your domain, make sure you understand
2017-05-05 23:11:43 +12:00
the dangers of hosting other people's CSS & JS files [on your domain](https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy). It's best to put this on a domain
of its own to slightly mitigate [CSRF attacks](https://en.wikipedia.org/wiki/Cross-site_request_forgery).
2017-05-05 21:10:50 +12:00
2017-05-30 11:53:08 +12:00
You may also want to blacklist your archive in your `/robots.txt` so that search engines dont index
2017-05-05 21:10:50 +12:00
the content on your domain.
2017-05-05 21:30:07 +12:00
2017-05-30 11:53:08 +12:00
Be aware that some sites you archive may not allow you to rehost their content publicly for copyright reasons,
it's up to you to host responsibly and respond to takedown requests appropriately.
2017-05-05 21:30:07 +12:00
## TODO
- body text extraction using [fathom](https://hacks.mozilla.org/2017/04/fathom-a-framework-for-understanding-web-pages/)
- auto-tagging based on important extracted words
- audio & video archiving with `youtube-dl`
- full-text indexing with elasticsearch
- video closed-caption downloading for full-text indexing video content
- automatic text summaries of article with summarization library
- feature image extraction
- http support (from my https-only domain)
2017-05-30 11:53:08 +12:00
- try wgetting dead sites from archive.org (https://github.com/hartator/wayback-machine-downloader)
2017-05-06 12:42:12 +12:00
## Links
- [Hacker News Discussion](https://news.ycombinator.com/item?id=14272133)
2017-05-30 11:53:08 +12:00
- [Reddit r/selfhosted Discussion](https://www.reddit.com/r/selfhosted/comments/69eoi3/pocket_stream_archive_your_own_personal_wayback/)
- [Reddit r/datahoarder Discussion](https://www.reddit.com/r/DataHoarder/comments/69e6i9/archive_a_browseable_copy_of_your_saved_pocket/)
2017-05-06 12:42:12 +12:00
- https://wallabag.org + https://github.com/wallabag/wallabag
- https://webrecorder.io/
- https://github.com/ikreymer/webarchiveplayer#auto-load-warcs
2017-06-16 09:41:55 +12:00
- [Shaarchiver](https://github.com/nodiscc/shaarchiver) very similar project that archives Firefox, Shaarli, or Delicious bookmarks and all linked media, generating a markdown/HTML index