Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have done searches on Google and here at Stackoverflow but can not find what I am looking for.

I am relatively new to Python. I looking to create a "settings" module where various application specific constants will be stored.

Here is how I am wanting to setup my code

settings.py

CONSTANT = 'value'

script.py

import settings

def func():
    var = CONSTANT
    --- do some more coding ---
    return var

I am getting a Python error stating: "global name 'CONSTANT' is not defined.

I have noticed on Django's source code their settings.py file has constants named just like I do. I am confused on how they can be imported to a script and referenced through the application.

EDIT

Thank you for all your answers! I tried the following:

import settings

print settings.CONSTANT

I get the same error: ImportError: cannot import name CONSTANT

share|improve this question
1  
That makes not sense. you should be getting an AttributeError if settings doesn't define CONSTANT and an ImportError if it can't import settings, in which case it wouldn't even look at CONSTANT – aaronasterling Sep 29 '10 at 19:07
Is there something I am doing wrong then? – Lark Sep 29 '10 at 19:14
1  
Put the two lines that you posted last in a file by it self exactly as you posted them and see if it works. – aaronasterling Sep 29 '10 at 20:58
Thank you everyone for all your help. I figured it out. It had to do with the placement of the init.py file. I was trying to import settings so python was looking couldn't find it so once I referenced the "modules" directory settings was in, everything worked properly. So basically my import statement looks like this: from modules import settings. I think there is a better way to do this, a more pythonic, so I am going to try different combinations. Again thank you for all your answers. – Lark Sep 30 '10 at 11:26

7 Answers

up vote 55 down vote accepted

The easiest way to do this is to just have settings be a module.

(settings.py)

CONSTANT1 = "value1"
CONSTANT2 = "value2"

(consumer.py)

import settings

print settings.CONSTANT1
print settings.CONSTANT2

When you import a python module, you have to prefix the the variables that you pull from it with the module name. If you know exactly what values you want to use from it in a given file and you are not worried about them changing during execution, then you can do

from settings import CONSTANT1, CONSTANT2

print CONSTANT1
print CONSTANT2

but I wouldn't get carried away with that last one. It makes it difficult for people reading your code to tell where values are coming from. and precludes those values being updated if another client module changes them. One final way to do it is

import settings as s

print s.CONSTANT1
print s.CONSTANT2

This saves you typing, will propagate updates and only requires readers to remember that anything after s is from the settings module.

share|improve this answer
+1 made my answer obsolete – delnan Sep 29 '10 at 18:08
@delnan I specifically avoided mentioning the mechanics so as to not make your answer obsolete ;) – aaronasterling Sep 29 '10 at 18:11
Well, practically obsolete ;) Knowing the exact semantics is useful and preferable, but to make it work, it's not needed - though it is necessary to know the implications of it, which are pretty much summarzied in your answer. – delnan Sep 29 '10 at 18:16
I though the idea of constant is that it cannot be changed on runtime? – Lie Ryan Sep 30 '10 at 11:40
@Lie Ryan, Python doesn't have constants. On multiprogrammer projects, you never know. – aaronasterling Sep 30 '10 at 11:51
show 5 more comments

When you import settings, a module object called settings is placed in the global namespace - and this object carries has that was in settings.py as attributes. I.e. outside of settings.py, you refer to CONSTANT as settings.CONSTANT.

share|improve this answer

See the answer I posted to Can I prevent modifying an object in Python? which does what you want (as well as force the use of UPPERCASE identifiers). It might actually be a better answer for this question than it was for the the other.

share|improve this answer

Leave your settings.py exactly as it is, then you can use it dust as Django does:

import settings

def func():
    var = settings.CONSTANT
share|improve this answer

...Or, if you really want all the constants from settings.py to be imported into the global namespace, you can run

from settings import *

...but otherwise using settings.CONSTANT, as everyone else has mentioned here, is quite right.

share|improve this answer
See my answer for all three possible ways to use the import statement. – aaronasterling Sep 29 '10 at 18:15
2  
Actually, this is not advisable. See e.g. docs.python.org/howto/doanddont.html#from-module-import. Although in this case it has the propably desirable side effect that changes to the constants won't affect other modules. – delnan Sep 29 '10 at 18:18
1  
Nicely said, @AaronMcSmooth. And technically I didn't say it was advisable to import *, just that it was possible :P – ewall Sep 29 '10 at 18:21
@delnan. I'm not so sure that that's desirable. It depends on the application but It could just as likely be that changes should be propagated (if they even occur) – aaronasterling Sep 29 '10 at 18:21

Try this:

In settings.py:

CONSTANT = 5

In your main file:

from settings import CONSTANT

class A:
    b = CONSTANT

    def printb(self):
         print self.b

I think your above error is coming from the settings file being imported too late. Make sure it's at the top of the file.

share|improve this answer

I'm new in python but if we define an constant like a function on setings.py

def CONST1():
    return "some value"

main.py

import setings

print setings.CONST1() ##take an constant value

here I see only one, value cant be changed but its work like a function..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.