473,498 Members | 1,809 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Linuz Python Module using PythonC/ API

I have this error message poping up when I try to import a module I made in C
using the Python/C API. Everything compiles like a charm.

Gives me this error message :

Traceback (most recent call last):
File "mod_test.py", line 4, in ?
import utm
ImportError: dynamic module does not define init function (initutm)

but the "initutm" function is there.

Running on Fedora Core 3.

Thanx
David

P.S Other question is there a command to know what export symbols a .so library
has ?

Relevant files below.

utmmodule.c
------------------
#include <Python.h>

#include "utm.h"
PyMODINIT_FUNC initutm(void);

static PyObject * utm_utm_to_ll(PyObject * self, PyObject * args);

static PyObject * utm_ll_to_utm(PyObject * self, PyObject * args);

static PyObject * utm_zone(PyObject * self, PyObject * args);

static PyObject * utm_grid(PyObject * self, PyObject * args);

static PyObject * utm_trans_list(PyObject * self, PyObject * args);

static PyObject * utm_transform(PyObject * self, PyObject * args);

/****************************************/

/*! \var static PyObject * UTMError

\brief UTM Python Module error handling object

*/

/****************************************/

static PyObject * UTMError;

/****************************************/

/*! \var static PyMethodDef UTMMethods

\brief UTM Python Module function list

*/

/****************************************/

static PyMethodDef UTMMethods[] = {

{"utm_to_ll", utm_utm_to_ll, METH_VARARGS, "Converts UTM coordinates to
Lat/Long using the input UTM zone number and letter and tranformation."},

{"ll_to_utm", utm_ll_to_utm, METH_VARARGS, "Converts Lat/Long coordinates to
UTM using the input transformation."},

{"zone", utm_zone, METH_VARARGS, "Returns the UTM longitude zone number."},

{"grid", utm_grid, METH_VARARGS, "Returns the UTM latitude zone letter (C to
X) - omiting chars I and O.\nReturns Z if Latitude value out of UTM bounds 84N -
80S."},

{"trans_list", utm_trans_list, METH_VARARGS, "Returns the list of available
ellipsoid transformations in a list."},

{"transform", utm_transform, METH_VARARGS, "Returns the tranform index based
on the transform type string, EX: 'WGS 84' returns index 29"},

{NULL, NULL, 0, NULL} /* Sentinel */

};

/****************************************/

/*! \fn PyMODINIT_FUNC initutm(void)

\brief Python Module __init__() function

This function is called when the module is loaded by Python. It creates a
mapping of the

python module commands linked to their C counterpart in the DLL/SO module.
It also creates

an error handling Python object (UTMError).

*/

/****************************************/

PyMODINIT_FUNC initutm(void) {

PyObject *m;

m = Py_InitModule( "utm", UTMMethods );

UTMError = PyErr_NewException( "utm.error", NULL, NULL );

Py_INCREF( UTMError );

PyModule_AddObject( m, "error", UTMError );

}
.....
------------------

makefile important lines
-------------------
CC=g++

CFLAGS=-Wall -I/usr/local/src/Python-2.3.5/Include
-L/usr/local/src/Python-2.3.5/Objects -L/usr/local/src/Python-2.3.5

LDFLAGS=

all: main

main: utm.o utmmodule.o

$(CC) $(CFLAGS) -shared -fPIC -Xlinker -export-dynamic -lpython2.3 -o utm.so

-------------------

Jul 19 '05 #1
1 1561
David a écrit :
[snip] CC=g++


So actually your 'initutm' is '_Z7initutmv' for the linker. Try building
with gcc instead, or declaring

extern "C" PyMODINIT_FUNC initutm(void);

or something like that.
Jul 19 '05 #2

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

Similar topics

8
3833
by: Bo Peng | last post by:
Dear list, I am writing a Python extension module that needs a way to expose pieces of a big C array to python. Currently, I am using NumPy like the following: PyObject* res =...
118
6575
by: 63q2o4i02 | last post by:
Hi, I've been thinking about Python vs. Lisp. I've been learning Python the past few months and like it very much. A few years ago I had an AI class where we had to use Lisp, and I absolutely...
0
7126
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7005
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
7210
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6891
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7381
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4916
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4595
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3087
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
659
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.