@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7' )
import groovyx.net.http.RESTClient
try {
def restClient = new RESTClient("http://weathers.co")
def response = restClient.get(path: '/api.php', query: ['city': 'Prague'])
prin...