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

Wrapping C with Python

Hi!!
I tried wrapping a simple C code suing SWIG to Python, but am having
problem,
my .c file is,

Step 1:
example.c
--------------
double val=3.0;
int fact(int n)
{
if(n<=1)
return 1;
else
return n*fact(n-1);
}

int mod(int x, int y)
{
return (x%y);
}

Step 2:
I then created interface file as.
example.i
--------------
%module example
%{
%}
extern int fact(int n);
extern int mod(int x,int y);

Step 3:
I compiled the .i file with SWIG,
c:\python25\swigswig -
python example.i
It creates example.py and example_wrap.c

Step 4:
I compiled example.c and example_wrap.c individually
c:\python25\mingw\bin gcc -c example.c (it create
example.o)
c:\python25\mingw\bin gcc -c example_wrap.c -Ic:
\python25\include (it create example_wrap.o)

Step 5:
building .pyd for windows,
c:\python25\mingw\bin gcc -shared *.o -o _example.pyd -Lc:
\python25\libs -lpython25 (it creates _example.pyd)
Then, i imported example module by palcing it in python25 directory,
it get's imported but i'm not able to use function, when i called
>>>print example.fact(4)
print example.mod(4,2)
It is nither showing any error nor message...
even i tried simple void fact() by printf inside .c file and is not
showing ...

hope for help...
regard's
Anish
Aug 4 '08 #1
8 2265
Anish Chapagain wrote:
Hi!!
I tried wrapping a simple C code suing SWIG to Python, but am having
problem,
I am not too familiar with SWIG, (I have looked at it), but you may want
to try ctypes in the standard module library. It's very easy to use. I
use it on Windows with gcc but I believe it works fine on Linux too.
Basically you just compile your C code as a regular C code dll. ctypes
then allows you to access the functions in the dll very easily. I was
concerned that performance might be an issue but that has turned out not
to be true. I'm writing a chess program and the C dll handles the move
generation so it is getting called a lot. So far it runs at about
200,000 calls per second.

Patrick
Aug 4 '08 #2
RPM1 wrote:
....
Basically you just compile your C code as a regular C code dll. ctypes
then allows you to access the functions in the dll very easily.
Does that work with C++ code too or just C?
Aug 4 '08 #3
On 4 Aug, 14:14, brad <byte8b...@gmail.comwrote:
RPM1 wrote:

...
Basically you just compile your C code as a regular C code dll. *ctypes
then allows you to access the functions in the dll very easily.

Does that work with C++ code too or just C?
Hi..
I havenot tried..before with dll, is there any help material and for
me my API in C has almost 20 c files, so will it be feasible

anish
Aug 4 '08 #4
Anish Chapagain wrote:
I tried wrapping a simple C code suing SWIG to Python, but am having
problem,
Try Cython. It's a Python-like language between Python and C that compiles to
C code. It makes it very easy to call into C functions and to hide them behind
a nice Python module.

http://cython.org/

Stefan
Aug 4 '08 #5
brad wrote:
RPM1 wrote:
...
>Basically you just compile your C code as a regular C code dll.
ctypes then allows you to access the functions in the dll very easily.

Does that work with C++ code too or just C?
I believe it does work with C++ although I have not done that. Here's a
simple example:

http://wolfprojects.altervista.org/dllforpyinc.php

I bet if you google around you'll find what you need.

Remember there is documentation for ctypes in the Python documentation
that comes with Python.

Patrick
Aug 4 '08 #6
Anish Chapagain wrote:
On 4 Aug, 14:14, brad <byte8b...@gmail.comwrote:
>RPM1 wrote:

...
>>Basically you just compile your C code as a regular C code dll. ctypes
then allows you to access the functions in the dll very easily.
Does that work with C++ code too or just C?

Hi..
I havenot tried..before with dll, is there any help material and for
me my API in C has almost 20 c files, so will it be feasible

anish
It is worth looking into it. I found ctypes to be very easy. I had the
example up and running in minutes. I have also figured out how to do
things like return arrays to Python. It isn't that hard. I like the
fact that I don't have to think about reference counting or PyObjects
etc. If you are doing simple function calls ctypes is very easy.

My C code looks like C code. It has no Python stuff at all. My Python
code has just a few calls to the ctypes module. I guess that's one
thing I like about it is that my C code looks like C code and my Python
code looks like Python code, (not much spilling over).

I'm sure it's not perfect, but it seems a lot easier than SWIG to me.

Patrick
Aug 4 '08 #7


brad wrote:
RPM1 wrote:
...
>Basically you just compile your C code as a regular C code dll.
ctypes then allows you to access the functions in the dll very easily.

Does that work with C++ code too or just C?
On Windows, You can apparently works either with stdcall or cdecl functions.
"ctypes tries to protect you from calling functions with the wrong
number of arguments or the wrong calling convention. Unfortunately this
only works on Windows. It does this by examining the stack after the
function returns, so although an error is raised the function has been
called:" "To find out the correct calling convention you have to look
into the C header file or the documentation for the function you want to
call." I do not know if these are only C-isms or also C++-isms.
Aug 5 '08 #8
On 4 Aug., 15:14, brad <byte8b...@gmail.comwrote:
RPM1 wrote:

...
Basically you just compile your C code as a regular C code dll. *ctypes
then allows you to access the functions in the dll very easily.

Does that work with C++ code too or just C?
It works if the interface of the DLL is C-style, that is you declare
your
functions with 'extern "C" { .... }' around them.
Inside your modules implementation you can use C++ without any
problems.

What works fine too, is f2py from numpy. It targets at wrapping
Fortran
code, but is able to wrap C code too, see

http://www.scipy.org/Cookbook/f2py_a...Py?action=show

Greetings, Uwe

Greetings, Uwe
Aug 5 '08 #9

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

Similar topics

6
by: USCode | last post by:
Does Python have facilities for wrapping up the interpreter, any necessary modules, GUI library, python scripts, image files, etc. up into a single executable like exists for Tcl/Tk? e.g....
0
by: Terry Hancock | last post by:
Hi all, Suppose you have found a really nice module that does what you want (or will do, it still being in development), and you don't want to waste a lot of duplicated effort, but this module...
13
by: Roy Smith | last post by:
I've got a C library with about 50 calls in it that I want to wrap in Python. I know I could use some tool like SWIG, but that will give me a too-literal translation; I want to make some...
6
by: Andrew Wilkinson | last post by:
Hi, I'm trying to wrap a C++ class hierarchy with Python types and I'd like to maintain the hierarchy in the types. I'm fairly sure this is possible, isn't it? Are there any documents...
4
by: Lawrence Oluyede | last post by:
I've never used metaclasses in real life before and while searching through the online Cookbook I found this gorgeous example: "Wrapping method calls (meta-class example)"...
3
by: gabriel.becedillas | last post by:
Hi, I'm having problems wrapping a hierarchy of classes, actually having problems wrapping the base class. I don't need to use the WrapClass mechanism since I don't want to override classes in...
3
by: Paul Anton Letnes | last post by:
Hello guys, (related to previous thread on wrapping C/C++ in Python, trying the SWIG approach.) Trying to map a C++ class to python, one method for now. Running the following commands to...
2
by: Anish Chapagain | last post by:
Hi!! I'm new to python and have a task for Wrapping up an old program written in C(20.c files), to provide GUI and chart,graph feature in Python. I've tried using SWIG but am not getting well in...
5
by: Charlie | last post by:
Hi All, I am new to using swig/C++/python. I got some problem with function pointers. I posted in swig-user, but got no response. So I forwarded it here. You help is greatly appreciated. ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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,...

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.