473,386 Members | 1,763 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,386 software developers and data experts.

How to pass parameter to a module?

I'd like to parametrize a module. That is, to set and pass
some values into the module, while it is being imported.
I tried this:

# sub_1.py -- main program
extern = "OK"
import sub_2
print sub_2.noway # prints 'no extern' :-(
# EOF

# sub_2.py -- parametrized module, parameter is the 'extern' var
try:
noway = extern
except:
noway = 'no extern'
# EOF

You can guess, it doesn't work.
How can I pass the parameter? Can I?
M-a-S
Jul 18 '05 #1
7 18377
M-a-S wrote:
I'd like to parametrize a module. That is, to set and pass
some values into the module, while it is being imported.
I tried this:

# sub_1.py -- main program
extern = "OK"
import sub_2
print sub_2.noway # prints 'no extern' :-(
# EOF

# sub_2.py -- parametrized module, parameter is the 'extern' var
try:
noway = extern
except:
noway = 'no extern'
# EOF

You can guess, it doesn't work.
How can I pass the parameter? Can I?


Create an additional module sub_2_parameters:
# sub_1.py -- main program
import sub_2_parameters
sub_2_parameters.extern = "OK"
import sub_2

# sub_2.py -- parametrized module, parameter is the 'extern' var
import sub_2_parameters
try:
noway = sub_2_parameters.extern
except:
noway = 'no extern'
# EOF

Note that modules are imported only once so you cannot import sub_2 with one
set of parameters into one module and with another set of variables into
another.

Depending on your problem, it might be better to use the builtin execfile,
because you can pass a dictionary with the parameters to the call.

Daniel

Jul 18 '05 #2
"M-a-S" <NO*****@hotmail.com> schrieb im Newsbeitrag
news:Vw*****************@twister.southeast.rr.com. ..
I'd like to parametrize a module. That is, to set and pass
some values into the module, while it is being imported.
I tried this:

# sub_1.py -- main program
extern = "OK"
import sub_2
print sub_2.noway # prints 'no extern' :-(
# EOF

# sub_2.py -- parametrized module, parameter is the 'extern' var
try:
noway = extern
except:
noway = 'no extern'
# EOF


It looks like you are using modules where you would rather use functions.
exp:
-------------------cut---------
def sub2(blah=None):
if blah is None:
return "no extern"
else:
return blah

sub2('test')
sub2()

HTH

Ciao Ulrich
Jul 18 '05 #3
I thought about the third module. It doesn't sound good.
I hoped there're some tricks with __dict__, frames and
other __...__ objects.

For now, this is what does the task:

# sub_2.py
''' The documentation will look like this:
To set the size of dictionary and search depth,
do before including (default values are shown):
import string
string.sub_2_dictionary_size = 10 # in megabytes
string.sub_2_search_depth = 1000 # in nodes
string.sub_2_max_responce_time = 100 # seconds
'''
import string # it's used in sub_2 anyway
# parameters
try: _DICT_SZ = string.sub_2_dictionary_size
except: _DICT_SZ = 10
try: _DEPTH = string.sub_2_search_depth
except: _DEPTH = 1000
try: _RTIME = string.sub_2_max_responce_time
except: _RTIME = 100
# now the stuff
def do_the_job():
return "Processing with dict=%d depth=%d rtime=%d" % (_DICT_SZ,_DEPTH,_RTIME)
# EOF

# sub_1.py
import string # actually, some module, which is used in sub_2
string.sub_2_dictionary_size = 20 # megabytes
string.sub_2_search_depth = 5000 # nodes
# let's leave sub_2_max_responce_time default
import sub_2
print sub_2.do_the_job()
# EOF

M-a-S

"Daniel Dittmar" <da************@sap.com> wrote in message news:bk**********@news1.wdf.sap-ag.de...
M-a-S wrote:
I'd like to parametrize a module. That is, to set and pass


Create an additional module sub_2_parameters:
# sub_1.py -- main program
import sub_2_parameters
sub_2_parameters.extern = "OK"
import sub_2

# sub_2.py -- parametrized module, parameter is the 'extern' var
import sub_2_parameters
try:
noway = sub_2_parameters.extern
except:
noway = 'no extern'
# EOF

Note that modules are imported only once so you cannot import sub_2 with one
set of parameters into one module and with another set of variables into
another.

Depending on your problem, it might be better to use the builtin execfile,
because you can pass a dictionary with the parameters to the call.

Daniel

Jul 18 '05 #4

"M-a-S" <NO*****@hotmail.com>
I thought about the third module. It doesn't sound good.
I hoped there're some tricks with __dict__, frames and
other __...__ objects.


Well, there are some tricks ;-)
myVariable='great surprise'
import x
........

