Created
October 10, 2020 07:53
-
-
Save loganlinn/9108437be13701b20c19c6dc7e72a560 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
_ARCHIVE_EXTENSIONS = ["zip", "jar", "war", "tar", "tar.gz", "tgz", "tar.xz", "tar.bz2"] | |
def smells_like_archive(s): | |
return any([s.endswith(archive_ext) for archive_ext in _ARCHIVE_EXTENSIONS]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment