Coding Conventions
Before continuing…
Make sure that you have read and understood PEP 8 - Style Guide for Python Code
picurl specific-conventions
- ClassNames... always in CamelCase and never in
mixedCase
- class_method()... always lowercase with underscore
- module names and packages ... always lowercase and singular (
stores, store)
to be updated further when necessary ;-)