"This is modul X"
import sys
print sys.modules['__main__'].myVariable
But generally the namespace of a module is ... the module.

Kindly
Michael P
Jul 18 '05 #5
That's what I asked. Thanks!
M-a-S

"Michael Peuser" <mp*****@web.de> wrote in message news:bk*************@news.t-online.com...

"M-a-S" <NO*****@hotmail.com>
I thought about the third module. It doesn't sound good.
I hoped there're some tricks with __dict__, frames and
other __...__ objects.


Well, there are some tricks ;-)
myVariable='great surprise'
import x
.......

"This is modul X"
import sys
print sys.modules['__main__'].myVariable
But generally the namespace of a module is ... the module.

Kindly
Michael P

Jul 18 '05 #6
"M-a-S" <NO*****@hotmail.com> wrote in message news:<Vw*****************@twister.southeast.rr.com >...
I'd like to parametrize a module. That is, to set and pass
some values into the module, while it is being imported.


There are many ways.

(However, classes may fit your need better. "Passing parameters to a
module" is not a common practice, as far as I know.)

(1) Use a built-in namespace variable.

import __builtin__
__builtin__.myvar = 3
print myvar

This is a hack. I have been screamed at for mentioning it. :)

(2) Hack your favorite (non-builtin) module. The module could be any
of the standard library modules, or your own third module.

import sys
sys.myvar = 3

(3) Use environmental variables.

import os
os.environ['myvar'] = 'hello'

You get the idea. Python has three namespaces: built-in, global, and
local. Since global and local namespaces won't go over to the other
module, you need to rely on the built-in namespace, one way or
another. How you want to structure your data (by using the built-in
namespace, a module, a class, a dictionary or any other entities that
can hold a name entry), it's entirely up to you.

Hung Jung
Jul 18 '05 #7
Thank you!

"Hung Jung Lu" <hu********@yahoo.com> wrote in message news:8e**************************@posting.google.c om...
"M-a-S" <NO*****@hotmail.com> wrote in message news:<Vw*****************@twister.southeast.rr.com >...
I'd like to parametrize a module. That is, to set and pass
some values into the module, while it is being imported.


There are many ways.

(However, classes may fit your need better. "Passing parameters to a
module" is not a common practice, as far as I know.)

(1) Use a built-in namespace variable.

import __builtin__
__builtin__.myvar = 3
print myvar

This is a hack. I have been screamed at for mentioning it. :)

(2) Hack your favorite (non-builtin) module. The module could be any
of the standard library modules, or your own third module.

import sys
sys.myvar = 3

(3) Use environmental variables.

import os
os.environ['myvar'] = 'hello'

You get the idea. Python has three namespaces: built-in, global, and
local. Since global and local namespaces won't go over to the other
module, you need to rely on the built-in namespace, one way or
another. How you want to structure your data (by using the built-in
namespace, a module, a class, a dictionary or any other entities that
can hold a name entry), it's entirely up to you.

Hung Jung

Jul 18 '05 #8

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

Similar topics

46
by: J.R. | last post by:
Hi folks, The python can only support passing value in function call (right?), I'm wondering how to effectively pass a large parameter, such as a large list or dictionary? It could achieved...
4
by: Bo Peng | last post by:
Dear list, What I would like to do is something like: In myModule.py ( a wrapper module for different versions of the module), if lib == 'standard': from myModule_std import * elsif lib ==...
5
by: deko | last post by:
I'd like to use a bit of code in the OnOpen event of a report: =rptOpen(Me.ReportName), (Me.Tag) --this doesn't work This does work: Private Sub Report_Open(Cancel As Integer)...
4
by: deko | last post by:
This is a basic program flow question. I'm trying to refractor an AC2000 app and split sections of code into separate modules. But there are a number of collections I create in one big module -...
3
by: Brett | last post by:
I have several classes that create arrays of data and have certain properties. Call them A thru D classes, which means there are four. I can call certain methods in each class and get back an...
6
by: Minfu Lu | last post by:
I have a problem dealing with passing a function address to a COM callback. I use this COM function for communicating to a hardware. My original project was written in VB. I have converted it to...
9
by: grbgooglefan | last post by:
I am trying to pass a C++ object to Python function. This Python function then calls another C++ function which then uses this C++ object to call methods of that object's class. I tried...
1
by: =?Utf-8?B?RGFtaXIgRGV6ZWxqaW4=?= | last post by:
Hi. I have to implement an Java Axis2 web service client in .NET WCF as well a web service to witch a Java Axis2 client will connect. I would like to provide user identification using...
12
by: raylopez99 | last post by:
Keywords: scope resolution, passing classes between parent and child forms, parameter constructor method, normal constructor, default constructor, forward reference, sharing classes between forms....
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.