Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to run a function in interval in python

# This runs test() function in intervals of 1 second
from threading import Timer
run = True
def test():
	global run
	print("something")
	if run:
		Timer(1, test).start()

test()
# now whenever you set run to False the test function won't run anymore
# and of course if you dont set it to False it will run forever
Comment

how to run a function in interval in python

# this makes program sleep in intervals
from time import time, sleep
while True:
    sleep(1 - time() % 1) # run every 1 second... you can change that
	# thing to run
Comment

PREVIOUS NEXT
Code Example
Python :: pandas merge multiple dataframes 
Python :: Set column as index with pandas 
Python :: python pearson correlation 
Python :: rename columns in datarame pandas 
Python :: how to join a list of characters in python 
Python :: the month before python dateime 
Python :: Install Basemap on Python 
Python :: Pyo example 
Python :: loop rought rows in pands 
Python :: command to check python version in linux 
Python :: seaborn heatmap text labels 
Python :: pandas object to float 
Python :: multiple input in python 
Python :: multiply column of dataframe by number 
Python :: why men are better than woman 
Python :: python list comma separated string 
Python :: how to log ip addresses in django 
Python :: how to show webcam in opencv 
Python :: read csv without index 
Python :: __name__== __main__ in python 
Python :: deleting duplicates in list python 
Python :: natsort python pip install 
Python :: how to test wifi speed py 
Python :: selenium webdriver python 
Python :: add role discord .py 
Python :: execute python in notepad++ 
Python :: reset a turtle python 
Python :: how to address a column in a 2d array python 
Python :: python for loop max iterations 
Python :: use of == python 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =