In [1]:
import numpy as np
import scipy as sp
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
import client_base as cb
In [2]:
c = cb.Client()
# Change these values to map to the game instance's HTML port (use None for default port)
host = ""
port = None
In [ ]:
def do(cmd):
return cb.run_command(cmd, use_curl=True, host=host, port=port)
In [3]:
do('help')
Out[3]:
In [ ]: