opencultureconsulting / openrefine-client

The OpenRefine Python Client from Paul Makepeace provides a library for communicating with an OpenRefine server. This fork extends the command line interface (CLI) and is distributed as a convenient one-file-executable (Windows, Linux, Mac). It is also available via Docker Hub, PyPI and Binder.
GNU General Public License v3.0
83 stars 19 forks source link

Support export file? #26

Closed mark6969 closed 2 years ago

mark6969 commented 2 years ago

Hello, I am using your project recently to design a program that can automatically generate processed files. I would like to ask if your project supports the function of exporting files? thinks

felixlohmeier commented 2 years ago

Hi @mark6969, I am glad that the tool is useful for you. What exactly do you mean by "exporting files"? In the README.md there are some examples mentioned for exporting OpenRefine projects.

Example command line tool:

--export --output=deduped.xls "duplicates".

Example Python library:

cli.export(p1.project_id, 'deduped.xls')

Does this help you already? Otherwise please ask again.

mark6969 commented 2 years ago

Yes it work thank you