CLI script for interacting with local Anki collection
Project description
apy
Anki is a flash card program which makes
remembering things easy. apy is a Python script for easily adding cards to
Anki. It does not require Anki to be running at the same time.
Important
- This script and its author(s) are not affiliated/associated with the main Anki project in any way.
- Use this software entirely at your own risk. Frequent backups are encouraged.
Table of Contents
- Install instructions
- Usage
- Examples of adding new notes
- Configuration
- Zsh completion
- Fish completion
- Relevant resources
- Alternatives
- Contributing
Install instructions
[!WARNING]
Installing Python packages (e.g. with
pip install) outside virtual environments is not recommended, even at the user level! If you do this, then be aware that you may experience issues due to conflicts with other packages/tools installed in the same manner.
There are two recommended ways to install apy.
With uv
uv is a relatively new python package and
project manager. It is very fast and it includes features to install and run
tools in isolated environments.
See uv Getting Started for how
to install uv. When it's available, you can install apy with:
uv tool install apyanki
With pipx
pipx is a simple and useful python tool to
install and run python applications in isolated environments.
If you don't already have pipx, install it with your distribution's package
manager. For instance, on Ubuntu:
sudo apt update
sudo apt install pipx
Then, install apy with:
pipx install apyanki
Requirements
apy should work for Python 3.10 and later.
Technically, apy does not depend on any existing Anki installation, since
it pulls in a copy of the non-GUI components of Anki as a separate dependency.
However, you still need to have an Anki database with collections and profile
settings already existing on your machine, since apy can't create one from
nothing.
Usage
apy --help
Some examples:
# Add card with interactive editor session
apy add
# Add single card with specified preset (see configuration for more info on
# presets)
apy add-single -s preset "Question/Front" "Answer/Back"
# List leech cards (will show cid values for each card). Note that the query
# should be similar to a search query in the Anki browser.
apy list-cards -v tag:leech
# Review and possibly edit file with given cid
apy review cid:12345678
apy can be combined with editor specific configuration and workflows to
improve the process of adding and editing cards. For more information about
this, see the Wiki.
Examples of adding new notes
With apy add and apy add-from-file, the note input is provided through
Markdown format. apy add opens an interactive editor that will write
a temporary file that apy reads afterwords. apy add-from-file will add
notes from a specified file. These are therefore more or less equivalent
commands.
In the following, you may find a few examples of how such notes can be written. These will all be based on the standard note types (or models). See here for the Anki documentation of the standard note types.
Add with a specified model/note type
This example will create two notes and four cards with the "Basic (and reversed card)" note type.
model: Basic (and reversed card)
tags: mytag
# Note
## Front
This is my front.
## Back
This is my back.
# Note
## Front
This is my second front.
## Back
This is my second back.
Add with code snippet
This example will create a Basic note with a single card that includes a code snippet.
model: Basic
tags: code
# Note
## Front
What programming language is this?
## Back
```python
x = 1
if x > 0:
print("this is python")
```
Add a Cloze note
The following shows how a Cloze card can be added, e.g. after doing apy add -m Cloze:
# Note
model: Cloze
tags: mytag, othertag
## Text
{{c1::Canberra}} was {{c2::founded}}}} in 1913
Or {{c3::REPLACE}} here.
## Back Extra
Extra information goes here.
Configuration
apy loads configuration from ~/.config/apy/apy.json. The following keys are
currently recognized:
base_path: Specify whereapyshould look for your Anki database. This is usually something like/home/your_name/.local/share/Anki2/.auto_sync: Set totrueto enable auto sync after any mutating operations.img_viewers: Specify a dictionary of image viewer commands. Each key is a file extension. The value is a command list, e.g.['display', 'density', '300']which specifies the command and its options to use for the corresponding key (file extension).img_viewers_default: Specify the default command to show an image. Must be provided as a list of the command and desired options, such as['feh', '-d'].markdown_models: Specify a list of models for whichapywill use a markdown converter.markdown_pygments_style: Specify the code highlight scheme to use for fenced code blocks in Markdown notes. See the Pygments documentation for more details.markdown_latex_mode: Specify how$$ ... $$and$ ... $will be interpreted when transforming Markdown into field HTML and vice versa (it works both ways). The following values are recognized:mathjax(default):$$…$$→\[…\]and$…$→\(…\)latex:$$…$$→[$$]…[/$$]and$…$→[$]…[/$]
pngCommands/svgCommands: Set LaTeX commands to generate PNG/SVG files. This is inspired by the Edit LaTeX build process addon to Anki.presets: Specify preset combination of model and tags for use withapy add-single.profile_name: Specify which profile to load by default.query: Specify default query forapy list*,apy reviewandapy tag.review_show_cards: Whether to show list of cards by default during note reviewreview_verbose: Whether to show note details by default during note review
An example configuration:
{
"auto_sync": true,
"base_path": "/home/your_name/.local/share/Anki2/",
"profile_name": "MyAnkiProfile",
"query": "tag:leech",
"presets": {
"default": { "model": "Custom", "tags": ["marked"] }
},
"pngCommands": [
["latex", "-interaction=nonstopmode", "tmp.tex"],
["dvipng", "-D", "150", "-T", "tight", "-bg", "Transparent",
"tmp.dvi", "-o", "tmp.png"]
],
"svgCommands": [
["lualatex", "-interaction=nonstopmode", "tmp.tex"],
["pdfcrop", "tmp.pdf", "tmp.pdf"],
["pdf2svg", "tmp.pdf", "tmp.svg"]
],
"review_show_cards": true,
"markdown_latex_mode": "latex"
}
Zsh completion
There is also a zsh completion file available. To use it, one may symlink or
copy it to a location that is already in ones fpath variable, or one may add
the apy/completion directory to the fpath list.
As an example, one may first symlink the _apy file:
mkdir -p ~/.local/zsh-functions
ln -s /path/to/apy/completion/_apy ~/.local/zsh-functions
Then add the following line to ones .zshrc file:
fpath=($HOME/.local/zsh-functions $fpath)
Fish completion
There is also a fish completion file available. To use it, one may symlink or
copy it to ~/.config/fish/completions/ directory:
ln -s /path/to/apy/completion/apy.fish ~/.config/fish/completions/
Relevant resources
Here are a list of relevant resources for learning how to work with the Anki databases and code:
Alternatives
Here are some alternatives to apy from which I've drawn inspiration. I've
also added a short note on why I did not just settle for the alternative.
Ankiconnect
Ankiconnect is an Anki plugin 2055492159) hosted on github.
Ankiconnect enables external applications to communicate with Anki over a network interface. The exposed API makes it possible to execute queries against the user’s card deck, automatically create new vocabulary and Kanji flash cards, and more.
A couple of relevant applications that use Ankiconnect:
-
Anki Quick Adder: A Chrome extension to add words to Anki desktop quickly.
-
Anki-editor is an emacs plugin for making Anki cards with Org.
-
anki-cli is a simple nodejs based command-line interface for Anki.
-
trrc is a command-line program to add a card to Anki using AnkiConnect API.
The Dealbreaker: I wanted a script that does not require Anki to be running.
Anki::Import - Anki note generation made easy
Anki::Import (see also here) allows one to "Efficiently generate Anki notes with your text editor for easy import into Anki". Quote:
Inputting notes into Anki can be a tedious chore. Anki::Import lets you you generate Anki notes with your favorite text editor (e.g. vim, BBEdit, Atom, etc.) so you can enter formatted notes into Anki's database more efficiently.
The Dealbreaker: This sounds very good, except there are too many steps. I didn't want to have to open Anki desktop. It should work flawlessly directly from the terminal.
AnkiVim
AnkiVim may be used to "Use vim to rapidly write textfiles immediately importable into anki(1)."
The Dealbreaker: Similar to Anki::Import: I didn't want to have to open
Anki desktop. It should work flawlessly directly from the terminal.
Knowledge (Vim plugin)
Knowledge is a Vim plugin for generating flash cards to either Anki or Mnemosyne.
The Dealbreaker: It has a single, open issue, which seems to indicate that the application does not work very well and/or is not well maintained.
Ankisync
Ankisync seems somewhat promising, in that it exposes an API for working with Anki collections from Python. It is a successor to AnkiTools, which is stated to be "an Anki *.apkg and collection.anki2 reader and editor".
The Dealbreaker: It does not include any features to add or edit notes (as far as I could tell).
Genanki
Genanki is a library for generating Anki decks.
The Dealbreaker: It is quite close to being something I wanted, except that it needs to run as a plugin to Anki desktop to generate notes to a local collection. It does not seem to allow editing/adding to a local collection outside of Anki desktop.
inka
inka is a CLI utility for adding flashcards from Markdown files to Anki.
The Dealbreaker: This did not exist when apy was created. It seems to be
close to what I would personally be interested in, but today I find apy solves
all (or most) of my requirements. Also, inka requires the AnkiConnect plugin.
Obsidian_to_Anki
Obsidian_to_Anki is a plugin to add flashcards from a text or markdown file to Anki. It can also be run from the command-line as a python script. Built with Obsidian markdown syntax in mind.
The Dealbreaker: Requires AnkiConnect.
Markdown2Anki
Markdown2Anki is a Python script that allows you to easily format your cards using Markdown syntax, and then import them into Anki while retaining the structure you gave them.
As many other alternatives, you need to manually import cards. It may provide support for AnkiConnect.
Contributing
The following is a short and simple guide to getting started with contributing
and developing the apy code.
Setup
This project uses uv as the build system and
to manage dependencies. Install uv first if you don't have it already.
Now fork the repository, then clone your fork and install a local development build of the project.
# Clone the forked repo
git clone git@github.com:<username>/apy.git
cd apy/
Tests
To run the tests, run:
uv run pytest
Linting
To format the code, run:
uv run ruff format
To type-check the code, run:
uv run mypy .
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 apyanki-0.19.3.tar.gz.
File metadata
- Download URL: apyanki-0.19.3.tar.gz
- Upload date:
- Size: 40.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5ea5f0cc7abbc758b2864fd4d1469af5ac7235cdf47410638bff8dca440dc3d
|
|
| MD5 |
285e3c0c8703b05a6d91486983417217
|
|
| BLAKE2b-256 |
9788ee647cf815bbb0cb8fd5dd9ba462a940748cb1d85a94062a46ff19fd3396
|
File details
Details for the file apyanki-0.19.3-py3-none-any.whl.
File metadata
- Download URL: apyanki-0.19.3-py3-none-any.whl
- Upload date:
- Size: 37.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb35f8be25fc4ac27dee78dcd69a393a08f42515d4610a94755cd453d8844477
|
|
| MD5 |
fc21bdfab00e1f80e7154e4ff6f0c68a
|
|
| BLAKE2b-256 |
d6955d9cd39107a9b18c9d551b31cf3203d5ff00bb57d245b5d0852085de2b76
|