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;








-1















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 :)










share|improve this question






























    -1















    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 :)










    share|improve this question


























      -1












      -1








      -1








      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 :)










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 2:51









      predupredu

      31 bronze badge




      31 bronze badge

























          1 Answer
          1






          active

          oldest

          votes


















          0














          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)





          share|improve this answer
























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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)





            share|improve this answer





























              0














              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)





              share|improve this answer



























                0












                0








                0







                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)





                share|improve this answer













                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)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                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





















                    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.



















                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript