anki/pylib
Damien Elmes 9ed13eee80 convert invariant assertions to if statements
The packaged builds of 2.1.50 use python -OO, which means our assertion
statements won't be run. This is not an issue for unit tests (as we
don't run them from a packaged build), or for type assertions (which are
added for mypy's benefit), but we do need to ensure that invariant checks
are still run.
2021-11-25 17:47:50 +10:00
..
anki convert invariant assertions to if statements 2021-11-25 17:47:50 +10:00
rsbridge Fix latest Rusqlite on Windows 2021-11-19 10:44:02 +10:00
tests update platform checks (eg isWin -> is_win) + devMode 2021-11-25 09:06:16 +10:00
tools vendor stringcase 2021-10-22 08:56:44 +10:00
.gitignore
.isort.cfg
.pylintrc Enable invalid-name globally in pylib (#1454) 2021-10-25 19:10:56 +10:00
BUILD.bazel pip/ -> python/ 2021-10-18 19:50:40 +10:00
mypy.ini PEP8 for rest of pylib (#1451) 2021-10-25 14:50:13 +10:00
orjson.bzl
protobuf.bzl refactor protobuf handling for split/import 2021-07-10 19:17:05 +10:00
README.md

Anki's Python library code is in anki/.

The Rust/Python extension module is in rsbridge/; it references the library defined in ../rslib.