Checking for keyboard inputs uses too much cpu usage, Is there something wrong with my code?How to call one function from within another function in pythonPython JSON decode ValueError: Extra data:Python server program has high cpu usagehow to make kivy widgets make a pausePython script too much cpu usageList of Python keywords that are valid within (lambda) expressionPython (While and Elif statements) -Error checking mathUnable to break a python while loop inside a functionConditionals won't workPython issue with input
Write The Shortest Program to Calculate Height of a Binary Tree
Why do rocket engines use nitrogen actuators to operate the fuel/oxidiser valves instead of electric servos?
Are valid inequalities worth the effort given modern solver preprocessing options?
What is it exactly about flying a Flyboard across the English channel that made Zapata's thighs burn?
A verb for when some rights are not violated?
split inside flalign
Upper Bound for a Sum
How do people drown while wearing a life jacket?
What is the reason behind water not falling from a bucket at the top of loop?
Vectorised way to calculate mean of left and right neighbours in a vector
What are the limitations of the Hendersson-Hasselbalch equation?
C# TCP server/client class
Based on what criteria do you add/not add icons to labels within a toolbar?
The Game of the Century - why didn't Byrne take the rook after he forked Fischer?
Is space radiation a risk for space film photography, and how is this prevented?
How to win against ants
Is the first page of a novel really that important?
Is there a command-line tool for converting html files to pdf?
Formal mathematical definition of renormalization group flow
How to call made-up data?
What could prevent players from leaving an island?
Why wasn't interlaced CRT scanning done back and forth?
Is it okay to use different fingers every time while playing a song on keyboard? Is it considered a bad practice?
…down the primrose path
Checking for keyboard inputs uses too much cpu usage, Is there something wrong with my code?
How to call one function from within another function in pythonPython JSON decode ValueError: Extra data:Python server program has high cpu usagehow to make kivy widgets make a pausePython script too much cpu usageList of Python keywords that are valid within (lambda) expressionPython (While and Elif statements) -Error checking mathUnable to break a python while loop inside a functionConditionals won't workPython issue with input
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Im making a simple music player so i can pause music when i am in full screen applications. The code works fine but i noticed that it uses around 15% cpu usage. Im just wondering if i did something wrong with my code.
import keyboard
listedSongs = []
currentSong = "idk"
while True:
if keyboard.is_pressed('alt+k'):
i = 1
paused = False
elif keyboard.is_pressed('alt+q'):
break
elif keyboard.is_pressed('alt+s'):
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
Any help would be appreciated :)
python
add a comment |
Im making a simple music player so i can pause music when i am in full screen applications. The code works fine but i noticed that it uses around 15% cpu usage. Im just wondering if i did something wrong with my code.
import keyboard
listedSongs = []
currentSong = "idk"
while True:
if keyboard.is_pressed('alt+k'):
i = 1
paused = False
elif keyboard.is_pressed('alt+q'):
break
elif keyboard.is_pressed('alt+s'):
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
Any help would be appreciated :)
python
add a comment |
Im making a simple music player so i can pause music when i am in full screen applications. The code works fine but i noticed that it uses around 15% cpu usage. Im just wondering if i did something wrong with my code.
import keyboard
listedSongs = []
currentSong = "idk"
while True:
if keyboard.is_pressed('alt+k'):
i = 1
paused = False
elif keyboard.is_pressed('alt+q'):
break
elif keyboard.is_pressed('alt+s'):
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
Any help would be appreciated :)
python
Im making a simple music player so i can pause music when i am in full screen applications. The code works fine but i noticed that it uses around 15% cpu usage. Im just wondering if i did something wrong with my code.
import keyboard
listedSongs = []
currentSong = "idk"
while True:
if keyboard.is_pressed('alt+k'):
i = 1
paused = False
elif keyboard.is_pressed('alt+q'):
break
elif keyboard.is_pressed('alt+s'):
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
Any help would be appreciated :)
python
python
asked Mar 27 at 2:51
predupredu
31 bronze badge
31 bronze badge
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The biggest reason it's consuming so many resources is this:
while True:
In essence, the program never stops to wait for anything. It's checking constantly, over and over, to see if the buttons on the keyboard are pressed. A better way, that's much less costly on the computer, is to assign a "callback" to be called whenever your desired key is pressed, and have the program sleep in between key presses. The keyboard
library provides this functionality:
import keyboard
import time
listedSongs = []
currentSong = "idk"
exit = False # make a loop control variable
def alt_k():
i = 1
paused = False
def alt_q():
exit = True
def alt_s():
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
# assign hooks to the keyboard
keyboard.on_press_key("alt+k", alt_k) # on press alt+k, execute alt_k()
keyboard.on_press_key("alt+q", alt_q)
keyboard.on_press_key("alt+s", alt_s)
# main loop
while not exit:
keyboard.wait() # "block" for input (essentially, do nothing until a key is pressed and yield CPU resources to anything else that wants them)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55369075%2fchecking-for-keyboard-inputs-uses-too-much-cpu-usage-is-there-something-wrong-w%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The biggest reason it's consuming so many resources is this:
while True:
In essence, the program never stops to wait for anything. It's checking constantly, over and over, to see if the buttons on the keyboard are pressed. A better way, that's much less costly on the computer, is to assign a "callback" to be called whenever your desired key is pressed, and have the program sleep in between key presses. The keyboard
library provides this functionality:
import keyboard
import time
listedSongs = []
currentSong = "idk"
exit = False # make a loop control variable
def alt_k():
i = 1
paused = False
def alt_q():
exit = True
def alt_s():
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
# assign hooks to the keyboard
keyboard.on_press_key("alt+k", alt_k) # on press alt+k, execute alt_k()
keyboard.on_press_key("alt+q", alt_q)
keyboard.on_press_key("alt+s", alt_s)
# main loop
while not exit:
keyboard.wait() # "block" for input (essentially, do nothing until a key is pressed and yield CPU resources to anything else that wants them)
add a comment |
The biggest reason it's consuming so many resources is this:
while True:
In essence, the program never stops to wait for anything. It's checking constantly, over and over, to see if the buttons on the keyboard are pressed. A better way, that's much less costly on the computer, is to assign a "callback" to be called whenever your desired key is pressed, and have the program sleep in between key presses. The keyboard
library provides this functionality:
import keyboard
import time
listedSongs = []
currentSong = "idk"
exit = False # make a loop control variable
def alt_k():
i = 1
paused = False
def alt_q():
exit = True
def alt_s():
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
# assign hooks to the keyboard
keyboard.on_press_key("alt+k", alt_k) # on press alt+k, execute alt_k()
keyboard.on_press_key("alt+q", alt_q)
keyboard.on_press_key("alt+s", alt_s)
# main loop
while not exit:
keyboard.wait() # "block" for input (essentially, do nothing until a key is pressed and yield CPU resources to anything else that wants them)
add a comment |
The biggest reason it's consuming so many resources is this:
while True:
In essence, the program never stops to wait for anything. It's checking constantly, over and over, to see if the buttons on the keyboard are pressed. A better way, that's much less costly on the computer, is to assign a "callback" to be called whenever your desired key is pressed, and have the program sleep in between key presses. The keyboard
library provides this functionality:
import keyboard
import time
listedSongs = []
currentSong = "idk"
exit = False # make a loop control variable
def alt_k():
i = 1
paused = False
def alt_q():
exit = True
def alt_s():
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
# assign hooks to the keyboard
keyboard.on_press_key("alt+k", alt_k) # on press alt+k, execute alt_k()
keyboard.on_press_key("alt+q", alt_q)
keyboard.on_press_key("alt+s", alt_s)
# main loop
while not exit:
keyboard.wait() # "block" for input (essentially, do nothing until a key is pressed and yield CPU resources to anything else that wants them)
The biggest reason it's consuming so many resources is this:
while True:
In essence, the program never stops to wait for anything. It's checking constantly, over and over, to see if the buttons on the keyboard are pressed. A better way, that's much less costly on the computer, is to assign a "callback" to be called whenever your desired key is pressed, and have the program sleep in between key presses. The keyboard
library provides this functionality:
import keyboard
import time
listedSongs = []
currentSong = "idk"
exit = False # make a loop control variable
def alt_k():
i = 1
paused = False
def alt_q():
exit = True
def alt_s():
if currentSong not in listedSongs:
listedSongs.append(currentSong)
print(listedSongs)
# assign hooks to the keyboard
keyboard.on_press_key("alt+k", alt_k) # on press alt+k, execute alt_k()
keyboard.on_press_key("alt+q", alt_q)
keyboard.on_press_key("alt+s", alt_s)
# main loop
while not exit:
keyboard.wait() # "block" for input (essentially, do nothing until a key is pressed and yield CPU resources to anything else that wants them)
answered Mar 27 at 3:04
Green Cloak GuyGreen Cloak Guy
7,5951 gold badge11 silver badges26 bronze badges
7,5951 gold badge11 silver badges26 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55369075%2fchecking-for-keyboard-inputs-uses-too-much-cpu-usage-is-there-something-wrong-w%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown