You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UnicodeEncodeError: 'utf-8' codec can't encode characters. This error is coming when i am using utf-8 encoding.
The file is having value like below:
ABCâ XYZ 123
dbf = DBF(input_path, encoding="utf-8")
When i used encoding="iso-8859-1" then i am not getting an error but its getting converted to
ABCÂ XYZ 123
dbf = DBF(input_path, encoding="iso-8859-1")
The text was updated successfully, but these errors were encountered:
UnicodeEncodeError: 'utf-8' codec can't encode characters. This error is coming when i am using utf-8 encoding.
The file is having value like below:
ABCâ XYZ 123
dbf = DBF(input_path, encoding="utf-8")
When i used encoding="iso-8859-1" then i am not getting an error but its getting converted to
ABCÂ XYZ 123
dbf = DBF(input_path, encoding="iso-8859-1")
The text was updated successfully, but these errors were encountered: