Skip to content

Instantly share code, notes, and snippets.

@ansarid
Created September 9, 2019 16:47
Show Gist options
  • Save ansarid/6289b482c8e82c92ffedd018457bf934 to your computer and use it in GitHub Desktop.
Save ansarid/6289b482c8e82c92ffedd018457bf934 to your computer and use it in GitHub Desktop.
Python Heartrate Demo
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