static obspy library

Hello,

I am working on embedding Python in C/C++ and want to know how to create a static obspy library for C/C++ to call.

Thanks in advance,

Xiao

Hello Xiao,

a couple of weeks ago I wrote an email to Andreas about the very same topic. The gist is that Python is a dynamic language and cannot be compiled. I would advise you to have a look at the SWIG project (http://www.swig.org/). It can generate two way bindings between Python and C++.

Cheers,

Lion