All Questions
Tagged with wxpython python-3.x
2 questions
5
votes
1
answer
244
views
Wrapper to translate text in wxPython widgets
I am writing a wrapper for all widgets that contain text that needs to be translated for wxPython and make them handle the initial translation and the change of language on their own using gettext.
I ...
9
votes
1
answer
1k
views
Reading a file without blocking the main thread
Background Info: Running Python 3.6 on Windows 10
I have a text file parsed like this:
Ann Marie,Smith,[email protected]
There can over 100+ names in the text file.
...