The toolset used to produce Libro.org epub ebooks.
Project description
About
A collection of tools Libro.org uses to produce its ebooks, including basic setup of ebooks, text processing, and build tools.
Forked from Standard Ebooks tools.
Installing this toolset using pipx makes the libro command line executable available. Its various commands are described below, or you can use libro help to list them.
Project status
| Feature | Status |
|---|---|
| adapt commands to Spanish | WIP |
| Libro.org skeleton | WIP |
| shell completions | TO-DO |
Installation
The toolset requires Python >= 3.6.
To install the toolset locally for development and debugging, see Installation for Developers.
Ubuntu 20.04 (Trusty) users
# Install some pre-flight dependencies.
sudo apt install -y calibre default-jre git python3-dev python3-pip python3-venv
# Install pipx.
python3 -m pip install --user pipx
python3 -m pipx ensurepath
# Install the toolset.
pipx install libro-org
Optional: Install shell completions
# Install ZSH completions.
sudo ln -s $HOME/.local/pipx/venvs/standardebooks/lib/python3.*/site-packages/se/completions/zsh/_se /usr/share/zsh/vendor-completions/_se && hash -rf && compinit
# Install Bash completions.
sudo ln -s $HOME/.local/pipx/venvs/standardebooks/lib/python3.*/site-packages/se/completions/bash/se /usr/share/bash-completion/completions/se
# Install Fish completions.
sudo ln -s $HOME/.local/pipx/venvs/standardebooks/lib/python3.*/site-packages/se/completions/fish/se $HOME/.config/fish/completions/se.fish
Fedora users
# Install some pre-flight dependencies.
sudo dnf install calibre git java-1.8.0-openjdk python3-devel vim
# Install pipx.
python3 -m pip install --user pipx
python3 -m pipx ensurepath
# Install the toolset.
pipx install libro-org
Optional: Install shell completions
# Install ZSH completions.
sudo ln -s $HOME/.local/pipx/venvs/standardebooks/lib/python3.*/site-packages/se/completions/zsh/_se /usr/share/zsh/vendor-completions/_se && hash -rf && compinit
# Install Bash completions.
sudo ln -s $HOME/.local/pipx/venvs/standardebooks/lib/python3.*/site-packages/se/completions/bash/se /usr/share/bash-completion/completions/se
# Install Fish completions.
sudo ln -s $HOME/.local/pipx/venvs/standardebooks/lib/python3.*/site-packages/se/completions/fish/se $HOME/.config/fish/completions/se.fish
macOS users (up to macOS 10.15)
These instructions were tested on macOS 10.12 to 10.16, on Intel macs.
-
Install the Homebrew package manager. Or, if you already have it installed, make sure it’s up to date:
brew update -
Install dependencies:
# Install some pre-flight dependencies. brew install cairo calibre git openjdk pipx python pipx ensurepath sudo ln -sfn /usr/local/opt/openjdk/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk.jdk # Install the toolset. pipx install libro-org # Optional: Bash users who have set up bash-completion via brew can install tab completion. ln -s $HOME/.local/pipx/venvs/standardebooks/lib/python3.*/site-packages/se/completions/bash/se $(brew --prefix)/etc/bash_completion.d/se # Optional: Fish users can install tab completion. ln -s $HOME/.local/pipx/venvs/standardebooks/lib/python3.*/site-packages/se/completions/fish/se $HOME/.config/fish/completions/se.fish
OpenBSD 6.6 Users
These instructions were tested on OpenBSD 6.6, but may also work on the 6.5 release as well.
-
Create a text file to feed into
pkg_addcalled~/standard-ebooks-packages. It should contain the following:```shell py3-pip-- py3-virtualenv-- py3-gitdb-- jdk--%11 calibre-- git-- vim-- ```Optionally, replace
vim--withvim--gtk3to include gvim for its Unicode editing features. -
Install dependencies using
doas pkg_add -ivl ~/standard-ebooks-packages. Follow linking instructions provided bypkg_addto save keystrokes, unless you want to have multiple python versions and pip versions. In my case, I randoas ln -sf /usr/local/bin/pip3.7 /usr/local/bin/pip. -
Add
~/.local/binto your path. -
Run
pip install --user pipx -
If you’re using
kshfrom base and have already added~/.local/bin, you can skippipx ensurepathbecause this step is forbashusers. -
The rest of the process is similar to that used on other platforms:
# Install the toolset. pipx install libro-org
Installation for developers
If you want to work on the toolset source, it’s helpful to tell pipx to install the package in “editable” mode. This will allow you to edit the source of the package live and see changes immediately, without having to uninstall and re-install the package.
To do that, follow the general installation instructions above; but instead of doing pipx install libro-org, do the following:
git clone https://github.com/Libro-Org/tools.git
pipx install --editable ./tools
Now the libro binary is in your path, and any edits you make to source files in the tools/ directory are immediately reflected when executing the binary.
Running commands on the entire corpus
As a developer, it’s often useful to run an libro command like libro lint or libro build on the entire corpus for testing purposes. This can be very time-consuming in a regular invocation (like libro lint /path/to/ebook/repos/*), because each argument is processed sequentially. Instead of waiting for a single invocation to process all of its arguments sequentially, use GNU Parallel to start multiple invocations in parallel, with each one processing a single argument. For example:
# Slow, each argument is processed in sequence
se lint /path/to/ebook/repos/*
# Fast, multiple invocations each process a single argument in parallel
export COLUMNS; parallel --keep-order se lint ::: /path/to/ebook/repos/*
The toolset tries to detect when it’s being invoked from parallel, and it adjusts its output to accomodate.
We export COLUMNS because libro lint needs to know the width of the terminal so that it can format its tabular output correctly. We pass the --keep-order flag to output results in the order we passed them in, which is useful if comparing the results of multiple runs.
Linting with pylint and mypy
Before we can use pylint or mypy on the toolset source, we have to inject them into the venv pipx created for the libro-org package:
pipx inject libro-org pylint mypy
Then make sure to call the pylint and mypy binaries that pipx installed in the libro-org venv, not any other globally-installed binaries:
cd /path/to/tools/repo
$HOME/.local/pipx/venvs/libro-org/bin/pylint se
Testing with pytest
Similar to pylint, the pytest command can be injected into the venv pipx created for the standardebooks package:
pipx inject libro-org pytest
The tests are executed by calling pytest from the top level or your tools repo:
cd /path/to/tools/repo
$HOME/.local/pipx/venvs/libro-org/bin/pytest
Adding tests
Tests are added under the tests directory. Most of the tests are based around the idea of having “golden” output files. Each command is run against a set of input files and then the resulting output files are compared against the resulting golden files. The test fails if the output files do not match the golden files. The data files can be found in the tests/data directory.
A custom test flag --save-golden-files has been added to automatically update the the golden files for the tests (in an out directory for the command).
The usual test development process is:
- Update
infiles with new test data and/or change the command implementation. - Run
pytestand see some tests fail. - Run
pytest --save-golden-filesand then diff the data directory to ensure that theoutfiles are as expected. - Commit changes (including new
outcontents).
Another custom test flag --save-new-draft is also available. This flag is used to update the book skeleton, generated by the libro create-draft command, that is used as input for the other tests. Whenever the draft contents change (e.g. edits to the core.css file) the tests/data/draft files should be updated by calling pytest --save-new-draft.
Code style
-
In general we follow a relaxed version of PEP 8. In particular, we use tabs instead of spaces, and there is no line length limit.
-
Always use the
regexmodule instead of theremodule.
Help wanted
We need volunteers to take the lead on the following goals:
-
Add more test cases to the test framework.
-
Figure out if it’s possible to install Bash/ZSH completions using setup.py, without root; this may not be possible?
-
Writing installation instructions for Bash and ZSH completions for MacOS.
-
Currently we install the whole Calibre package, which is very big, but it’s only used to convert epub to azw3. Can we inline Calibre’s azw3 conversion code in the
./vendor/directory, to avoid having to install the entire package as a big dependency?
Tool descriptions
-
libro buildBuild an ebook from a Standard Ebook source directory.
-
libro build-imagesBuild ebook cover and titlepage images in a Standard Ebook source directory and place the output in DIRECTORY/src/epub/images/.
-
libro cleanPrettify and canonicalize individual XHTML, SVG, or CSS files, or all XHTML, SVG, or CSS files in a source directory. Note that this only prettifies the source code; it doesn’t perform typography changes.
-
libro compare-versionsUse Firefox to render and compare XHTML files in an ebook repository. Run on a dirty repository to visually compare the repository’s dirty state with its clean state. If a file renders differently, place screenshots of the new, original, and diff (if available) renderings in the current working directory. A file called diff.html is created to allow for side-by-side comparisons of original and new files.
-
libro create-draftCreate a skeleton of a new Standard Ebook.
-
libro dec2romanConvert a decimal number to a Roman numeral.
-
libro extract-ebookExtract an EPUB, MOBI, or AZW3 ebook into ./FILENAME.extracted/ or a target directory.
-
libro find-mismatched-diacriticsFind words with mismatched diacritics in Standard Ebook source directories. For example,
cafein one file andcaféin another. -
libro helpList available SE commands.
-
libro hyphenateInsert soft hyphens at syllable breaks in an XHTML file.
-
libro interactive-srUse Vim to perform an interactive search and replace on a list of files. Use y/n/a to confirm (y) or reject (n) a replacement, or to replace (a)ll.
-
libro lintCheck for various Standard Ebooks style errors.
-
libro make-url-safeMake a string URL-safe.
-
libro modernize-spellingModernize spelling of some archaic words, and replace words that may be archaically compounded with a dash to a more modern spelling. For example, replace
ash-traywithashtray. -
libro prepare-releaseCalculate work word count, insert release date if not yet set, and update modified date and revision number.
-
libro print-manifestPrint the element for the given Standard Ebooks source directory to standard output, for use in that directory’s content.opf.
-
libro print-spinePrint the element for the given Standard Ebooks source directory to standard output, for use in that directory’s content.opf.
-
libro print-titlePrint the expected value for an XHTML file’s
<title>element. -
libro print-tocBuild a table of contents for an SE source directory and print to stdout.
-
libro recompose-epubRecompose a Standard Ebooks source directory into a single HTML5 file, and print to standard output.
-
libro renumber-endnotesRenumber all endnotes and noterefs sequentially from the beginning.
-
libro reorder-endnotesIncrement the specified endnote and all following endnotes by 1.
-
libro roman2decConvert a Roman numeral to a decimal number.
-
libro semanticateApply some scriptable semantics rules from the Standard Ebooks semantics manual to a Standard Ebook source directory.
-
libro split-fileSplit an XHTML file into many files at all instances of
<!--se:split-->, and include a header template for each file. -
libro titlecaseConvert a string to titlecase.
-
libro typogrifyApply some scriptable typography rules from the Standard Ebooks typography manual to a Standard Ebook source directory.
-
libro unicode-namesDisplay Unicode code points, descriptions, and links to more details for each character in a string. Useful for differentiating between different flavors of spaces, dashes, and invisible characters like word joiners.
-
libro versionPrint the version number and exit.
-
libro word-countCount the number of words in an HTML file and optionally categorize by length.
-
libro xpathPrint the results of an xpath expression evaluated against a set of XHTML files. The default namespace is removed.
What a Libro.org source directory looks like
Many of these tools act on Libro.org source directories. Such directories have a consistent minimal structure:
.
|-images/
|--cover.jpg
|--cover.source.jpg
|--cover.svg
|--titlepage.svg
|-src/
|--epub/
|---css/
|----core.css
|----local.css
|----se.css
|---images/
|----cover.svg
|----titlepage.svg
|---text/
|----colophon.xhtml
|----imprint.xhtml
|----titlepage.xhtml
|----uncopyright.xhtml
|---content.opf
|---onix.xml
|---toc.xhtml
|--META-INF/
|---container.xml
|--mimetype
|-LICENSE.md
./images/ contains source images for the cover and titlepages, as well as ebook-specific source images. Source images should be in their maximum available resolution, then compressed and placed in ./src/epub/images/ for distribution.
./src/epub/ contains the actual epub files.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file libro_org-0.3.tar.gz.
File metadata
- Download URL: libro_org-0.3.tar.gz
- Upload date:
- Size: 12.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee52e67679f6b1b25dd66b898ffad8091a964180a15be4862a841ab21222e3d7
|
|
| MD5 |
bb6293a46d5ba14ac1ee9a981ec9f6b5
|
|
| BLAKE2b-256 |
ea3eac0bea9e331f3e16df04a3d8dcc766b8d73fc62a81e9d1c1948ec02a76bd
|
File details
Details for the file libro_org-0.3-py3-none-any.whl.
File metadata
- Download URL: libro_org-0.3-py3-none-any.whl
- Upload date:
- Size: 12.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2337f169910a900e1919b0a6e2af108778c8d53aebcb049c699332f247b1cd11
|
|
| MD5 |
36d00e9551eb2bccf6730d350ec5bbd1
|
|
| BLAKE2b-256 |
49f6bdb563dbe95744711096bdca3b5f2814d9bdecaa4eb655c72b5fde396935
|