Tagged Questions
`ctypes` is a Python package that wraps C .dll/.so libraries in pure Python.
44
votes
8answers
6k views
Wrapping a C library in Python: C, Cython or ctypes?
I want to call a C library from a Python application. I don't want to wrap the whole API, only the functions and datatypes that are relevant to my case. As I see it, I have three choices:
Create an ...
19
votes
9answers
8k views
Python: SWIG vs ctypes
In python, under what circumstances is SWIG a better choice than ctypes for calling entry points in shared libraries? Let's assume you don't already have the SWIG interface file(s). What are the ...
12
votes
3answers
330 views
How can I call inlined machine code in Python on Linux?
I'm trying to call inlined machine code from pure Python code on Linux. To this end, I embed the code in a bytes literal
code = b"\x55\x89\xe5\x5d\xc3"
and then call mprotect() via ctypes to allow ...
12
votes
7answers
2k views
Prototyping with Python code before compiling
I have been mulling over writing a peak fitting library for a while. I know Python fairly well and plan on implementing everything in Python to begin with but envisage that I may have to re-implement ...
10
votes
2answers
3k views
How to pack and unpack using ctypes (Structure <-> str)
This might be a silly question but I couldn't find a good answer in the docs or anywhere.
If I use struct to define a binary structure, the struct has 2 symmetrical methods for serialization and ...
9
votes
1answer
141 views
Memory leak when using shared library with thread local storage via ctypes in a python program
I am using the ctypes module in python to load a shared c-library , which contains thread local storage. Its a quite large c-library with a long history, that we are trying to make thread safe. The ...
9
votes
3answers
665 views
How do I prevent a C shared library to print on stdout in python?
I work with a python lib that imports a C shared library that prints on stdout. I want a clean output in order to use it with pipes or to redirect in files. The prints are done outside of python, in ...
9
votes
3answers
3k views
How to use C++ classes with ctypes?
I'm just getting started with ctypes and would like to use a C++ class that I have exported in a dll file from within python using ctypes.
So lets say my C++ code looks something like this:
class ...
9
votes
1answer
3k views
Pointers and arrays in Python ctypes
I have a DLL containing a C function with a prototype like this:
int c_read_block(uint32 addr, uint32 *buf, uint32 num);
I want to call it from Python using ctypes. The function expects a pointer to ...
8
votes
4answers
376 views
numpy calling sse2 via ctypes
In brief, I am trying to call into a shared library from python, more specifically, from numpy. The shared library is implemented in C using sse2 instructions. Enabling optimisation, i.e. building the ...
7
votes
1answer
205 views
Getting type/size of `time_t` using ctypes
I'm accessing a C struct which contains some time_t fields using python ctypes module.
Given its non completely portable nature, I cannot define these fields statically as of c_int or c_long type.
...
7
votes
3answers
1k views
How do I pass large numpy arrays between python subprocesses without saving to disk?
Is there a good way to pass a large chunk of data between two python subprocesses without using the disk? Here's a cartoon example of what I'm hoping to accomplish:
import sys, subprocess, numpy
...
7
votes
2answers
691 views
long double returns and ctypes
i have a c function which returns a long double. i'd like to call this function from python using ctypes, and it mostly works. setting so.func.restype = c_longdouble does the trick -- except that ...
6
votes
2answers
149 views
Can Python call Delphi functions in a DLL?
I am trying to call functions from a DLL which seems to be created in Delphi. An example of a some functions supported by the DLL are:
function oziDeleteWpByName(var name:pansichar):integer;stdcall
...
6
votes
1answer
127 views
ctypes pointer into the middle of a numpy array
I know how to get a ctypes pointer to the beginning of a numpy array:
a = np.arange(10000, dtype=np.double)
p = a.ctypes.data_as(POINTER(c_double))
p.contents
c_double(0.0)
however, I need to pass ...
6
votes
2answers
229 views
Prevent automatic type conversion in ctypes callback functions
When wrapping Python functions with a CFUNCTYPE type, I've found that the non-pointer types are automatically converted as though their value attribute was called.
How can I suppress this automatic ...
6
votes
1answer
1k views
Getting data from ctypes array into numpy
I am using a Python (via ctypes) wrapped C library to run a series of computation. At different stages of the running, I want to get data into Python, and specifically numpy arrays.
The wrapping I ...
6
votes
2answers
468 views
Passing a list of strings to from python/ctypes to C function expecting char **
I have a C function which expects a list \0 terminated strings as input:
void external_C( int length , const char ** string_list) {
// Inspect the content of string_list - but not modify it.
}
...
6
votes
3answers
393 views
6
votes
1answer
3k views
How can I unload a DLL using ctypes in Python?
I'm using ctypes to load a DLL in Python. This works great.
Now we'd like to be able to reload that DLL at runtime.
The straightforward approach would seem to be:
1. Unload DLL
2. Load DLL
...
5
votes
2answers
190 views
Accessing bitfields while reading/writing binary data structures
I'm writing a parser for a binary format. This binary format involves different tables which are again in binary format containing varying field sizes usually (somewhere between 50 - 100 of them).
...
5
votes
2answers
338 views
Array allocation of SWIG C++ type from Python
I'm writing a python script for a program that has exposed its C++ API using SWIG.
A SWIG exposed function has an interface like this:
void writePixelsRect(JoxColor* colors, int left, int top, int ...
5
votes
3answers
559 views
ctypes import not working on python 2.5
I am trying to import ctypes, and I am using Python 2.5.5 installed using macports (on Mac OS X 10.6).
I get an error saying "ImportError: No module named _ctypes" (see details below). As I ...
5
votes
2answers
854 views
How do I link and built a dynamic link library correctly?
I am in linux. My Makefile file is this
main2: main.cpp
g++ -c $(LIBS) $(CFLAGS) -fPIC main.cpp
g++ -shared main.o -o main.so
Where,
SDL_CFLAGS := $(shell sdl-config --cflags)
SDL_LDFLAGS := ...
5
votes
1answer
466 views
Python and ctypes: how to correctly pass “pointer-to-pointer” into DLL?
I have a DLL that allocates memory and returns it. Function in DLL is like this:
void Foo( unsigned char** ppMem, int* pSize )
{
* pSize = 4;
* ppMem = malloc( * pSize );
for( int i = 0; i < ...
5
votes
2answers
1k views
list exported functions from dll with ctypes
Is there anyway to know which functions exported from the dll througth python foreign function library -ctypes-
and if possible to know details about the exported functions throught ctypes.
if yes ...
5
votes
1answer
685 views
Python ctypes callback function to SWIG
I have a SWIG C++ function that expects a function pointer (WNDPROC), and want to give it a Python function that has been wrapped by ctypes.WINFUNCTYPE.
It seems to me that this should be compatible, ...
5
votes
6answers
983 views
IO completion port key confusion
I'm writing an IO completion port based server (source code here) using the Windows DLL API in Python using the ctypes module. But this is a pretty direct usage of the API and this question is ...
5
votes
3answers
3k views
Changing LD_LIBRARY_PATH at runtime for ctypes
How do you update this environment variable at runtime so that ctypes can load a library wherever? I've tried the following and neither seem to work.
from ctypes import *
...
5
votes
2answers
517 views
Running unexported .dll functions with python
This may seem like a weird question, but I would like to know how I can run a function in a .dll from a memory 'signature'. I don't understand much about how it actually works, but I needed it badly. ...
4
votes
1answer
26 views
Python function reference being passed into constructor turns into c_void_p datatype
To make a long story short, I'm trying to pass a list of dictionaries into a container class, with the intention that each dictionary will be used to instantiate another class. The problem is that ...
4
votes
1answer
80 views
Segfault with ctypes when returning a struct - 32 bit linux
so I am getting a segfault from ctypes on a 32 bit linux machine that I can't reproduce on 64 bit darwin or linux.
Here is the C:
typedef struct {
void *ptr;
} doodle;
doodle ...
4
votes
4answers
193 views
ctypes variable length structures
Ever since I read Dave Beazley's post on binary I/O handling (http://dabeaz.blogspot.com/2009/08/python-binary-io-handling.html) I've wanted to create a Python library for a certain wire protocol. ...
4
votes
1answer
107 views
Sanitize python slice?
I am using Python/ctypes to wrap a C library. One of the structures I am wrapping resembles a numerical vector, and I would like the getitem() method of the corresponding Python class to support ...
4
votes
2answers
146 views
Calling uname from libc with Pythons ctypes
tl;dr
this works with the GNU version of libc (haven't tried it with uclibc yet)
from ctypes import *
libc = CDLL('libc.so.6')
class uts_struct(Structure):
_fields_ = [ ('sysname', c_char * ...
4
votes
1answer
482 views
Accessing the HIDAPI library in python
I am trying to use python to communicate with a generic HID device.
I have read that the HIDAPI library, written in C, beats libusb1.0 for simple and stable cross-platform HID communication. ...
4
votes
4answers
216 views
What is the fastest way in python to build a c array from a list of tuples of floats?
The context: my Python code pass arrays of 2D vertices to OpenGL.
I tested 2 approaches, one with ctypes, the other with struct, the latter being more than twice faster.
from random import random
...
4
votes
2answers
234 views
Python differences between running as script and running via interactive shell
I am attempting to debug a problem with a ctypes wrapper of a windows DLL and have noticed differences when I run tests via an interactive shell (python or ipython) and when I run the scripts ...
4
votes
2answers
386 views
Python reference count and ctypes
Hallo,
I have some troubles understanding the python reference count.
What I want to do is return a tuple from c++ to python using the ctypes module.
C++:
PyObject* foo(...)
{
...
return ...
4
votes
2answers
403 views
Python, ctypes and mmap
I am wondering if it is possible for the ctypes package to interface with mmap.
Currently, my module allocates a buffer (with create_string_buffer) and then passes that using byref to my libraries ...
4
votes
1answer
270 views
Accessing the content of a variable array with ctypes
I use ctypes to access a file reading C function in python. As the read data is huge and unknown in size I use **float in C .
int read_file(const char *file,int *n_,int *m_,float **data_) {...}
The ...
4
votes
1answer
84 views
ctypes behaving strangely in Python interpreter
I am having a funny issue with ctypes; while it seems to work in regular python scripts, when I use it in the interpreter with printf() it prints the length of the string after the string itself. A ...
4
votes
4answers
328 views
Help me understand why my trivial use of Python's ctypes module is failing
I am trying to understand the Python "ctypes" module. I have put together a trivial example that -- ideally -- wraps the statvfs() function call. The code looks like this:
from ctypes import *
...
4
votes
1answer
365 views
efficiently convert string (or tuple) to ctypes array
I've got code that takes a PIL image and converts it to a ctypes array to pass out to a C function:
w_px, h_px = img.size
pixels = struct.unpack('%dI'%(w_px*h_px), img.convert('RGBA').tostring())
...
4
votes
4answers
548 views
I need to speed up a function. Should I use cython, ctypes, or something else?
I'm having a lot of fun learning Python by writing a genetic programming type of application.
I've had some great advice from Torsten Marek, Paul Hankin and Alex Martelli on this site.
The program ...
4
votes
1answer
652 views
Python objects as userdata in ctypes callback functions
The C function myfunc operates on a larger chunk of data. The results are returned in chunks to a callback function:
int myfunc(const char *data, int (*callback)(char *result, void *userdata), void ...
4
votes
3answers
1k views
How do I interact with MATLAB from Python?
A friend asked me about creating a small web interface that accepts some inputs, sends them to MATLAB for number crunching and outputs the results. I'm a Python/Django developer by trade, so I can ...
4
votes
1answer
890 views
Python: Extracting data from buffer with ctypes
I am able to successfully call a function with ctypes in Python. I now have a buffer that is filled with Structures of data I want to extract. What is the best strategy for this? Anything else I ...
4
votes
4answers
1k views
Ctypes pro and con
I have heard that Ctypes can cause crashes (or stop errors) in Python and windows. Should I stay away from their use? Where did I hear? It was back when I tried to control various aspects of windows, ...
4
votes
5answers
2k views
Python ctypes and function calls
My friend produced a small proof-of-concept assembler that worked on x86. I decided to port it for x86_64 as well, but I immediately hit a problem.
I wrote a small piece of program in C, then ...