<div dir="ltr">Hi,<div>We are using Python for .Net to create an API.</div><div>C# Assembly is called by Python script to access API methods.</div><div><br></div><div><div>import sys</div><div>sys.path.append(r"C:\myfolderA\myfolderB")<br></div><div>print sys.path</div><div>import clr</div><div>clr.FindAssembly(r"<a href="http://AA.BB.CC">AA.BB.CC</a>")</div><div>clr.AddReference(r"<a href="http://AA.BB.CC">AA.BB.CC</a>")</div><div>from AA.BB.CC.Api.DDInterface import DDClient<br></div></div><div>On the above line I am getting following error</div><div><br></div><div><div>Traceback (most recent call last):</div><div>  File "C:\myfolderA\myfolderB\testAPI.py", line 7, in <module></div><div>    from AA.BB.CC.Api.DDInterface import DDClient</div><div>ImportError: No module named AA.BB.CC.Api.DDInterface</div></div><div><br></div><div>There is no other information available to exactly identify the issue.</div><div>Dlls from same project built 15 days back works fine.</div><div>This project may have gone through few changes in between.</div><div>How to exactly identify this issue?</div><div><br></div><div>Could this be a dependency issue? I tried code decompile to compare old dlls and new ones.</div><div>Couldn't find anything unusual.</div><div><br></div><div>I am using Python27</div><div><br></div><div>Your help is deeply appreciated.</div><div><br></div><div>Thanks,</div><div>Murali</div></div>