Skip to main content

Normalize the way you get a file handle from either gzip or normal file

Project description

https://travis-ci.org/necrolyte2/filehandle.svg https://coveralls.io/repos/necrolyte2/filehandle/badge.svg https://badge.fury.io/py/filehandle.svg

filehandle

Normalize the way you get file handle from either gzip or normal file

Typical way to open gzip or regular file

>>> import gzip
>>> import os.path
>>> files = ['/path/to/foo.bar.gz', '/path/to/foo.bar']
>>> for f in files:
...   root, ext = os.path.splitext(f.replace('.gz',''))
...   ext = ext[1:]
...   if f.endswith('.gz'):
...     handle = gzip.open(f)
...   else:
...     handle = open(f)

Using filehandle

>>> import filehandle
>>> files = ['/path/to/foo.bar.gz', '/path/to/foo.bar']
>>> for f in files:
...   handle, extension = filehandle.open(f)

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

filehandle-0.0.9.tar.gz (1.6 kB view details)

Uploaded Source

File details

Details for the file filehandle-0.0.9.tar.gz.

File metadata

  • Download URL: filehandle-0.0.9.tar.gz
  • Upload date:
  • Size: 1.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for filehandle-0.0.9.tar.gz
Algorithm Hash digest
SHA256 99c966fe0c4df486759799264b2a4c0b84763f1674dec6c5e6d8a3e11f004077
MD5 4b948f85c9b9e9a0043f82771fe00152
BLAKE2b-256 54ec1a6385184b6fc512b62ace58cc4446bdc1b5a693f93157edd030ad3125b5

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