Metadata-Version: 2.1
Name: caffeinate
Version: 0.0.4
Summary: Don't let your computer go to sleep while you're busy thinking
Home-page: https://github.com/subash774/Caffeinate
Author: Subash Poudyal
Author-email: subash.poudyal8@gmail.com
License: MIT
Description: # Caffeinate
        Don't let your computer go to sleep while you're busy thinking.
        
        # Why would I need this?
        Software engineering is more about thinking than typing. And it's very annoying when you're whiteboarding or just thinking and your work machine goes to sleep. Most of the times, we don't have admin access to change the settings so this helps prevent the computer from going to sleep.
        
        # Installation
        Using pip: 
        ```
        pip install caffeinate
        ```
        
        Using pip3:
        ```
        pip3 install caffeinate
        ```
        
        # Usage
        | :memo:        | Tested on OSX and Windows       |
        |---------------|:------------------------|
        
        On windows, you might need to create a simple python file (code below) as path variable seems to be admin restricted. 
        
        ```
        from caffeinate import caffeinate
        
        caffeinate.run()
        ```
        
        On Linux or Mac OSX, you can simply type ```awake``` in the terminal. 
        
        # Termination
        To terminate the process, press ```Esc``` key 3 consecutive times (doesn't have to be terminal focused key presses).
        
        
        # TODO 
        * [ ] Add good documentation to the usage with params explained
        * [ ] Cleanup the code, maybe use classes for extentibility 
        
Platform: UNKNOWN
Requires-Python: >=3.6.3
Description-Content-Type: text/markdown
