| from requests import ConnectionError, HTTPError |
| asterix_host = "localhost" |
| # First, let's get the path to this script, we'll need it to configure the demo. |
| base = os.path.dirname(os.path.realpath(__file__)) |
| print "Running Tweetbook Demo from",base |
| # First, we bootstrap our request query |
| print "Preparing Dataset..." |
| query_statement = open("static/data/query.txt").read().split("load") |
| query_statement[1] = "load" + query_statement[1].replace("FULL_PATH",base + "/static/data") |
| 'ddl': query_statement[0] |
| "statements" : "use dataverse twitter; " + query_statement[1] |
| 'content-type': 'application/json' |
| print "Running query...\n" |
| ddl_url = "http://" + asterix_host + ":" + str(asterix_port) + "/ddl" |
| update_url = "http://" + asterix_host + ":" + str(asterix_port) + "/update" |
| requests.get(ddl_url, params=ddl) |
| response = requests.get(update_url, params=load, headers=http_header) |
| except (ConnectionError, HTTPError): |
| print "Encountered connection error; stopping execution" |