Mercurial > repos > stevecassidy > alveoimport
comparison alveo_api_key.py @ 2:7b6021997b8e draft
planemo upload commit f36456464c692ed9d39a9cf654d09fe793113cce-dirty
author | stevecassidy |
---|---|
date | Tue, 30 Aug 2016 21:06:27 -0400 |
parents | bfe39bd252df |
children |
comparison
equal
deleted
inserted
replaced
1:6fef3489d97c | 2:7b6021997b8e |
---|---|
25 defaults to pyalveo | 25 defaults to pyalveo |
26 | 26 |
27 :raises: pyalveo.APIError if the API request is not successful | 27 :raises: pyalveo.APIError if the API request is not successful |
28 | 28 |
29 """ | 29 """ |
30 client = client_module.Client(api_key, API_URL) | 30 client = client_module.Client(api_key, API_URL, use_cache=False) |
31 outfile = open(output_path, 'w') | 31 outfile = open(output_path, 'w') |
32 outfile.write(api_key) | 32 outfile.write(api_key) |
33 outfile.close() | 33 outfile.close() |
34 | 34 |
35 def main(): | 35 def main(): |