I have a package containing many modules. Each module uses constants that I have defined independently in each file. However, all these constants have to be constistent with each other. So I try to define them in a single file and import it in each file. When I run it I have errors for constants not found.
Is their a clean way to have a single file imported by many others and containing constants ?
Thanks for your help
You can declare all your constants in one file, say constants.py
and then import them into others. Here is an example:
# constants.py
FOO = 'foo'
PI = 3.14
# main.py
import constants
print constants.PI
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With