예제 #1
0
파일: file_system.py 프로젝트: Dtchil/dbnd
 def open_write(self, path, mode="w", **kwargs):
     return AtomicLocalFile(path, self, mode=mode, **kwargs)
예제 #2
0
파일: local.py 프로젝트: turbaszek/dbnd
 def open_write(self, path, mode="w"):
     return AtomicLocalFile(path, fs=self, mode=mode)