Skip to content
This repository was archived by the owner on Sep 1, 2026. It is now read-only.

Coding Standard

Antoni Ivanov edited this page Nov 19, 2021 · 41 revisions

⚠️ In progress

REST: https://opensource.zalando.com/restful-api-guidelines/#100

##Python

The coding standard is the Python regular PEP 8. It's enforced by pre-commit hooks like black

Public interfaces

Any backwards compatibility guarantees apply only to public interfaces. Public interfaces are modules and packages defined or imported in vdk.api.*. unless the documentation explicitly declares them to be provisional or internal interfaces. Anything else is considered internal. All public interfaces (classes or methods) must have documentation.

Clone this wiki locally