(ID)
| 67 | return out |
| 68 | |
| 69 | def status(ID): |
| 70 | res = requests.get(f'{host_url}/ticket/{ID}') |
| 71 | try: |
| 72 | out = res.json() |
| 73 | except ValueError: |
| 74 | out = {'status': 'ERROR'} |
| 75 | return out |
| 76 | |
| 77 | def download(ID, path): |
| 78 | res = requests.get(f'{host_url}/result/download/{ID}') |
no test coverage detected
searching dependent graphs…