473,401 Members | 2,127 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,401 software developers and data experts.

Global var access in imported modules?

I have a main module doStuff.py and another module utility.py. At the
start of doStuff.py I call

import utility.py

Then I also proceed to initiallize some global variables

sName = ""

Then I create a class, some methods etc. In one of the methods I assign
a value to my variable sName. Then I call a function from within
my utility.py file:

utility.makeOne(stuff)
Within my utility.py file, I define the makeOne function. But I want to
use that same global variable "sName" In utility.py I have tried to
indicate that I'm using the global "sName" through the statement:

global sName

But when I go to use the variable it still gives me an error:

NameError: global name 'sName' is not defined

I thought perhaps I need to indicate 'globality' in my main module, so
before I initiallized sName in doStuff.py I added:

global sName

But it doesn't help me. I had this issue before and resolved it by
declaring the variable global in the sub-module utility.py, but then I
needed to reference it in my main module with a prefix:

utility.sName = ""

It's more verbose,and defining globals in a submodule seems backward.
But also, what if I need to access "sName" in another imported module,
say "otherstuff.py"? I would do my "import otherstuff" call in my main
module, but would I have to put an "import utility" into the
otherstuff.py file?

Is there some way I can define globals in my main module, and have them
accessible in all my imported submodule?

As you can see I'm a little unsure about the global handling in a
multi-module environment. Any suggestions appreciated. I've read
http://docs.python.org/ref/naming.html but it hasn't enlightened me on
this one.
Aug 27 '08 #1
4 5961
RgeeK wrote:
I have a main module doStuff.py and another module utility.py. At the
start of doStuff.py I call

import utility.py
that tries to import a module named "py" from the package "utility".
Then I also proceed to initiallize some global variables

sName = ""
Within my utility.py file, I define the makeOne function. But I want to
use that same global variable "sName" In utility.py I have tried to
indicate that I'm using the global "sName" through the statement:

global sName
the "global" directive in Python is used *inside* a function or method
to indicate that a given name is not local.

Python doesn't have "program-wide global" variables; if you need that,
create a support module and import that module everywhere you need to
access those variables:

# file: globalvars.py
sName = ""

# file: myprogram.py
import globalvars
print globalvars.sName

etc.

</F>

Aug 27 '08 #2
Rgg
Fredrik Lundh wrote:
> import utility.py
that tries to import a module named "py" from the package "utility".
oops - that was just a typo in my post - I meant of course "import utility"
>
Python doesn't have "program-wide global" variables; if you need that,
create a support module and import that module everywhere you need to
access those variables:

# file: globalvars.py
sName = ""

# file: myprogram.py
import globalvars
print globalvars.sName

etc.

</F>
That's news - thanks, I didn't realize that there just wasn't the
concept of program-wide globals. The support module idea sounds like a
path forward.

-R.
Aug 28 '08 #3
Fredrik Lundh wrote:
> import utility.py
that tries to import a module named "py" from the package "utility".
oops - that was just a typo in my post - I meant of course "import utility"
>
Python doesn't have "program-wide global" variables; if you need that,
create a support module and import that module everywhere you need to
access those variables:

# file: globalvars.py
sName = ""

# file: myprogram.py
import globalvars
print globalvars.sName

etc.

</F>
That's news - thanks, I didn't realize that there just wasn't the
concept of program-wide globals. The support module idea sounds like a
path forward.

-R.

Aug 28 '08 #4
Dennis Lee Bieber wrote:
On Wed, 27 Aug 2008 16:21:03 -0400, RgeeK <Ro**@no.thanks.spammers>
declaimed the following in comp.lang.python:
>I have a main module doStuff.py and another module utility.py. At the
start of doStuff.py I call

import utility.py

I hope not... import utility no .py
>Then I also proceed to initiallize some global variables
Python does not have global variables. Names belong within a module
(or within functions defined within the module).
>sName = ""

Then I create a class, some methods etc. In one of the methods I assign
a value to my variable sName. Then I call a function from within
my utility.py file:

utility.makeOne(stuff)
Within my utility.py file, I define the makeOne function. But I want to
use that same global variable "sName" In utility.py I have tried to
indicate that I'm using the global "sName" through the statement:

global sName
The global statement is only used within functions (def blocks) to
indicate that "writes" to the specified name are to modify the MODULE
level version of the name, otherwise a write modifies a function local
version of the name (you don't need global for read-only access of
names, the search for names first looks inside the function, then out to
the module)
>But when I go to use the variable it still gives me an error:

NameError: global name 'sName' is not defined

I thought perhaps I need to indicate 'globality' in my main module, so
before I initiallized sName in doStuff.py I added:

global sName

But it doesn't help me. I had this issue before and resolved it by
declaring the variable global in the sub-module utility.py, but then I
needed to reference it in my main module with a prefix:

utility.sName = ""

It's more verbose,and defining globals in a submodule seems backward.
But also, what if I need to access "sName" in another imported module,
say "otherstuff.py"? I would do my "import otherstuff" call in my main
module, but would I have to put an "import utility" into the
otherstuff.py file?
If you really need "globals" the common solution is to create a
module such as "myglobals", define all the shared names within that
module, and import that module where ever you need access to one of the
names. And yes, you will need to qualify all those names with the module
name (though you can do things like:

import myglobals as mg

and then use

mg.somename

instead of

myglobals.somename)

Thanks for the reply. Good to see that approach has broad support :)
I'll do that. I like the idea of a nice short alias for the import to
keep the qualifications brief.

Ross.
Aug 28 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Jason | last post by:
Hi, I've been having trouble understanding the difference between global namespace within and between modules. For example, I can program a subthread to see a global name (a threaded event to...
4
by: Bart | last post by:
Hi all I don't understand globals between multiple modules in a python program. I really don't. I've narrowed it down to the following two very simple programs a.py and b.py. When I run a.py I...
2
by: P K | last post by:
Hi, I have an Enum which I need to use in many pages and many classes written in asp.net 2.0 I would like to have a central repository for the enum so that changes can be made once. Also I would...
1
by: rodrigostrauss | last post by:
Having the following code: ==== Module1.py ==== import logging def X(): logging.error('test') If I import it into PythonWin console and call X(), the error message is not printed. If I do...
9
by: Joseph Wakeling | last post by:
Hello all, I sometimes make use of global variables within modules, which I denote with "static" so that they will not be seen outside the module, and will preserve values between module calls....
3
by: Mohamed Yousef | last post by:
Hello , The problem I'm asking about is how can imported modules be aware of other imported modules so they don't have to re-import them (avoiding importing problems and Consicing code and...
0
by: Mohamed Yousef | last post by:
Hello , The problem I'm asking about is how can imported modules be aware of other imported modules so they don't have to re-import them (avoiding importing problems and Consicing code and...
0
by: Terry Reedy | last post by:
Mohamed Yousef wrote: If you want to use module A in both B and C, B and C should both import A. No problem. ??
0
by: Gabriel Genellina | last post by:
En Sun, 24 Aug 2008 07:34:41 -0300, Mohamed Yousef <harrrrpo@gmail.comescribió: Yes. That way, when you see a name "foo" used in a module, you can look at the imports to see where it comes from....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.