#!/usr/bin/python2
import os
import sys

try:
  import burst.console
except ImportError:
  sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0]))))
  import burst.console

if __name__ == "__main__":
    burst.console.interact()
