Tagged Questions

2
votes
3answers
817 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
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
244 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 ...