Hi, I’m trying to make my own anki add-on. Although I’ve used python a lot for data science before, I’m pretty new to qt and OOP in general.
I’ve been spending hours trying to understand the structure of anki’s github, so I’m sorry to ask such a simple question, but how do I retrieve the information in a cards field (while reviewing)?
I thought it would be something like this…
from aqt import mw
mw.reviewer.card
so I’m not mistaken, up to this point, I’ve grabbed the card object for which the user is currently reviewing… how do I retrieve the information in a certain field?
Thanks