19 lines
250 B
Python
19 lines
250 B
Python
class WebEnvironment():
|
|
def __init__(self):
|
|
pass
|
|
|
|
def reset(self):
|
|
pass
|
|
|
|
def observation(self):
|
|
pass
|
|
|
|
def get_url(self):
|
|
pass
|
|
|
|
def step(self, action):
|
|
pass
|
|
|
|
def done(self):
|
|
pass
|