Naming conventions in Python language and frameworks

Python

StructureCaseExample
ClassUpperCamelCaseMyClass, Class
Functionlowercase, underscoresfunction, my_function
Methodlowercase, underscores_non_public, method
Variablelowercase , underscoresvar, my_var
Modulelowercase, underscoresmodule.py, my_module.py
ConstantUPPERCASE, UNSERSORE_SEPARATEDMY_CONSTANT