It's 2022 and you need a Palm!
This is an updated version of the Python based Plucker parser from the original repository. The parser downloads your favorite web pages or converts local files for the Plucker app.
Updates from the original parser:
- Has been ported to Python 3
- Some legacy bits have been removed: OS/2 support, non-working image parser versions
- The default image parser is now based on Pillow which doesn't require any third-party dependencies and adds WebP support as a bonus.
pip install PyPlucker
Optionally, populate the example config file and home.html
:
cp examples/pluckerrc ~/.pluckerrc
mkdir ~/.plucker
cp examples/home.html ~/.plucker/
plucker-build --bpp=4 --maxdepth=1 --doc-file=PythonCompileAllDoc -H https://docs.python.org/3/library/compileall.html
See ~/.pluckerrc
for the options and parameters.
Since it's been a while since Plucker's HTML processing and cleanup code was last updated, it's a good idea to run more complex pages through a modern Readability filter like percollate first. See examples/pluck.sh
for a working script.
- Original Python 2 version