mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
3b80fd411b
- 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)
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).