Hi,
Kevin Holleran wrote:
Traceback (most recent call last):
File "testing.py", line 1, in
from Sub_Dir.My_Class import *
ImportError: No module named Sub_Dir.My_Class
Make sure, the script you execute by passing it to the python
interpreter is in the parent directory of Sub_Dir.
A
Thanks, you got me straightened out.
--
Kevin Holleran
Master of Science, Computer Information Systems
Grand Valley State University
Master of Business Administration
Western Michigan University
SANS GCFA, SANS GCFE, CCNA, ISA, MCSA, MCDST, MCP
"Do today what others won't, do tomorrow what other
In Kevin Holleran
writes:
> I have a class called My_Class in a subdir called Sub_Dir.
> in My_Class.py is the following
> class My_Class_Connector:
> def __init__(self,un,pw,qs_srv="domain.com"):
> self.username = un
> self.password = pw
> Then I am trying to call from a