Files
Lee Chagolla-Christensen 3b80fd411b fix: upgrade vulnerable dependencies across projects
- pyasn1 0.6.2 -> 0.6.3 (direct, 5 projects)
- pyopenssl 25.3.0 -> 26.0.0 (transitive, 5 projects)
- ujson 5.11.0 -> 5.12.0 (transitive, web_api)
- orjson 3.11.5 -> 3.11.7 (transitive, web_api)
- dynaconf 3.2.12 -> 3.2.13 (direct, cli)
- pyjwt 2.10.1 -> 2.12.1 (transitive, agents)
- dompurify 3.2.7 -> 3.3.3 (transitive, frontend via override)
2026-03-19 12:35:51 -07:00
..
2026-03-06 15:27:12 -08:00
2025-06-13 11:33:07 +02:00

Naming Conventions

Projects and libraries should follow Python's PEP8 naming conventions:

Modules should have short, all-lowercase names. Underscores can be used in the module name if it improves readability. Python packages should also have short, all-lowercase names, although the use of underscores is discouraged.

When an extension module written in C or C++ has an accompanying Python module that provides a higher level (e.g. more object oriented) interface, the C/C++ module has a leading underscore (e.g. _socket).