-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
read compressed log files according to file ext
- Loading branch information
Showing
3 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
""" | ||
File open helpers. | ||
""" | ||
|
||
def open_compressed(file_path, mode='r'): | ||
"""Open file path and decompress on the fly using built in standard | ||
library modules if it has the appropriate extension.""" | ||
if file_path.endswith('.xz'): | ||
import lzma | ||
return lzma.open(file_path, mode) | ||
elif file_path.endswith('.bz2'): | ||
import bz2 | ||
return bz2.open(file_path, mode) | ||
elif file_path.endswith('.gz'): | ||
import gzip | ||
return gzip.open(file_path, mode) | ||
else: | ||
return open(file_path, mode) |