Skip to main content

Anki SM-2 based spaced repetition scheduler

Project description

Open Spaced Repetition logo

Anki SM-2

🌟 Anki's SM-2-based spaced repetition algorithm 🌟


Python package implementing Anki's SM-2-based algorithm for spaced repetition scheduling.

Installation

You can install the anki-sm-2 python package from PyPI using pip:

pip install anki-sm-2

Quickstart

Import and initialize the Anki SM-2 Scheduler

from anki_sm_2 import AnkiSM2Scheduler, Card, Rating

scheduler = AnkiSM2Scheduler()

Create a new Card object

card = Card()

Choose a rating and review the card

"""
Rating.Again # (==0) forgot the card
Rating.Hard # (==1) remembered the card, but with serious difficulty
Rating.Good # (==2) remembered the card after a hesitation
Rating.Easy # (==3) remembered the card easily
"""

rating = Rating.Good

card, review_log = scheduler.review_card(card, rating)

print(f"Card rated {review_log.rating} at {review_log.review_datetime}")
# > Card rated 3 at 2024-10-31 01:36:57.080934+00:00

See when the card is due next

from datetime import datetime, timezone

due = card.due

# how much time between when the card is due and now
time_delta = due - datetime.now(timezone.utc)

print(f"Card due: at {due}")
print(f"Card due in {time_delta.seconds / 60} minutes")
# > Card due: at 2024-10-31 01:46:57.080934+00:00
# > Card due in 9.983333333333333 minutes

Usage

Timezone

Anki SM-2 uses UTC time only. You can still specify custom datetimes, but they must be UTC.

from anki_sm_2 import AnkiSM2Scheduler, Card, Rating, ReviewLog
from datetime import datetime, timezone

scheduler = AnkiSM2Scheduler()

# create a new card on Jan. 1, 2024
card = Card(created_at=datetime(2024, 1, 1, 0, 0, 0, 0, timezone.utc)) # right
#card = Card(created_at=datetime(2024, 1, 1, 0, 0, 0, 0)) # wrong

# review the card on Jan. 2, 2024
card, review_log = scheduler.review_card(card=card, rating=Rating.Good, review_datetime=datetime(2024, 1, 2, 0, 0, 0, 0, timezone.utc)) # right
#card, review_log = scheduler.review_card(card=card, rating=Rating.Good, review_datetime=datetime(2024, 1, 2, 0, 0, 0, 0)) # wrong

Serialization

AnkiSM2Scheduler, Card and ReviewLog objects are all json-serializable via their to_dict and from_dict methods for easy database storage:

# serialize before storage
scheduler_dict = scheduler.to_dict()
card_dict = card.to_dict()
review_log_dict = review_log.to_dict()

# deserialize from dict
scheduler = AnkiSM2Scheduler.from_dict(scheduler_dict)
card = Card.from_dict(card_dict)
review_log = ReviewLog.from_dict(review_log_dict)

Versioning

This python package is currently unstable and adheres to the following versioning scheme:

  • Minor version will increase when a backward-incompatible change is introduced.
  • Patch version will increase when a bug is fixed, a new feature is added or when anything else backward compatible warrants a new release.

Once this package is considered stable, the Major version will be bumped to 1.0.0 and will follow semver.

Contribute

Checkout CONTRIBUTING to help improve Anki SM-2!

Official implementation

You can find the code for Anki's official Rust-based scheduler here.

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_sm_2-0.1.2.tar.gz (45.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

anki_sm_2-0.1.2-py3-none-any.whl (31.3 kB view details)

Uploaded Python 3

File details

Details for the file anki_sm_2-0.1.2.tar.gz.

File metadata

  • Download URL: anki_sm_2-0.1.2.tar.gz
  • Upload date:
  • Size: 45.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for anki_sm_2-0.1.2.tar.gz
Algorithm Hash digest
SHA256 db0b1b6aa1cece44705832232548b56fb074dafc9c8e1f467357cbdf0a75a7e6
MD5 9129887e99a79ae14f6a4f1aa7d63a55
BLAKE2b-256 9433ed3912d5ee25e0febcd4f5802e86cf4b12fa9b3b02da1276097886759956

See more details on using hashes here.

File details

Details for the file anki_sm_2-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: anki_sm_2-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 31.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for anki_sm_2-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 dc63085dc137f6859a3a12847247fb8594a2e6478c976145c17417f95e59e97d
MD5 8a7fa84a9391726d94e7dc086093dc3f
BLAKE2b-256 c112cd3db66983d2b0a9a635938bf440615fa3bcd659f2b69491c714f4cdcd1f

See more details on using hashes here.

Supported by

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