mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-09 12:21:57 -04:00

Some checks failed
Run linters / lint (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Build Debian package / build (push) Has been cancelled
Build Docker image / buildx (push) Has been cancelled
Deploy static content to Pages / deploy (push) Has been cancelled
Build Homebrew package / build (push) Has been cancelled
Build GitHub Pages website / build (push) Has been cancelled
Build Pip package / build (push) Has been cancelled
Run tests / python_tests (ubuntu-22.04, 3.11) (push) Has been cancelled
Run tests / docker_tests (push) Has been cancelled
Build GitHub Pages website / deploy (push) Has been cancelled
26 lines
916 B
Python
26 lines
916 B
Python
__package__ = 'abx_plugin_readability'
|
|
|
|
from typing import List
|
|
|
|
from pydantic import InstanceOf
|
|
from abx_pkg import Binary, BinProvider, BinaryOverrides, BinName
|
|
|
|
from abx_plugin_default_binproviders import env
|
|
from abx_plugin_npm.binproviders import SYS_NPM_BINPROVIDER, LIB_NPM_BINPROVIDER
|
|
|
|
from .config import READABILITY_CONFIG
|
|
|
|
|
|
READABILITY_PACKAGE_NAME = 'github:ArchiveBox/readability-extractor'
|
|
|
|
class ReadabilityBinary(Binary):
|
|
name: BinName = READABILITY_CONFIG.READABILITY_BINARY
|
|
binproviders_supported: List[InstanceOf[BinProvider]] = [LIB_NPM_BINPROVIDER, SYS_NPM_BINPROVIDER, env]
|
|
|
|
overrides: BinaryOverrides = {
|
|
LIB_NPM_BINPROVIDER.name: {"packages": [READABILITY_PACKAGE_NAME]},
|
|
SYS_NPM_BINPROVIDER.name: {"packages": [READABILITY_PACKAGE_NAME], "install": lambda: None}, # prevent modifying system global npm packages
|
|
}
|
|
|
|
|
|
READABILITY_BINARY = ReadabilityBinary()
|