vote up 1 vote down star

I am working on integrating with several music players. At the moment my favorite is exaile.

In the new version they are migrating the database format from SQLite3 to an internal Pickle format. I wanted to know if there is a way to access pickle format files without having to reverse engineer the format by hand.

I know there is the cPickle python module, but I am unaware if it is callable directly from C.

flag

Is portability very important to your application? – Anthony Cuozzo Aug 18 at 20:37
Not really, since exaile only runs on linux as far as I know. – Phillip Whelan Aug 18 at 21:25

2 Answers

vote up 2 vote down check

Like Cristian told, you can rather easily embed python code to you C code, see example here: http://docs.python.org/extending/extending.html#calling-python-functions-from-c

Using cPickle is dead easy as well on python you could use somehting like:

import cPickle

f = open('dbfile', 'rb')
db = cPicle.load(f)
f.close()
# handle db integration
f = open('dbfile', 'wb')
cPickle.dump(db, f)
f.close()
link|flag
as far as I can tell and as far as I've been told the only option is to embed a python interpreter. Since I won't need to port it to win32, this isn't such a bad solution. – Phillip Whelan Aug 19 at 9:23
vote up 1 vote down

You can embed a Python interpreter in a C program, but I think that the easiest solution is to write a Python script that converts "pickles" in another format, e.g. an SQLite database.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.