Skip to main content

Clean python interface for interacting with Anki's database

Project description

PyPi Version

Anki SQLAlchemy is an interface for interacting with the Anki sqlite database from python without having to either hack an Anki install or figure out the database structure and field serialization from scratch.

The goal of this project is not to support every version of Anki entirely. The current version supports at a signficant amount of the Anki 2.1.38.

Here is a small code snippet written first without anki_sqlalchemy to show how unintuivite the data format and columns names are without an wrapper.

# plain python without anki-sqlalchemy
import sqlite3

conn = sqlite3.connect('backup.db')
cursor = conn.execute("SELECT id, tags FROM notes WHERE mod >= ?", [1445394366])
note = cursor.fetchone()
note[0]  # 1428143940996
note[1]  # ' edit math probability wikipedia '

cursor = conn.execute("SELECT mod, type FROM cards WHERE nid = ?", [nid])
card = cursor.fetchone()
card[0]  # 1445394366
card[1]  # 2
# with anki-sqlalchemy
import datetime
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from anki_sqlalchemy import Card

engine = create_engine("sqlite:///backup.db", echo=True)
Session = sessionmaker(bind=engine)
session = Session()

note = session.query(Note).filter(Note.modification_time >= datetime.datetime(2017, 2, 5, 21, 29, 49)).first()
note.id  # 1428143940996
note.modification_time  # datetime.datetime(2017, 2, 5, 21, 29, 49)

card = note.cards[0]
card.modification_time  # datetime.datetime(2019, 11, 5, 22, 23, 3)
card.type  # <CardType.due: 2>

Anki SQLAlchemy also plays nicely with types too.

card: Card = session.query(Card).first()
reveal_type(card.modification_time)
# Revealed type is 'datetime.datetime*'

reveal_type(card.note.tags)
# Revealed type is 'builtins.list*[builtins.str]'

BEWARE!

This package can be used to make changes to your anki database. Before proceeding, please make a backup of your database file. You don't want to lose all your work with a bad query.

The Anki database typically lives in a collection.anki2 file.

Install

pip install anki_sqlalchemy

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anki-sqlalchemy-0.3.0.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

anki_sqlalchemy-0.3.0-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file anki-sqlalchemy-0.3.0.tar.gz.

File metadata

  • Download URL: anki-sqlalchemy-0.3.0.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for anki-sqlalchemy-0.3.0.tar.gz
Algorithm Hash digest
SHA256 5307127713416f1a0b47e5d28c9ccefb9e03b4f14eb668e9989b5b3180907b5d
MD5 f6ae9ae45daa3295b833c9b3e31b4460
BLAKE2b-256 886e32e9a8039e967931ba83174c89f5751fc0eb0ad8a54dc02edefe890fd428

See more details on using hashes here.

File details

Details for the file anki_sqlalchemy-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: anki_sqlalchemy-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • 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.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for anki_sqlalchemy-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 31b01dd3e6f6d1a506e911a15fee9615017a22dd8448dcf95d021513879b7090
MD5 2a9c47ad66b242d1ddd892eaf610ec26
BLAKE2b-256 f1cef32218eff44f0aa94c470c91328eeeded18752339791adbc30035d0ee77e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page