|
a/src/python/recoll/pyrclextract.cpp |
|
b/src/python/recoll/pyrclextract.cpp |
|
... |
|
... |
148 |
doc->meta[Rcl::Doc::keyds] = doc->dbytes;
|
148 |
doc->meta[Rcl::Doc::keyds] = doc->dbytes;
|
149 |
return (PyObject *)result;
|
149 |
return (PyObject *)result;
|
150 |
}
|
150 |
}
|
151 |
|
151 |
|
152 |
PyDoc_STRVAR(doc_Extractor_idoctofile,
|
152 |
PyDoc_STRVAR(doc_Extractor_idoctofile,
|
153 |
"idoctofile(ipath)\n"
|
153 |
"idoctofile(ipath='', mimetype='', ofilename='')\n"
|
154 |
"Extract document defined by ipath into a file, in its native format.\n"
|
154 |
"Extract document defined by ipath into a file, in its native format.\n"
|
155 |
);
|
155 |
);
|
156 |
static PyObject *
|
156 |
static PyObject *
|
157 |
Extractor_idoctofile(rclx_ExtractorObject* self, PyObject *args,
|
157 |
Extractor_idoctofile(rclx_ExtractorObject* self, PyObject *args,
|
158 |
PyObject *kwargs)
|
158 |
PyObject *kwargs)
|