an Anki *.apkg and collection.anki2 reader and editor
Project description
AnkiTools
An Anki *.apkg and collection.anki2 reader and editor to work with in Python. Also included a module on AnkiConnect.
I also created a new sync system called AnkiDirect.
The *.apkg format specification can be viewed from Anki decks collaboration Wiki and AnkiDroid. In my AnkiDirect, I tried to comply with the format specification as much as possible.
Installation
pip install AnkiTools
Featured modules
Anki file conversion
>>> from AnkiTools import anki_convert
>>> anki_convert('Chinese.apkg', out_file='Chinese_anki.xlsx')
>>> anki_convert('my_workbook.xlsx', out_format='.apkg')
The supported formats are .xlsx, .apkg and .anki2.
AnkiDirect API
You can directly edit the Anki app data in user's Application Data path.
from AnkiTools import AnkiDirect
import json
with open('payload.json') as f:
payload = json.load(f)
with AnkiDirect() as api
api.add(payload)
Some supported payloads include:
{
"data": {
"note_type A": [
{
"data": {
"header A": "a",
"header B": "b"
},
"decks": {
"Forward": "Test Deck::Forward",
"Backward": "Test Deck::Backward"
}
}
]
},
"definitions": {
"note_type A": {
"templates": [
{
"name": "Forward",
"data": {
"qfmt": "{{header A}}",
"afmt": "{{FrontSide}}\r\n\r\n<hr id=answer>\r\n\r\n{{header B}}"
}
},
{
"name": "Backward",
"data": {
"qfmt": "{{header B}}",
"afmt": "{{FrontSide}}\r\n\r\n<hr id=answer>\r\n\r\n{{header A}}"
}
}
],
"css": ".card {\r\n font-family: arial;\r\n font-size: 20px;\r\n text-align: center;\r\n color: black;\r\n background-color: white;\r\n}\r\n"
}
}
}
AnkiConnect
>>> from AnkiTools import AnkiConnect
>>> AnkiConnect.is_online()
True
>>> params = {'actions': [{'action': 'deckNames'}, {'action': 'browse', 'params': {'query': 'deck:current'}}]}
>>> AnkiConnect.post('multi', params=params)
{'result': [['Default', 'SpoonFed', 'Chinese Hanzi Freq', 'Chinese Vocab'], None], 'error': None}
The actual addable actions and parameters can be viewed from AnkiConnect.
Plans
- AnkiDirect two-way sync between Excel file and the Anki app.
- Specifying metadata (e.g. card distribution, decks) in the Excel file and make it convertible and syncable.
- Add CRUD to
AnkiDirect("update" and "remove" pending.)
Contributions
- Testing on other OS's, e.g. Windows XP, Windows 10, Ubuntu Linux. (I tested on Mac.)
- Manual testing of whether the generated
*.apkgcan be opened without subsequent errors in the Anki app. - Writing test cases and testing parameters. The current ones are viewable at /tests/parameters.json and /tests/files/.
- Specifying challenging payloads for AnkiDirect.
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 AnkiTools-0.3.7.tar.gz.
File metadata
- Download URL: AnkiTools-0.3.7.tar.gz
- Upload date:
- Size: 44.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
deb16d6bc63aa6d846084b7b2301b3ab9467dc6b9d6f44cfd6f8194ef234d22e
|
|
| MD5 |
e67d6728fa401716fe888c39827c4c86
|
|
| BLAKE2b-256 |
2d48b01de3fbbff3957d799598e2e882ed757e6978c48d09de739443b35885b2
|
File details
Details for the file AnkiTools-0.3.7-py3-none-any.whl.
File metadata
- Download URL: AnkiTools-0.3.7-py3-none-any.whl
- Upload date:
- Size: 248.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f541dce588bfb890087bdc30ab2c0e198a5a116c1c62cdab5ef6a1bfbd4fff6
|
|
| MD5 |
efaa70f80f9878cf2c829433dee69bca
|
|
| BLAKE2b-256 |
53549cc6d54755f8861f83614fe727347187e57eecf16140f0845d646eca5dd6
|