Skip to main content

Try to import all modules below a given root

Project description

✏️safer: a safer file opener ✏️

No more partial writes or corruption!

Install safer from the command line with pip: pip install safer.

Tested on Python 2.7, and 3.4 through 3.8.

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

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

The remaining arguments are the same as for built-in open().

safer.open(name, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None, 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, 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

safer.writer(name, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None, make_parents=False, delete_failures=True)

(DEPRECATED) A shorthand for open(file, 'w')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

safer-2.0.3.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

safer-2.0.3-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file safer-2.0.3.tar.gz.

File metadata

  • Download URL: safer-2.0.3.tar.gz
  • Upload date:
  • Size: 4.8 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

Hashes for safer-2.0.3.tar.gz
Algorithm Hash digest
SHA256 af6ba6083b142024b55384129ef07a6f6f4fb219df8ac066087e6e68252c5603
MD5 e0e9b179572c50094222c3e5afd086af
BLAKE2b-256 4567aad67eef3ea3d5fe41395c9b9ed65c222d25721e3581baa70b8fa15042cd

See more details on using hashes here.

File details

Details for the file safer-2.0.3-py3-none-any.whl.

File metadata

  • Download URL: safer-2.0.3-py3-none-any.whl
  • Upload date:
  • Size: 9.6 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

Hashes for safer-2.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b66c8f04a8fd18aaecaa3b7f847bb558e30cf42460748dc8c17dcbfa2a858eda
MD5 30d3bbd703fac969f544177720a4d48b
BLAKE2b-256 03edd424cdfc8857237ab9ec5d2577475eb2c46c9ba52f3acce37b08db677acf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page