Trouble importing module using swig and python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Basha J P M

    Trouble importing module using swig and python


    I am beginner in python.
    I am working through the tutorial examples from http://www.swig.org/ and
    have run into some problems. I took the following command instructions from
    the tutorial on swig.org:



    I have written example.c and example.i as described in the above tutorial.
    My first attempt at compiling the libraries was this:


    $ swig -python example.i

    it should produce example.py and example_wrap.c files . But i am not getting
    example.py file in the folder where i am executing swig -python example.i

    But with example_wrap.c file i can able to produce _example.so shared object
    like


    gcc -c example.c example_wrap.c \
    -I/vobs/tsp/tools/PYTHON/include/python2.5

    gcc -shared example.o example_wrap.o -o _example.so



    and doing

    ld -shared example.o example_wrap.o -o _example.so

    and when iam trying to import from python like

    import example

    it is saying no module named example.

    My first Question is that should i get example.py in folder and second
    Question is that if it is not neccessary then where i am going wrong ??
    Please help me in this regard.

    regards,
    basha.





    --
    View this message in context: http://www.nabble.com/Trouble-import...p19930052.html
    Sent from the Python - python-list mailing list archive at Nabble.com.

Working...