Coding Style

This page describes the coding conventions used in the gispython.org projects. Their purpose is to encourage developers produce readable and maintainable code.

Author: Kai Hänninen Status: Tentative

Coding conventions

  • Syntax rules from Python's PEP 8
  • Use always absolute imports (even when importing from the same module)
  • Docstrings for all functions/methods/classes
  • Write unit tests
  • What else?

Resources