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

__import__() with packages

Hi,

I am using the builtin __import__() to import modules. That works for
simple modules like in this example:

m= __import__("eggs")

when there is the module "eggs.py" in the current directory

But how do I do this with packages? A I understand the documentation for
__import__(), it must be something like:

m= __import__("eggs", globals(), locals(), ["spam"])

when there is the package "spam" in the current directory, containing
the module "eggs".
But that doesn't work. I tried it in some different forms. The only one
that works in some way is:

m= __import__("spam.eggs")

But that is not what I want, since I get "spam" as a module:
<module 'spam' from 'spam/__init__.pyc'>

So what am I doing wrong here?

Marco

--
Marco Herrn he***@gmx.net
(GnuPG/PGP-signed and crypted mail preferred)
Key ID: 0x94620736

Jul 18 '05 #1
5 3496
Marco Herrn <he***@gmx.net> writes:
I am using the builtin __import__() to import modules. That works for
simple modules like in this example:
[...]
But how do I do this with packages? A I understand the documentation
for __import__(), it must be something like:


Look again at the documentation for __import__. In particular, you
want a function like the following, given in the dicumentation:

def my_import(name):
mod = __import__(name)
components = name.split('.')
for comp in components[1:]:
mod = getattr(mod, comp)
return mod

Then, you do

eggs = my_import("spam.eggs")

I have to admit, I find this annoyingly subtle - 99.99% of the time,
it's my_import() that you want, but you have to define it yourself...

Ah, well. I hope this helps.

Paul
--
This signature intentionally left blank
Jul 18 '05 #2

"Marco Herrn" <he***@gmx.net> wrote in message
news:c4*************@ID-165840.news.uni-berlin.de...
Hi,

I am using the builtin __import__() to import modules. That works for
simple modules like in this example:

m= __import__("eggs")

when there is the module "eggs.py" in the current directory

But how do I do this with packages? A I understand the documentation for
__import__(), it must be something like:

m= __import__("eggs", globals(), locals(), ["spam"])

when there is the package "spam" in the current directory, containing
the module "eggs".
But that doesn't work. I tried it in some different forms. The only one
that works in some way is:

m= __import__("spam.eggs")

But that is not what I want, since I get "spam" as a module:
<module 'spam' from 'spam/__init__.pyc'>

So what am I doing wrong here?
You're doing everything correctly, just not quite enough.
What you've got is an almost empty module named "spam",
which contains another module bound to the identifier "eggs".

So what you need to do is:

m = __import__("spam.eggs")
eggs = spam.eggs

This will probably also work:

eggs = __import__("spam.eggs").eggs

HTH

John Roth
Marco

--
Marco Herrn he***@gmx.net
(GnuPG/PGP-signed and crypted mail preferred)
Key ID: 0x94620736

Jul 18 '05 #3
On 2004-04-04, John Roth <ne********@jhrothjr.com> wrote:
m = __import__("spam.eggs")
eggs = spam.eggs

This will probably also work:

eggs = __import__("spam.eggs").eggs


Thanks,
but in my application I read the names of the modules from a file,
so I do not know them when writing (in this case I wouldn't know the
name 'eggs'). Since
--
Marco Herrn he***@gmx.net
(GnuPG/PGP-signed and crypted mail preferred)
Key ID: 0x94620736

Jul 18 '05 #4
Sorry, accidently sent out the unfinished message.

On 2004-04-04, John Roth <ne********@jhrothjr.com> wrote:
m = __import__("spam.eggs")
eggs = spam.eggs

This will probably also work:

eggs = __import__("spam.eggs").eggs


Thanks,
but in my application I read the names of the modules from a file,
so I do not know them when writing (in this case I wouldn't know the
name 'eggs'). Since the solution from Paul works for me, I will use
that.

Marco
--
Marco Herrn he***@gmx.net
(GnuPG/PGP-signed and crypted mail preferred)
Key ID: 0x94620736

Jul 18 '05 #5
Marco Herrn <he***@gmx.net> wrote in message news:<c4*************@ID-165840.news.uni-berlin.de>...
Thanks,
but in my application I read the names of the modules from a file,
so I do not know them when writing (in this case I wouldn't know the
name 'eggs'). Since the solution from Paul works for me, I will use
that.


There is an easier way: all imported modules are listed in the
sys.modules namespace dictionary. So,

import sys
__import__('spam.eggs')
my_module = sys.modules['spam.eggs']

regards,

Hung Jung
Jul 18 '05 #6

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

Similar topics

4
by: Coder Coder | last post by:
Hi, Can someone help me with how to overload the __import__ function, so that I can call the old __import__ function and if it cannot find the library to be able to do something else. - Thanks.
1
by: bwobbones | last post by:
Hi, I'm having trouble making __import__ work with the two classes attached. The PrintHello() method can't be seen in the BMTest2 class - what am I doing wrong here? ...
2
by: Wensheng | last post by:
I have a py program below: -------------------------------- class someclass: def __init__(self): self.var = "hell, world" def printitout(self): execfile("printit.py") #__import__("printit")...
2
by: Steve Juranich | last post by:
If this is a FAQ, please let me know where the answer is. I have in some code an 'eval', which I hate, but it's the shortest path to where I need to get at this point. I thought that one way I...
0
by: Thomas Dybdahl Ahle | last post by:
Hi, I'm writing a gdesklets control, that dynamicly uses __import__ and getattr to get the right classes based on userinput. The problem is, that my control is somehow being run from somewhere...
0
by: Mitko Haralanov | last post by:
Hi all, I am going to do my best to describe the issue that I am having and hopefully someone can shed some light on it: I have three modules that a comprising the problem: ../core.py...
1
by: Harold Fellermann | last post by:
Dear list, I looked through the list but could not find any solutions for my current problem. Within my program, I am importing a module via __import__(module_name,globals(),locals()) and I...
4
by: Joshua Kugler | last post by:
We've recently been doing some profiling on a project of ours. It runs quite fast on Linux but *really* bogs down on Windows 2003. We initially thought it was the simplejson libraries (we don't...
2
kaarthikeyapreyan
by: kaarthikeyapreyan | last post by:
Query about the __import__ function ~pwd /home/preyan/test ~ls sample.py ~python >>> mod=__import__('sample') >>> amod=__import__('/home/preyan/test/sample') >>>
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
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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: 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
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.