aboutsummaryrefslogtreecommitdiff
path: root/test/requests/test-website.py
blob: d02b71aad185ac50cc617b1fa79a63e86bec0257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Run with something like
#
#   env GN2_PROFILE=/home/wrk/opt/gn-latest ./bin/genenetwork2 ./etc/default_settings.py -c ../test/requests/test-website.py http://localhost:5003
#
# Mostly to pick up the Guix GN2_PROFILE and python modules

import requests as req
import sys

print "Mechanical Rob firing up..."

if len(sys.argv)<1:
    raise "Problem with arguments"

url = sys.argv[1]
print url

r = req.get(url)

print r