Create BeeCluster Sessions Example
import sys
sys.path.append('../python') # path to beecluster
import beecluster
# Session Creation Style 1
bc = beecluster.Session(appID = "TEST-0")
# do nothing
bc.close()
# Session Creation Style 2
with beecluster.Session(appID = "TEST-0") as bc:
# do nothing
pass