Open muhammetfaik opened 2 years ago
You're running this on python 2.7.
Python 3 has the selectors module, which allows us to register on a file descriptor event, and only later in a different part of the code select on it. In Python 2 we only have the select module, which requires that we 'register' and 'select' on the same line, which is limiting.
Run on python 3.0+
I run
python playback_example.py
but I have this error:What is problem ?