A safer file opener
Project description
✏️safer: a safer file opener ✏️
No more partial writes or corruption!
Install safer from the command line with pip (https://pypi.org/project/pip): pip install safer.
Tested on Python 3.4 and 3.8 For Python 2.7, use https://github.com/rec/safer/tree/v2.0.5
safer.open()
safer.open() writes a whole file or nothing. It’s a drop-in replacement for built-in open() except that safer.open() leaves the original file unchanged on failure.
EXAMPLE
# dangerous
with open(filename, 'w') as fp:
json.dump(data, fp)
# If an exception is raised, the file is empty or partly written
# safer
with safer.open(filename, 'w') as fp:
json.dump(data, fp)
# If an exception is raised, the file is unchanged.
safer.open(filename) returns a file stream fp like open(filename) would, except that fp writes to a temporary file in the same directory.
If fp is used as a context manager and an exception is raised, then fp.safer_failed is automatically set to True. And when fp.close() is called, the temporary file is moved over filename unless fp.safer_failed is true.
safer.printer()
safer.printer() is similar to safer.open() except it yields a function that prints to the open file - it’s very convenient for printing text.
Like safer.open(), if an exception is raised within the context manager, the original file is left unchanged.
EXAMPLE
# dangerous
with open(file, 'w') as fp:
for item in items:
print(item, file=fp)
# Prints lines until the first exception
# safer
with safer.printer(file) as print:
for item in items:
print(item)
# Either the whole file is written, or nothing
NOTES
If a stream fp return from safer.open() is used as a context manager and an exception is raised, the property fp.safer_failed is set to True.
In the method fp.close(), if fp.safer_failed is not set, then the temporary file is moved over the original file, successfully completing the write.
If fp.safer_failed is true, then if delete_failures is true, the temporary file is deleted.
If the mode argument contains either 'a' (append), or '+' (update), then the original file will be copied to the temporary file before writing starts.
Note that safer uses an extra temporary file which is renamed over the file only after the stream closes without failing. This uses as much disk space as the old and new files put together.
FUNCTIONS
safer.open(name, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None, follow_symlinks=True, make_parents=False, delete_failures=True)
A drop-in replacement for open() which returns a stream which only overwrites the original file when close() is called, and only if there was no failure
safer.printer(name, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None, follow_symlinks=True, make_parents=False, delete_failures=True)
A context manager that yields a function that prints to the opened file, only overwriting the original file at the exit of the context, and only if there was no exception thrown
- ARGUMENTS
- make_parents:
If true, create the parent directory of the file if it doesn’t exist
- delete_failures:
If true, the temporary file is deleted if there is an exception
- follow_symlinks:
If true, overwrite the file pointed to and not the symlink
The remaining arguments are the same as for built-in open().
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file safer-3.0.0.tar.gz
.
File metadata
- Download URL: safer-3.0.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c944e1bb90e7cd2b7f2b356af2d1489fe435c2d89030f70e609d16dc53280cab |
|
MD5 | b9f45e3892a6dc7eea69990d509c3ce7 |
|
BLAKE2b-256 | bddede7c33240f86ea4c35001e1916a2fc51cb36fa456284a1cd4cb589a35535 |
File details
Details for the file safer-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: safer-3.0.0-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 538ab1cdc9424b57c160fbc2ce222877782d920de1c6da486117ccb1a34f5651 |
|
MD5 | c167abfcabb3a5d5e09ce8ccbd604445 |
|
BLAKE2b-256 | cd8f4cbcfbe59d56577f972b7b46dad0484336388fef0cdd3fbea11919b34084 |