Skip to main content

SM-2 spaced repetition scheduler

Project description

Open Spaced Repetition logo

SM-2

🧠🔄 Build your own Spaced Repetition System in Python 🧠🔄


Python package implementing the classic SM-2 algorithm for spaced repetition scheduling.

Installation

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

pip install sm-2

Quickstart

Import and initialize the SM-2 scheduler

from sm_2 import SM2Scheduler, Card, ReviewLog

scheduler = SM2Scheduler()

Create a new Card object

card = Card()

Choose a rating and review the card

"""
5 - perfect response
4 - correct response after a hesitation
3 - correct response recalled with serious difficulty
2 - incorrect response; where the correct one seemed easy to recall
1 - incorrect response; the correct one remembered
0 - complete blackout.
"""

rating = 5

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

print(f"Card rated {review_log.rating} at {review_log.review_datetime}")
# > Card rated 5 at 2024-10-24 02:14:20.802958+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 {repr(due)}")
print(f"Card due in {time_delta.seconds / 3600} hours")
# > Card due: at datetime.datetime(2024, 10, 25, 2, 14, 20, 799320, tzinfo=datetime.timezone.utc)
# > Card due in 23.99972222222222 hours

Usage

Timezone

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

from sm_2 import SM2Scheduler, Card, ReviewLog
from datetime import datetime, timezone

scheduler = SM2Scheduler()

# 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=5, review_datetime=datetime(2024, 1, 1, 0, 0, 0, 0, timezone.utc)) # right
#card, review_log = scheduler.review_card(card=card, rating=5, review_datetime=datetime(2024, 1, 1, 0, 0, 0, 0)) # wrong

Serialization

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

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

# deserialize from 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 or a new feature is added.

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 sm-2!

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

sm_2-0.2.1.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

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

sm_2-0.2.1-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file sm_2-0.2.1.tar.gz.

File metadata

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

File hashes

Hashes for sm_2-0.2.1.tar.gz
Algorithm Hash digest
SHA256 61c9fb69a7e555659f2a1b76c7b2d0c844bf165eb9fb9557948168c8187f5e87
MD5 fb5f9cbb5719de0e62597b99da2984c1
BLAKE2b-256 744f99a8baa1c5765499c407c70a3e54a4e338856c0e0945aef2654afa579cd2

See more details on using hashes here.

File details

Details for the file sm_2-0.2.1-py3-none-any.whl.

File metadata

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

File hashes

Hashes for sm_2-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6432813dd287ba9b5c0bcfc24e564641148c4aa59d5d12c954e8fba4678f88ec
MD5 a3402307e27c0b9ba0b5cbb24750d5e6
BLAKE2b-256 057a15f22b7dd36f3a9ce8a1e391086d9955f91c576e2d5ba58c8893e8744471

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