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

usage of __import__ across two files

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?

****************************
class one - BMTest - in BMTest.py:
****************************
import wx
from traceback import print_exc

class ImportTest(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, -1, "ImportTest",
size = (666,480), style = wx.DEFAULT_FRAME_STYLE)
#tb = BMToolBar(self) # works just fine!
tb = __import__('BMTest2')
tb2.PrintHello()
class MyApp(wx.App):
def __init__(self, flag):
wx.App.__init__(self, flag)
def OnInit(self):
frame = ImportTest()
self.SetTopWindow(frame)
return True

if __name__ == '__main__':
try:
app = MyApp(False)
app.MainLoop()
except:
print print_exc()

**************************
class 2 BMTest2 - in BMTest2.py:
**************************
import wx

class BMToolBar(wx.ToolBar):
def __init__(self, parentFrame):
wx.ToolBar.__init__(self, parentFrame, -1,
style=wx.TB_HORIZONTAL|wx.NO_BORDER|wx.TB_FLAT|wx. TB_TEXT)
print "*** gday ***"
self.Realize()

def PrintHello(self):
print "Hello"

Any help will be much appreciated!

Bones
Jul 18 '05 #1
1 1398

"bwobbones" <bw*******@gmail.com> wrote in message
news:ma**************************************@pyth on.org...
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?

[snip]
tb = __import__('BMTest2')
tb2.PrintHello()
Shouldn't this be tb.PrintHello() ?

[snip]

Any help will be much appreciated!

Bones


John Roth

Jul 18 '05 #2

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

Similar topics

5
by: Marco Herrn | last post by:
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...
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.
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...
1
by: Tim T. | last post by:
I'm currently working on a report to forecast production for finished goods. The user can select one or more items to forecast. In addition, they may select one or more warehouses to view...
2
by: HajoEhlers | last post by:
Hi folks, i have an failover environment for a python application which can fail-over to a AIX, Sun or Linux Box. At the moment the python interpreter ( 2.4.2 on all platforms ) and the...
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: 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
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
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,...
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.