Metadata-Version: 1.1
Name: atomictempfile
Version: 0.2.post2
Summary: An atomic file write context manager
Home-page: https://github.com/clearclaw/atomictempfile
Author: J C Lawrence
Author-email: claw@kanga.nu
License: LGPL v3.0
Description: AtomicTempFile
        ====================
        
        A context manager for atomic file writes.
        
        ::
        
          $ pip install atomictempfile
        
        AtomicTempFile
        --------------------
        
        A temporary file object which will be atomically renamed to the specified
        path on exit.
        
             with AtomicTempFile('whatever') as f:
              f.write('stuff')
        
        This allows transactional behaviours with file writes.
        
Keywords: Atomic file write context manager
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Topic :: Utilities
