You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After speaking with @blazej-czapp and receiving useful feedback, I'm looking to push out a new version that's simpler and more user-friendly.
To toss off the over-engineered code, my main goals are:
Keeping the class attributes simple (i.e. no previous and current values)
Adding review(quality, review_date) function and keeping first_review(quality, review_date), removing everything else.
Allowing the user to input date as a string with format Year-Month-Day and other common formats.
The flow of using the package when pulling data from the database would be:
fromsupermemo2importSMTwo# first reviewreview=SMTwo.first_review(quality, review_date)
# after first review# your read data from db for your existing values# new review# returns an SMTwo object with the new valuesreview=SMTwo(easiness, interval, repetitions).review(quality, review_date)
The text was updated successfully, but these errors were encountered:
After speaking with @blazej-czapp and receiving useful feedback, I'm looking to push out a new version that's simpler and more user-friendly.
To toss off the over-engineered code, my main goals are:
review(quality, review_date)
function and keepingfirst_review(quality, review_date)
, removing everything else.The flow of using the package when pulling data from the database would be:
The text was updated successfully, but these errors were encountered: