Created
July 27, 2019 13:54
-
-
Save matrix303/10def5853150e8925a5c0e13a44794a4 to your computer and use it in GitHub Desktop.
Get all Tags Anki
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# WRITE CODE BLOCK IN DEBUG CONSOLE (cmd shift D in anki main window) | |
# RUN CODE w Cmd Return | |
#GET ALL TAGS | |
from aqt import mw | |
out=mw.col.tags.all() | |
for t in out: | |
print(t) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment