Skip to content

Programming Style Guide

Connie Gao edited this page Jan 26, 2016 · 1 revision

The rmgpy package contains all of the functionality of RMG.

RMG-Py naming conventions in brief:

  • module names are in lowercase
  • Class and Exception names start with capital letters (e.g., CamelCase)
  • all instances of Classes are mixed-case and begin with lower-case letters (e.g., camelCase)

In general, refer to the Python Style Guide for reference.

Clone this wiki locally