A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://python-atomicwrites.readthedocs.io/en/latest/ below:

python-atomicwrites — atomicwrites 1.4.0 documentation

atomicwrites python-atomicwrites¶

Atomic file writes.

from atomicwrites import atomic_write

with atomic_write('foo.txt', overwrite=True) as f:
    f.write('Hello world.')
    # "foo.txt" doesn't exist yet.

# Now it does.

See API documentation for more low-level interfaces.

Features that distinguish it from other similar libraries (see Alternatives and Credit):

How it works¶

It uses a temporary file in the same directory as the given path. This ensures that the temporary file resides on the same filesystem.

The temporary file will then be atomically moved to the target location: On POSIX, it will use rename if files should be overwritten, otherwise a combination of link and unlink. On Windows, it uses MoveFileEx through stdlib’s ctypes with the appropriate flags.

Note that with link and unlink, there’s a timewindow where the file might be available under two entries in the filesystem: The name of the temporary file, and the name of the target file.

Also note that the permissions of the target file may change this way. In some situations a chmod can be issued without any concurrency problems, but since that is not always the case, this library doesn’t do it by itself.

fsync¶

On POSIX, fsync is invoked on the temporary file after it is written (to flush file content and metadata), and on the parent directory after the file is moved (to flush filename).

fsync does not take care of disks’ internal buffers, but there don’t seem to be any standard POSIX APIs for that. On OS X, fcntl is used with F_FULLFSYNC instead of fsync for that reason.

On Windows, _commit is used, but there are no guarantees about disk internal buffers.

Alternatives and Credit¶

Atomicwrites is directly inspired by the following libraries (and shares a minimal amount of code):

Other alternatives to atomicwrites include:

License¶

Licensed under the MIT, see LICENSE.

API¶
atomicwrites.atomic_write(path, writer_cls=<class 'atomicwrites.AtomicWriter'>, **cls_kwargs)[source]¶

Simple atomic writes. This wraps AtomicWriter:

with atomic_write(path) as f:
    f.write(...)
Parameters:

Additional keyword arguments are passed to the writer class. See AtomicWriter.

Errorhandling¶

All filesystem errors are subclasses of OSError.

In either case, the errno attribute on the thrown exception maps to an errorcode in the errno module.

Low-level API¶
atomicwrites.replace_atomic(src, dst)[source]¶

Move src to dst. If dst exists, it will be silently overwritten.

Both paths must reside on the same filesystem for the operation to be atomic.

atomicwrites.move_atomic(src, dst)[source]¶

Move src to dst. There might a timewindow where both filesystem entries exist. If dst already exists, FileExistsError will be raised.

Both paths must reside on the same filesystem for the operation to be atomic.

class atomicwrites.AtomicWriter(path, mode='w', overwrite=False, **open_kwargs)[source]¶

A helper class for performing atomic writes. Usage:

with AtomicWriter(path).open() as f:
    f.write(...)
Parameters:

If you need further control over the exact behavior, you are encouraged to subclass.

commit(f)[source]¶

Move the temporary file to the target location.

get_fileobject(suffix='', prefix='tmp', dir=None, **kwargs)[source]¶

Return the temporary file to use.

open()[source]¶

Open the temporary file.

rollback(f)[source]¶

Clean up all temporary resources.

sync(f)[source]¶

responsible for clearing as many file caches as possible before commit

License¶

Copyright (c) 2015-2016 Markus Unterwaditzer

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4