Last active
August 1, 2020 03:35
-
-
Save yeiichi/d4972751d0bbb8d4563d23aec5f9cfb5 to your computer and use it in GitHub Desktop.
my chardet
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
import chardet | |
with open(file_path, 'rb') as f: | |
encoding = chardet.detect(f.read()).get('encoding') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment