(path, contents)
| 273 | |
| 274 | |
| 275 | def localPutHelper(path, contents): |
| 276 | try: |
| 277 | with open(path, 'wb') as f: |
| 278 | f.write(contents) |
| 279 | return dict(status='success') |
| 280 | except Exception as e: |
| 281 | return dict(error=str(e)) |
| 282 | |
| 283 | |
| 284 | class AdvancedDataFile(DataFile, RawIOBase): |