├── .coveragerc ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ ├── create_release.yml │ └── install_deps.sh ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .pylintrc ├── .pytest.ini ├── .vscode.dist ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── addon.json ├── ankiweb_page.html ├── mypy.ini ├── pyproject.toml ├── requirements ├── base.in ├── base.txt ├── bundle.in ├── bundle.txt ├── dev.in └── dev.txt ├── src ├── __init__.py ├── config.json ├── config.md ├── config.py ├── config.schema.json ├── consts.py ├── log.py ├── main.py ├── py.typed └── user_files │ └── README.txt └── tests ├── __init__.py └── test_example.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/create_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.github/workflows/create_release.yml -------------------------------------------------------------------------------- /.github/workflows/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.github/workflows/install_deps.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.pytest.ini -------------------------------------------------------------------------------- /.vscode.dist/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.vscode.dist/extensions.json -------------------------------------------------------------------------------- /.vscode.dist/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.vscode.dist/launch.json -------------------------------------------------------------------------------- /.vscode.dist/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/.vscode.dist/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/README.md -------------------------------------------------------------------------------- /addon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/addon.json -------------------------------------------------------------------------------- /ankiweb_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/ankiweb_page.html -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/base.in: -------------------------------------------------------------------------------- 1 | pip-tools 2 | -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/bundle.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/requirements/bundle.in -------------------------------------------------------------------------------- /requirements/bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/requirements/bundle.txt -------------------------------------------------------------------------------- /requirements/dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/requirements/dev.in -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/config.json -------------------------------------------------------------------------------- /src/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/config.md -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/config.py -------------------------------------------------------------------------------- /src/config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/config.schema.json -------------------------------------------------------------------------------- /src/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/consts.py -------------------------------------------------------------------------------- /src/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/log.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/main.py -------------------------------------------------------------------------------- /src/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/user_files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdnh/aw-watcher-anki/HEAD/src/user_files/README.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_example.py: -------------------------------------------------------------------------------- 1 | def test_works() -> None: 2 | assert True 3 | --------------------------------------------------------------------------------