Skip to main content

Safe copy, move, and write on remote drives

Project description

TestStatus PyPiStatus BlackStyle PackStyleBlack

A python-library to help with the completeness of files when moving, copying and writing. Writing a file is not atomic. In the worst case the process writing the file dies while the file is not yet complete. Also in some network-file-systems, the destination of a move or copy might show up before it is complete. Incomplete files are a potential risk for the integrity of your data. In the best case your reading process crashes, but in the worst case the incompleteness goes unnoticed. This package reduces the risk of having incomplete files by making all writing operations write to a temporary file in the destination’s directory first before renaming it to its final destination. On most file-systems this final renamig is atomic.

Install

pip install rename_after_writing

Functions

open

Just like python’s built in open() but when writing (mode=w) everything is writen to a temporary file in the destination’s directory before the temporary file is renamed to the final destination.

import rename_after_writing as rnw

with rnw.open("my_file.txt", "wt") as f:
    for i in range(10):
        f.write(input())

copy

Copies the file first to a temporary file in the destinations directory before moving it to its final path.

import rename_after_writing as rnw

rnw.copy(src="machine/with/src", dst="other/machine/in/network/dst")

move

Some implementations of network-file-systems might raise an OSError with errno.EXDEV when an os.rename() is going across the boundary of a physical drive. In this case, this package’s copy is used to copy the file beore unlinking the source-file.

import rename_after_writing as rnw

rnw.move(src="machine/with/src", dst="other/machine/in/network/dst")

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

rename_after_writing-0.0.4.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

rename_after_writing-0.0.4-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

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