Using WebLicht from the Commandline

From WebLichtWiki

(Difference between revisions)
Jump to: navigation, search
Line 11: Line 11:
 
For example, converting a file with UTF-8 encoded plain text to a TCF file, the whole command looks like this:
 
For example, converting a file with UTF-8 encoded plain text to a TCF file, the whole command looks like this:
  
curl -H 'content-type: text/plain' -d @input.tcf -X POST "http://weblicht.sfs.uni-tuebingen.de/rws/convert-all/qp?informat=plaintext&language=de&outformat=tcf04" -o output.tcf
+
<code>curl -H 'content-type: text/plain' -d @input.tcf -X POST "http://weblicht.sfs.uni-tuebingen.de/rws/convert-all/qp?informat=plaintext&language=de&outformat=tcf04" -o output.tcf</code>
  
 
This command will send the data of the file input.tcf to the converter web service, which sends back TCF data. This TCF data is stored in the file output.tcf. In addition, the converter web service needs some parameters (input format, language and output format) which are appended to the URL as GET parameters.
 
This command will send the data of the file input.tcf to the converter web service, which sends back TCF data. This TCF data is stored in the file output.tcf. In addition, the converter web service needs some parameters (input format, language and output format) which are appended to the URL as GET parameters.
  
 
In a next step, the output of the web service (output.tcf) can be used as input for a tokenizer, for example:
 
In a next step, the output of the web service (output.tcf) can be used as input for a tokenizer, for example:

Revision as of 08:58, 29 May 2013

WebLicht web services are implemented as RESTstyle web services: this means, they can be called not only from WebLichts graphical user interface, but also from the commandline.

On Unix-like systems like Linux or Mac OS X, two CLI tools can be used for this task: wget or curl. In the following, the use of curl is described.

A generic call of a WebLicht web service with curl looks like this:

curl -H 'content-type: text/plain' -d @input.tcf -X POST "http://url-to-webservice-with-parameters" -o output.tcf

Where input.tcf is the input file and output.tcf is the output file (the file extension doesn't play a role). For some web services, it is necessary to specify additional parameters in the form of GET parameters.

For example, converting a file with UTF-8 encoded plain text to a TCF file, the whole command looks like this:

curl -H 'content-type: text/plain' -d @input.tcf -X POST "http://weblicht.sfs.uni-tuebingen.de/rws/convert-all/qp?informat=plaintext&language=de&outformat=tcf04" -o output.tcf

This command will send the data of the file input.tcf to the converter web service, which sends back TCF data. This TCF data is stored in the file output.tcf. In addition, the converter web service needs some parameters (input format, language and output format) which are appended to the URL as GET parameters.

In a next step, the output of the web service (output.tcf) can be used as input for a tokenizer, for example: