Files
galaxy/scripts/api/display.py
T
Ramkrishna Chakrabarty 6a9ab2813a sample_tracking:
- added web api methods to update requests, samples using restful api
- removed the old ad-doc web api
- modified the data transfer code to use this api
- code cleanup
2010-10-26 10:00:23 -04:00

15 lines
323 B
Python
Executable File

#!/usr/bin/env python
import os, sys, urllib2
sys.path.insert( 0, os.path.dirname( __file__ ) )
from common import display
try:
display( *sys.argv[1:3] )
except TypeError:
print 'usage: %s key url' % os.path.basename( sys.argv[0] )
sys.exit( 1 )
except urllib2.URLError, e:
print str(e)
sys.exit( 1 )