`writer-cm` is a context manager allowing you to atomically write files given a file path.
Project description
writer-cm
is a context manager allowing you to atomically write files given a
file path.
Features
- Cross-platform atomic file writes powered by python-atomicwrites.
- Interface using a file path instead of a file handle, for more compatibility
with external libraries (e.g.
pandas.to_pickle
). - Automatically create missing directories and set their permissions.
- Automatically set the file permissions.
Installation
pip install writer-cm
Usage
from writer_cm import writer_cm
with writer_cm("file.txt") as temp:
with open(temp, mode="w") as fh:
fh.write("foo")
with open("file.txt") as fh:
assert fh.read() == "foo"
Pass overwrite=True
to overwrite an already existing file; an error is thrown otherwise:
with writer_cm("file.txt", overwrite=True) as temp:
with open(temp, mode="w") as fh:
fh.write("bar")
with open("file.txt") as fh:
assert fh.read() == "bar"
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
writer-cm-1.0.5.tar.gz
(2.9 kB
view hashes)
Built Distribution
Close
Hashes for writer_cm-1.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31569308f3a4dcb949dbfe15ad1366849f379227cdd00bbfde0b9f5efa5b2341 |
|
MD5 | 613cd17cf56a07c9baa649954f02bb8a |
|
BLAKE2b-256 | 2b64b1e81904499e392760c43d315a8961e1642dd56d25ad34129fad59bd4b3e |