Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果你看到 Luigi luigi/local_target.py 类 LocalTarget 的代码:
def open(self, mode='r'): rwmode = mode.replace('b', '').replace('t', '') if rwmode == 'w': self.makedirs() return self.format.pipe_writer(atomic_file(self.path))
Luigi 创建一个临时文件,当它关闭时,更改为最终名称。