Skip to main content

A convenience function that delegates to the appropriate standard library function.

Project description

openfile is a trivial Python module that implements a single convenience function openfile(filename, mode="rt", **kwargs) wich delegates the real work to one of the following standard library functions:

gzip.open(filename, mode, **kwargs)

if the file ends with suffix .gz;

bz2.open(filename, mode, **kwargs)

if the file ends with suffix .bz2;

lzma.open(filename, mode, **kwargs)

if the file ends with suffix .xz or .lzma;

open(filename, mode, **kwargs)

if the file does not end with any suffix mentioned above.

If the filename is a single dash - then sys.stdin or sys.stdout is returned, depending on mode being r or w, respectively.

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

openfile-0.0.5.tar.gz (2.0 kB view hashes)

Uploaded Source

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