view bindings/python/README.txt @ 651:5b2c0d9bc63d

Broken implementation of mkstemp() for WIN32 (no-cygwin) Since the only user is the SOAP server, and since I would strongly like to see the SOAP server either removed completely or else written to call the API rather than a fake-command-line-emulation, I'm not too worried about the brokenness. YMMV.
author mas01cr
date Wed, 14 Oct 2009 12:12:39 +0000
parents 113b2f294256
children 159becb0701e
line wrap: on
line source
README.txt

to install, try:

python setup.py build
python setup.py install

Notes: 
 - a compatible build of audioDB (>=r914) needs to be linkable at runtime
 - currently only the direct C-api exposure layer is visible, so the calling semantics are a bit gross


The actual query call is a bit of a mess, but will be more intuitive from the native python layer (to be written)...
so the python bindings now have a complete path:
	>>import _pyadb
	>>aDB = _pyadb._pyadb_create("test.adb", 0,0,0)
	>>_pyadb._pyadb_status(aDB)
	>>_pyadb._pyadb_insertFromFile(aDB, "someFeats.mfcc12")
		...(add some more data)
	>>result = _pyadb._pyadb_queryFromKey(aDB, "a Key in aDB", [options])
	
	and then result has a nice dict of your results.  



21 September 2009, Ben Fields, b.fields@gold.ac.uk