introduction and first question about multithreading

2012-07-11 Thread Vojtěch Polášek
Greetings, My name is Vojta and I am blind student. I am slowly learning Python for about 4 years and I like it alot, mostly its ability to run on various platforms. My primary system is Ubuntu 12.04, but I have Windows XP at hand. I am using python 2.7. I have learned basics from the book A byte o

pythonic interface to SAPI5?

2012-08-17 Thread Vojtěch Polášek
Hi, I am developing audiogame for visually impaired users and I want it to be multiplatform. I know, that there is library called accessible_output but it is not working when used in Windows for me. I tried pyttsx, which should use Espeak on Linux and SAPI5 on Windows. It works on Windows, on Linux

Re: pythonic interface to SAPI5?

2012-08-18 Thread Vojtěch Polášek
world!") > time.sleep(1) > speak.terminate() #end the speaking > > > > On 17 August 2012 21:49, Vojtěch Polášek <mailto:krec...@gmail.com>> wrote: > > Hi, > I am developing audiogame for visually impaired users and I want it to > be multipl

delay on windows when processing Pygame events

2012-09-10 Thread Vojtěch Polášek
Greetings, I am writing a simple game for visually impaired in pygame. I use this construction: while running == True: for event in pygame.event.get(): if event.type == blahblahblah, #processing various events blahblahblah, contiuing the code after events are analysed I am looking