PyQt4 Pyrcc Resource File Encoding

645 Views Asked by At

I am trying to embed resources to my PyQt4 application.

However when I import the resource file that I create by using included pyrcc.exe I came accross encoding errors.

Pyrcc already adds the UTF-8 encoding line on top of the file as this was the common error I have seen online.

SyntaxError: Non-ASCII character '\xff' in file ... on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details

As I have checked the error link it recommends to add encoding line to the file which I already have

#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Resource object code
#
# Created: Mon Sep 14 10:40:57 2015
#      by: The Resource Compiler for PyQt (Qt v4.8.6)
#
# WARNING! All changes made in this file will be lost!

from PyQt4 import QtCore

qt_resource_data = "\
\x00\x00\x06\xdf\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\
\x00\x00\x06\xa6\x49\x44\x41\x54\x78\x5e\xed\x5b\x5d\x72\xda\x48\...

Any suggestions would be appreciated. Thanks !

0

There are 0 best solutions below