- Recommendation features by ingredients
-
Coding Conventions
- Indentation uses four spaces.
- Float two lines to distinguish between top-level functions and class declarations.
- Float a line to divide methods within a class.
- No more than 79 characters per line.
- The package name is all lowercase, and although not recommended, _ can be used.
- The module name must consist only of lowercase letters and ________________.
- The class name follows the CapWords convention.
- Variable names and function names use only lowercase letters and use __ for distinction.