(ID, path)
| 75 | return out |
| 76 | |
| 77 | def download(ID, path): |
| 78 | res = requests.get(f'{host_url}/result/download/{ID}') |
| 79 | with open(path, 'wb') as out: |
| 80 | out.write(res.content) |
| 81 | |
| 82 | # process input x |
| 83 | seqs = [x] if isinstance(x, str) else x |
no test coverage detected
searching dependent graphs…