Tagged Questions
2
votes
3answers
864 views
How can I print a QString containing a special character with python using PyQt?
I do not managed to simply print a QString variable containing a special character.
I always get a UnicodeEncodeError:
'ascii' codec can't encode characters in position ....
Here is the code ...
1
vote
1answer
55 views
PyQt - how to replace QString with sip API 2
Please show me how to replace this code:
import sip
sip.setapi("QString", 2)
...
text = QString.fromLatin1("<p>Character: <span style=\"font-size: 16pt; font-family: ...
1
vote
2answers
1k views
Python/PyQT QString won't insert into MySQL database
I am trying to trying to retrieve some values from a user using a QLineEdit widget. When a QPushButton raises a clicked event, I want the text to be retrieved from all QLineEdit widgets and stored in ...
0
votes
1answer
259 views
How to check wether a path represented by a QString with german umlauts exists?
i get a QString which represents a directory from a QLineEdit. Now i want to check wether a certain file exists in this directory. But if i try this with os.path.exists and os.path.join and get in ...