When using Python with extended ASCII characters (those with ASCII codes above 127), the default encoding in Python may result in errors trying to interpret FairCom DB SQL data.
The procedure below applies only to the Python driver. It is not necessary when using SQLAlchemy.
To properly display these characters, follow these steps:
return str(s).encode()
return s.decode()
return str(s).encode('ansi',errors = 'strict')
return s.decode('ansi',errors = 'strict')
py setup.py install
Your c-tree data will be properly displayed.