2019-05-16 18:28:30 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import json
|
|
|
|
import urllib2
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
import host
|
|
|
|
|
|
|
|
data = {
|
|
|
|
'operation': 'lemmatize',
|
|
|
|
'languageCode':sys.argv[1],
|
|
|
|
'sentence':sys.argv[2]
|
|
|
|
}
|
|
|
|
|
|
|
|
address = 'http://'+host.concordia_host
|
|
|
|
if len(host.concordia_port) > 0:
|
|
|
|
address += ':'+host.concordia_port
|
|
|
|
|
|
|
|
start = time.time()
|
|
|
|
req = urllib2.Request(address)
|
|
|
|
req.add_header('Content-Type', 'application/json')
|
|
|
|
response = json.loads(urllib2.urlopen(req, json.dumps(data)).read())
|
|
|
|
end = time.time()
|
|
|
|
|
|
|
|
print "Execution time: %.4f seconds." % (end-start)
|
|
|
|
print "Result: "
|
|
|
|
print response
|
2019-05-19 13:32:38 +02:00
|
|
|
print(response['lemmatizedSentence'])
|