Created
September 9, 2019 16:47
-
-
Save ansarid/6289b482c8e82c92ffedd018457bf934 to your computer and use it in GitHub Desktop.
Python Heartrate Demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import heartrate; heartrate.trace(browser=True) | |
import time | |
x = 0 | |
while x < 100: | |
print("Hello World\t", x) | |
time.sleep(0.1) | |
x+=1 | |
exit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment