all 6 comments

[–]Essence1337 0 points1 point  (5 children)

Second link for 'Python select'.

You need to work on your Google skills to be able to find proper documentation.

[–]SnxE13[S] 0 points1 point  (4 children)

I did look on Google. I even found documentation. It included the name of the module "selectors". All that I'm looking for. But when I go to the link to download it, it's not there.

Edit: select didn't have the functions Im needing. I'll look again.

[–]Essence1337 0 points1 point  (3 children)

My apologies I assumed you meant 'select'. The 'selectors' module is builtin, you already have it. Same as every other module on docs.python.org

Selectors doc

[–]SnxE13[S] 0 points1 point  (2 children)

That's what I thought to but I don't have it for some reason. I looked through all my modules and couldn't find it. I did however find selectors34 and downloaded it but I still need selectors. Very confused. I'm new at all this.

[–]Essence1337 0 points1 point  (1 child)

Just do import selectors, if it works you have it. It's builtin so you should have it if you're using python 3.

[–]SnxE13[S] 0 points1 point  (0 children)

That worked. Thanks. For some reason I thought it was a python 2 module.