49

GitHub - pirate/ArchiveBox: ? The open source self-hosted web archive. Takes bro...

 6 years ago
source link: https://github.com/pirate/ArchiveBox
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

README.md

68747470733a2f2f692e696d6775722e636f6d2f346e6b466a64762e706e67

ArchiveBox
The open-source self-hosted web archive.

▶️Quickstart | Demo | Website | Github | Documentation | Troubleshooting | Changelog | Roadmap

"Your own personal internet archive" (网站存档 / 爬虫)
68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4f70656e5f736f757263652d667265652d677265656e2e7376673f6c6f676f3d676974266c6f676f436f6c6f723d677265656e68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6173742d636f6d6d69742f7069726174652f41726368697665426f782e7376673f6c6f676f3d5375626c696d652b54657874266c6f676f436f6c6f723d677265656e266c6162656c3d41637469766568747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d6c69676874677265656e2e7376673f6c6f676f3d4d616b6572426f74266c6f676f436f6c6f723d6c69676874677265656e68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f7069726174652f41726368697665426f782e7376673f6c6f676f3d676974687562266c6162656c3d5374617273266c6f676f436f6c6f723d626c756568747470733a2f2f696d672e736869656c64732e696f2f62616467652f507974686f6e2d253345253344332e352d79656c6c6f772e7376673f6c6f676f3d707974686f6e266c6f676f436f6c6f723d79656c6c6f7768747470733a2f2f696d672e736869656c64732e696f2f62616467652f4368726f6d69756d2d25334525334435392d6f72616e67652e7376673f6c6f676f3d476f6f676c652b4368726f6d65266c6f676f436f6c6f723d6f72616e676568747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f636b65722d616c6c253230706c6174666f726d732d6c69676874626c75652e7376673f6c6f676f3d646f636b6572266c6f676f436f6c6f723d6c69676874626c7565

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).

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 dissapears 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.

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).

. . . . . . . . . . . . . . . . . . . . . . . . . . . .

To get started, you can install ArchiveBox automatically, follow the manual instructions, or use Docker.
There are only 3 main dependencies beyond python3: wget, chromium, and youtube-dl, and you can skip installing them if you don't need those archive methods.

git clone https://github.com/pirate/ArchiveBox.git
cd ArchiveBox
./setup

# Export your bookmarks, then run the archive command to start archiving!
./archive ~/Downloads/bookmarks.html

# Or pass in links to archive via stdin
echo 'https://example.com' | ./archive

Open output/index.html in a browser to view your archive. DEMO: archive.sweeting.me
For more information, see the Quickstart, Usage, and Configuration docs.

Overview

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.

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...

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.

Can import links from:

  • 68747470733a2f2f676574706f636b65742e636f6d2f66617669636f6e2e69636f Pocket, Pinboard, Instapaper
  • 68747470733a2f2f6e69636b7377656574696e672e636f6d2f696d616765732f7273732e737667 RSS, XML, JSON, or plain text lists
  • 68747470733a2f2f6e69636b7377656574696e672e636f6d2f696d616765732f626f6f6b6d61726b732e706e67 Browser history or bookmarks (Chrome, Firefox, Safari, IE, Opera, and more)
  • Shaarli, Delicious, Reddit Saved Posts, Wallabag, Unmark.it, and any other text with links in it!

Can save these things for each site:

  • favicon.ico favicon of the site
  • example.com/page-name.html wget clone of the site, with .html appended if not present
  • output.pdf Printed PDF of site using headless chrome
  • screenshot.png 1440x900 screenshot of site using headless chrome
  • output.html DOM Dump of the HTML after rendering using headless chrome
  • archive.org.txt A link to the saved site on archive.org
  • warc/ for the html + gzipped warc file .gz
  • media/ any mp4, mp3, subtitles, and metadata found using youtube-dl
  • git/ clone of any repository for github, bitbucket, or gitlab links
  • index.html & index.json HTML and JSON index files containing metadata and details

By default it does everything, but can disable or tweak individual options via environment variables or config file.

The archiving is additive, so you can schedule ./archive to run regularly and pull new links into the index. All the saved content is static and indexed with JSON files, so it lives forever & is easily parseable, it requires no always-running backend.

Documentation

68747470733a2f2f692e696d6775722e636f6d2f50564f3838415a2e706e67
(Recently renamed from Bookmark Archiver)

We use the Github wiki system for documentation.

You can also access the docs locally by looking in the ArchiveBox/docs/ folder.

Getting Started

Reference

More Info

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 editied, 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 dissapears.

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:

To learn more about ArchiveBox's past history and future plans, check out the roadmap and changelog.

Screenshots

Desktop index screenshotMobile details page screenshot
Desktop details page Screenshot
CLI Screenshot




jeremy.jpg
This project is maintained mostly in my spare time with the help from generous contributors.

68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f6e6174655f746f5f737570706f72745f646576656c6f706d656e742d7669615f50617472656f6e2d2532334444354437362e7376673f7374796c653d666c6174

68747470733a2f2f696d672e736869656c64732e696f2f62616467652f54776565742d25343074686553717561736853482d626c75652e7376673f7374796c653d666c6174 68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f7069726174652f41726368697665426f782e7376673f7374796c653d666c6174266c6162656c3d537461722b6f6e2b476974687562

Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK