Source code for oi_cli2.model.BaseOj
from typing import Any, Union, AsyncIterator
from oi_cli2.model.LangKV import LangKV
from oi_cli2.model.ParseProblemResult import ParsedProblemResult
from oi_cli2.model.ProblemMeta import ContestMeta, ProblemMeta
from oi_cli2.model.Result import SubmissionResult
[docs]class BaseOj(object):
def __init__(self):
pass
[docs] def submit_code(self, problem_url: str, language_id: str, code_path: str) -> Union[bool, Any]:
assert (False)
[docs] async def async_get_result_yield(self, problem_url: str, time_gap: float = 1) -> AsyncIterator[SubmissionResult]:
raise NotImplementedError
yield 0