Hello Folks,
I am currently reading CSV data from the Resource directory. The file contains UTF-8 strings (accents and all that good stuff).
To read it, I use
<br />
handle = StringIO.StringIO(Resource.Load(PLUGIN_DATA, binary=False))<br />
data = csv.reader(handle)<br />
Unfortunately, Resource.Load() uses a plain read() which results in poorly displayed data as the UTF-8 characters are not handled.
Do you guys know a way around this?
TIA
JP
