Tagged Questions
6
votes
4answers
2k views
Is there a Python library function which attempts to guess the character-encoding of some bytes?
I'm writing some mail-processing software in Python that is encountering strange bytes in header fields. I suspect this is just malformed mail; the message itself claims to be us-ascii, so I don't ...
0
votes
1answer
594 views
Check for valid utf8 string in Python
I'm reading filenames from file system and I want to send them as JSON encoded array. The problem is that files on file system can be stored in invalid encoding, and I need to handle this situation to ...