This file contains 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
from socketIO_client import SocketIO | |
import json | |
SOCKET_HOST = 'https://brand.nioinstances.com' | |
class RunningAverage: | |
""" | |
Keeps a running average of some grocery type (eg, fruit) | |
""" | |
def __init__(self): |