module to keep windows running
Find a file
2016-11-27 21:08:35 -06:00
stodle restructured project 2016-11-27 21:08:35 -06:00
.gitignore updated project structure 2016-11-27 20:44:11 -06:00
README.md first commit 2016-11-22 23:41:27 -06:00
requirements.txt first commit 2016-11-22 23:33:54 -06:00
setup.py updated project structure 2016-11-27 20:44:11 -06:00

Stodle

Python module to keep windows running

Installation from cmd line

git clone https://github.com/WaylonWalker/stodle.git
cd ./stodle
python setup.py install

Usage

from stodle import stop_idle()
import time

def really_long_function()
    """
    needs to run without windows going into screensaver
    """

    for i in range(1000)
        time.sleep(100)
        stop_idle()