Hi All,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I am new to the boost python api and had a few basic questions where I got stuck. <br><br>I am writing an application in C++ which has modules written so that they can be invoked in a command type format. 
<br>For example commands like, <br><br>draw_line(),<br>draw_circle() <br><br>etc are implemented. I compiled these with boost python to the corresponding .lib and .pyd <br><br>After that I write a simple script which imports the module and then calls these commands. 
<br><br>for example..<br><br>import mymodule<br><br>draw_line()<br>draw_circle()<br><br>-----------------------------------------------------------------------------------------------------------<br><br>Now can the embedded python interpreter to call this file as a regular script or do I need any changes. 
<br><br>I tried doing it this way and it gives me a lot of errors though I can import the module with regular python interpreter. <br><br>Am sorry for such a stupid question but I am stuck at it. I will really appreciate any help.
<br>thanks<br>Satyajit<br>