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.

The following keyword arguments are used by openfile:

  • expanduser=True will cause openfile to call os.path.expanduser for filename.

  • expandvars=True will cause openfile to call os.path.expandvars for filename.

  • makedirs=True will cause openfile to call os.makedirs for the parent directory os.path.dirname(filename) if it does not exist and mode contains either "w" or "a".

All other keyword arguments passed to openfile will be passed down to the open functions listed above.

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.6.tar.gz (2.1 kB view details)

Uploaded Source

File details

Details for the file openfile-0.0.6.tar.gz.

File metadata

  • Download URL: openfile-0.0.6.tar.gz
  • Upload date:
  • Size: 2.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for openfile-0.0.6.tar.gz
Algorithm Hash digest
SHA256 8fc37fb3b94c8d8256480307afb550d50bfcd0bcecc14e2cd91fa3f695894b1a
MD5 b5aaf21f5fa46953f75a6d6981796a9c
BLAKE2b-256 17d35ca4ba162e3a34ae95d70bb38cd59bd1de66baf4de5ab53724afa512efb8

See more details on using hashes here.

Supported by

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