Mercurial > odfcast
view mergeclient.py @ 33:00e12392f8d4
Fix saving uploaded form file to a temporary file
The file must be saved to a temporary file for conversion via pyuno. pyuno can
only accept filenames. Also the file position must be reset to the start. If the
position is not reset we will get a IllegalArgumentException: Unsupported URL
from pyuno when converting a file without template rendering.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Thu, 16 Oct 2014 11:45:51 +0200 |
parents | a8c628466a9d |
children | 3918c3c69485 |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- import optparse import sys import requests def main(): usage = "usage: %prog [options] file1 file2 [ file3, ...]" parser = optparse.OptionParser(usage=usage) parser.add_option("-s", "--host", default="localhost") parser.add_option("-p", "--port", default="5000") parser.add_option("-o", "--out", default="merged.pdf", dest="out") (options, args) = parser.parse_args() if len(args) < 2: parser.print_usage() sys.exit(1) service = "merge" url = "http://%s:%s/%s/" % (options.host, options.port, service) files = [] for filename in args: files.append(('files', open(filename, 'rb'))) r = requests.post(url, files=files) if r.status_code == 200: with open(options.out, "wb") as f: f.write(r.content) print "OK" else: print "An error has occured" print r.status_code, r.headers print r.text sys.exit(2) if __name__ == "__main__": main()