Here\'s how I am declaring constants and using them across different Python classes:
# project/constants.py GOOD = 1 BAD = 2 AWFUL = 3 # project/question.py
You also have the option, if the constants are tied to a particular class and used privately within that class of making them specific to that class:
class Foo(object): GOOD = 0 BAD = 1 WTF = -1 def __init__(self...
and away you go.