├── .gitignore ├── GoldenDictMedia ├── 2.0 │ └── GoldenDictMedia.py └── 2.1 │ ├── README.md │ ├── __init__.py │ ├── deploy_locally.sh │ ├── golden_dict_media │ ├── AddonInitializer.py │ ├── __init__.py │ └── mdict_query │ │ ├── README.md │ │ ├── __init__.py │ │ ├── cache │ │ └── o3.js │ │ ├── lzo.py │ │ ├── mdict-query.pyproj │ │ ├── mdict-query.sln │ │ ├── mdict_dir.py │ │ ├── mdict_query.py │ │ ├── pureSalsa20.py │ │ ├── readmdict.py │ │ ├── ripemd128.py │ │ ├── static │ │ └── cache here.txt │ │ ├── templates │ │ ├── all.html │ │ ├── dict.html │ │ └── entry.html │ │ ├── test.py │ │ ├── test_lzo.py │ │ ├── web.py │ │ ├── web.spec │ │ └── wsgi.py │ ├── mdict_query │ ├── README.md │ ├── __init__.py │ ├── cache │ │ └── o3.js │ ├── lzo.py │ ├── mdict-query.pyproj │ ├── mdict-query.sln │ ├── mdict_dir.py │ ├── mdict_query.py │ ├── pureSalsa20.py │ ├── readmdict.py │ ├── ripemd128.py │ ├── static │ │ └── cache here.txt │ ├── templates │ │ ├── all.html │ │ ├── dict.html │ │ └── entry.html │ ├── test.py │ ├── test_lzo.py │ ├── web.py │ ├── web.spec │ └── wsgi.py │ ├── package.sh │ ├── requirements.txt │ └── testing │ ├── __init__.py │ ├── anki_testing.py │ └── run_anki.py ├── ImageResizer ├── ImageResizer.py ├── __init__.py └── user_files │ └── README.txt ├── LICENSE ├── MyCustomLogic ├── README.md ├── deploy_locally.sh ├── my_custom_logic │ ├── __init__.py │ ├── add_sentence_audio_automatically.py │ ├── addon_initializer.py │ ├── common │ │ ├── __init__.py │ │ ├── util.py │ │ └── voice │ │ │ ├── __init__.py │ │ │ ├── mello.py │ │ │ └── microsoft.py │ ├── convert_audio_file_formats.py │ ├── distribute_longman_paste_contents.py │ ├── fill_all │ │ ├── __init__.py │ │ ├── res │ │ │ └── icon.png │ │ └── word.py │ ├── remove_sound_from_sentence_field.py │ ├── sentence_experiment │ │ ├── __init__.py │ │ ├── distribute_word_ipa_voice.py │ │ ├── sentence_generator.py │ │ ├── sentence_voice_generator.py │ │ └── trim_official_word_definition.py │ ├── show_added_sentences_today.py │ └── strip_field_contents.py ├── package.sh ├── requirements.txt └── testing │ ├── __init__.py │ └── unit │ ├── __init__.py │ └── util_test.py ├── PurgeAttributes ├── 2.0 │ └── PurgeAttributes.py └── 2.1 │ └── __init__.py ├── PurgeBrE ├── 2.0 │ └── PurgeBrE.py └── 2.1 │ ├── deploy_locally.sh │ ├── package.sh │ ├── purge_bre │ ├── AddonInitializer.py │ └── __init__.py │ ├── requirements.txt │ └── testing │ ├── __init__.py │ ├── anki_testing.py │ ├── run_anki.py │ └── test_purge.py ├── README.md └── WriteToDisk └── WriteToDisk.py /.gitignore: -------------------------------------------------------------------------------- 1 | runanki 2 | tags 3 | *.pyc 4 | *.idea 5 | venv 6 | user_files 7 | -------------------------------------------------------------------------------- /GoldenDictMedia/2.0/GoldenDictMedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.0/GoldenDictMedia.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/README.md -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/__init__.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/deploy_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/deploy_locally.sh -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/AddonInitializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/AddonInitializer.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/__init__.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/README.md -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/__init__.py: -------------------------------------------------------------------------------- 1 | from .mdict_query import IndexBuilder -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/cache/o3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/cache/o3.js -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/lzo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/lzo.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/mdict-query.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/mdict-query.pyproj -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/mdict-query.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/mdict-query.sln -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/mdict_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/mdict_dir.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/mdict_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/mdict_query.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/pureSalsa20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/pureSalsa20.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/readmdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/readmdict.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/ripemd128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/ripemd128.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/static/cache here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/templates/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/templates/all.html -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/templates/dict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/templates/dict.html -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/templates/entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/templates/entry.html -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/test.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/test_lzo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/test_lzo.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/web.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/web.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/web.spec -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/golden_dict_media/mdict_query/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/golden_dict_media/mdict_query/wsgi.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/README.md -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/__init__.py: -------------------------------------------------------------------------------- 1 | from .mdict_query import IndexBuilder -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/cache/o3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/cache/o3.js -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/lzo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/lzo.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/mdict-query.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/mdict-query.pyproj -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/mdict-query.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/mdict-query.sln -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/mdict_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/mdict_dir.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/mdict_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/mdict_query.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/pureSalsa20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/pureSalsa20.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/readmdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/readmdict.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/ripemd128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/ripemd128.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/static/cache here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/templates/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/templates/all.html -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/templates/dict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/templates/dict.html -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/templates/entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/templates/entry.html -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/test.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/test_lzo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/test_lzo.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/web.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/web.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/web.spec -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/mdict_query/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/mdict_query/wsgi.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/package.sh -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/requirements.txt -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/testing/anki_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/testing/anki_testing.py -------------------------------------------------------------------------------- /GoldenDictMedia/2.1/testing/run_anki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/GoldenDictMedia/2.1/testing/run_anki.py -------------------------------------------------------------------------------- /ImageResizer/ImageResizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/ImageResizer/ImageResizer.py -------------------------------------------------------------------------------- /ImageResizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/ImageResizer/__init__.py -------------------------------------------------------------------------------- /ImageResizer/user_files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/ImageResizer/user_files/README.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/LICENSE -------------------------------------------------------------------------------- /MyCustomLogic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/README.md -------------------------------------------------------------------------------- /MyCustomLogic/deploy_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/deploy_locally.sh -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/__init__.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/add_sentence_audio_automatically.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/add_sentence_audio_automatically.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/addon_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/addon_initializer.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/common/util.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/common/voice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/common/voice/__init__.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/common/voice/mello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/common/voice/mello.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/common/voice/microsoft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/common/voice/microsoft.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/convert_audio_file_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/convert_audio_file_formats.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/distribute_longman_paste_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/distribute_longman_paste_contents.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/fill_all/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/fill_all/__init__.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/fill_all/res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/fill_all/res/icon.png -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/fill_all/word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/fill_all/word.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/remove_sound_from_sentence_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/remove_sound_from_sentence_field.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/sentence_experiment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/sentence_experiment/__init__.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/sentence_experiment/distribute_word_ipa_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/sentence_experiment/distribute_word_ipa_voice.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/sentence_experiment/sentence_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/sentence_experiment/sentence_generator.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/sentence_experiment/sentence_voice_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/sentence_experiment/sentence_voice_generator.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/sentence_experiment/trim_official_word_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/sentence_experiment/trim_official_word_definition.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/show_added_sentences_today.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/show_added_sentences_today.py -------------------------------------------------------------------------------- /MyCustomLogic/my_custom_logic/strip_field_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/my_custom_logic/strip_field_contents.py -------------------------------------------------------------------------------- /MyCustomLogic/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/package.sh -------------------------------------------------------------------------------- /MyCustomLogic/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/requirements.txt -------------------------------------------------------------------------------- /MyCustomLogic/testing/__init__.py: -------------------------------------------------------------------------------- 1 | import aqt 2 | 3 | aqt.run() -------------------------------------------------------------------------------- /MyCustomLogic/testing/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MyCustomLogic/testing/unit/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/MyCustomLogic/testing/unit/util_test.py -------------------------------------------------------------------------------- /PurgeAttributes/2.0/PurgeAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeAttributes/2.0/PurgeAttributes.py -------------------------------------------------------------------------------- /PurgeAttributes/2.1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeAttributes/2.1/__init__.py -------------------------------------------------------------------------------- /PurgeBrE/2.0/PurgeBrE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.0/PurgeBrE.py -------------------------------------------------------------------------------- /PurgeBrE/2.1/deploy_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.1/deploy_locally.sh -------------------------------------------------------------------------------- /PurgeBrE/2.1/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.1/package.sh -------------------------------------------------------------------------------- /PurgeBrE/2.1/purge_bre/AddonInitializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.1/purge_bre/AddonInitializer.py -------------------------------------------------------------------------------- /PurgeBrE/2.1/purge_bre/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.1/purge_bre/__init__.py -------------------------------------------------------------------------------- /PurgeBrE/2.1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.1/requirements.txt -------------------------------------------------------------------------------- /PurgeBrE/2.1/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PurgeBrE/2.1/testing/anki_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.1/testing/anki_testing.py -------------------------------------------------------------------------------- /PurgeBrE/2.1/testing/run_anki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.1/testing/run_anki.py -------------------------------------------------------------------------------- /PurgeBrE/2.1/testing/test_purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/PurgeBrE/2.1/testing/test_purge.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/README.md -------------------------------------------------------------------------------- /WriteToDisk/WriteToDisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/searene/Anki-Addons/HEAD/WriteToDisk/WriteToDisk.py --------------------------------------------------------------------------------