Development Standards
Stage: Draft
Python3
Dependency management
Logging
import logging
logger = logging.getLogger(__name__)
logger.debug("debug message")
logger.info("info message")
logger.error("error message")
logger.warning("warning message")
try:
...
except Exception as e:
logger.exception(e)Rust
Database and ORM
SQL
HTTP Requests and Tooling
Javascript/Typescript
Dependency management
Cryptography and Hashing
Last updated
Was this helpful?