Normalize the way you get a file handle from either gzip or normal file
Project description
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
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
filehandle-0.0.9.tar.gz
(1.6 kB
view details)
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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99c966fe0c4df486759799264b2a4c0b84763f1674dec6c5e6d8a3e11f004077 |
|
MD5 | 4b948f85c9b9e9a0043f82771fe00152 |
|
BLAKE2b-256 | 54ec1a6385184b6fc512b62ace58cc4446bdc1b5a693f93157edd030ad3125b5 |