Skip to main content

Anchor your little piece of internet.

Project description

Anchorage

alt text

As the internet ages, link rot takes over larger and larger swathes of it, bringing with it the disappearance of interesting reads, courses and resources and much more that many of us treasure. Anchorage is an attempt to let you save your little corner for good :)

Anchorage is a Python library and CLI to bulk archive your bookmark collection easily and without friction. It allows you to retrieve your bookmark collection from your browser of choice, filter out duplicates, local files and entries matching string, substring and regex searches, and archive the whole thing: online in the Internet Archive or locally, using ArchiveBox.

Read on for the Anchorage user's manual. The full Python API documentation is available here.

alt text

Table of Contents

1. Introduction

3. Requirements & Install

4. Anchorage configuration

4. Anchorage CLI

6. Python API

6.1 Anchorage configuration

6.3 Bookmark retrieval

6.3 Archiving


1. Introduction

What follows is the Anchorage user's manual.

First it will deal with the requirements and install of the library, and then with its configuration, the Anchorage CLI and its Python API. A thorough documentation of each API method is available in the docs site.

2. Requirements & Install

A working Docker install is the only requirement, beyond Python and Anchorage's dependencies. Without Docker: Docker is used to run ArchiveBox, via a provided docker-compose file. Without Docker Anchorage will not be able to archive your collection locally, but it will still be able to save it online in the Internet Archive.

Anchorage can be installed using pip as any Python package. Its dependencies will be downloaded automatically.

pip install anchorage

3. Anchorage configuration

To access a browser's bookmarks file, Anchorage stores its location in its configuration file:

~/.anchorage/config.toml

There's an example config.toml in this repo for reference.

To add a new browser simply add a new top-level key, followed by its bookmark file paths. Anchorage only needs the path in your operating system to work.

[<browser name>]
linux = <path>
macos = <path>
windows = <path>

Importantly:

  • Linux and MacOS paths are stored in full.
  • Windows paths are stored from the AppData directory.

The default config.toml contains the bookmark file paths for Google Chrome, Mozilla Firefox and Microsoft Edge and Edge Beta for Windows only. To use Anchorage in Linux or MacOS add the bookmark file path of your browser of choice to your config.toml.

Editing the Anchorage config file

The config file can be edited just as any other. New browsers will automatically be listed in the CLI.

Importantly:

  • Set unknown bookmark file paths to "?". That way the CLI will recognize those as unknown and behave appropriately.

alt text

4. Anchorage CLI

The CLI will guide you through retrieving your bookmarks from your browser of choice, applying filters to you bookmark collection and archiving your bookmarks in the Internet Archive or locally, using ArchiveBox.

To start the CLI open your shell and type

anchorage

You will be asked whether you're ready to proceed. On the ok it will ensure all dependencies are present.

1. Config check

If a config file is found, you will be prompted to choose whether to keep the current config or overwrite it with the default one.

2. Browser choice

You will be prompted to choose which browser to retrieve your bookmark collection from. The browser choices are sourced from config.toml. Refer to section 3 for editing it to add a missing browser or enter the path to the bookmarks file of your browser, if it's missing (equal to "?").

3. Applying filters to the collection

Filters can be applied to your bookmark collection before archiving. Any or all of four filters can be chosen, one specific for URLs:

  • Local files: remove local URLs (say, PDFs stored in your computer) from the collection.

and three general:

  • Match string: remove bookmark URLs, names or bookmark directories matching a provided string or any string in a string list.
  • Match substring: remove bookmark URLs, names or bookmark directories containing a provided string or any string in a string list.
  • Regex: remove bookmark URLs, names or bookmark directories matching a provided regex formula.

For each you will be prompted to choose to apply it to any or all of the previous.

4. Archive choice

You will be then asked to choose whether to archive your collection online or locally.

Online

By default websites will not be archived if a previous image exists in The Internet Archive. This is to save time: we rest easy as a those sites are saved already at some point. In case you want to save a current snapshot of the colection, you will be prompted whether to override this and archive all sites in the collection regardless. This may take significantly longer. Based on your choice, you will be given an estimate of the archive time.

Local

To archive your collection locally you will be prompted for an archive directory.

5. Run

After a last confirmation the process will begin. A progress bar will inform you of how far the process is from finishing, how many bookmarks have been saved and provide a dynamic estimate of the time remaining before the process is finished.

5. Python API: user's guide

The full documentation of the Anchorage API is available in the docs site.

5.1 Anchorage configuration

Generate the Anchorage config file with the init command.

from anchorage import init

init()

5.2 Bookmark retrieval

Three methods are relevant:

  • path(<browser>): obtain the path to your chosen browser's bookmarks file (in your OS) from config.toml.
  • load(<path>): read your chosen browser's JSON or JSONLZ4 bookmarks file and return a Python dictionary.
  • bookmarks(<dict>): create an instance of the bookmarks class.

The bookmarks class creates a second bookmarks dictionary more suitable for our intent, and contains methods to filter and loop through the collection. Filters can be applied as seen below.

from anchorage import path, load, bookmarks

collection = bookmarks(load(path(<browser name>)),
                       drop_local_files= <boolean>,
                       drop_dirs=        <string or list of strings>,
                       drop_names=       <string or list of strings>,
                       drop_urls=        <string or list of strings>,
                       drop_dirs_subs=   <string or list of strings>,
                       drop_names_subs=  <string or list of strings>,
                       drop_urls_subs=   <string or list of strings>,
                       drop_dirs_regex=  <string>,
                       drop_names_regex= <string>,
                       drop_urls_regex=  <string>
                       )

5.3 Archiving

Input: bookmarks instance or bookmark dictionary returned by load.

Online

from anchorage import anchor_online

anchor_online(bookmarks, overwrite=<bool>)

The overwrite parameter determines whether to save snapshots of sites already present in the Internet Archive or not.

Locally

from anchorage import anchor_locally

anchor_locally(bookmarks, archive=<dir>)

The archive parameter specifies the directory in which to create the local archive.

Running the ArchiveBox default NGINX server can be done with the following command.

from anchorage import server

server()

Back to top

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anchorage-1.2.1.0.tar.gz (21.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page