tingbot / tingbot-python

🔩 Python APIs to write apps for Tingbot
Other
18 stars 9 forks source link

Add Image load from URL #19

Closed furbrain closed 8 years ago

furbrain commented 8 years ago

Fixes issue #13. Caching has been saved for fixing at a later date

joerick commented 8 years ago

Merged! Thanks @furbrain.

joerick commented 8 years ago

I made a webcam app :D

import tingbot
from tingbot import *

@every(seconds=1)
def loop():
    screen.image('http://95.177.20.83/record/current.jpg', align='right')

tingbot.run()