Files
galaxy/tools/data_source/fetch.py
T
Nicola Soranzo d1bc98dfcb Python3: fix remaining print statements
Remove some debugging prints.
Fix import order.
Consolidate exception logging in ToolShed database migrations.
2017-10-12 18:34:29 +01:00

29 lines
513 B
Python

#!/usr/bin/env python
"""
Script that just echos the command line.
"""
from __future__ import print_function
import sys
from six.moves.urllib.request import urlopen
assert sys.version_info[:2] >= (2, 6)
BUFFER = 1048576
url = sys.argv[1]
out_name = sys.argv[2]
out = open(out_name, 'wt')
try:
page = urlopen(url)
while 1:
data = page.read(BUFFER)
if not data:
break
out.write(data)
except Exception as e:
print('Error getting the data -> %s' % e)
out.close()