#!/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 print(response['lemmatizedSentence'])