Removed accidental overwrite of submit method

This commit is contained in:
Boyan 2024-12-02 17:00:06 +01:00
parent 6a781ad238
commit c14f87aecc

View File

@ -11,13 +11,11 @@ class ExerciseGroup(Group):
super().__init__(session, path, title, parent, submitable=submitable) super().__init__(session, path, title, parent, submitable=submitable)
self.submit_url = f"{self.base_url}/api/submit{self.path}" self.submit_url = f"{self.base_url}/api/submit{self.path}"
self.__find_name() self.__find_name()
def __find_name(self): def __find_name(self):
""" """
Find the name of the exercise group. Find the name of the exercise group.
""" """
if self.title == "": if self.title == "":
# Find using beautiful soup (it is the last a with class 'fill accent large')
response = self.session.get(self.base_url + self.path) response = self.session.get(self.base_url + self.path)
soup = BeautifulSoup(response.text, "lxml") soup = BeautifulSoup(response.text, "lxml")
title_elements = soup.find_all("a", class_="fill accent large") title_elements = soup.find_all("a", class_="fill accent large")
@ -26,26 +24,5 @@ class ExerciseGroup(Group):
else: else:
self.title = self.path.split("/")[-1] self.title = self.path.split("/")[-1]
def submit(self, files: list[str]) -> Submission:
"""
Submit files to this exercise.
"""
if not self.submitable:
raise ValueError(f"Cannot submit to non-submittable item '{self.title}'.")
# Prepare the files and data for submission
files_payload = {}
for idx, file_path in enumerate(files):
file_key = f"file{idx}"
with open(file_path, "rb") as f:
files_payload[file_key] = (file_path, f.read())
response = self.session.post(self.submit_url, files=files_payload)
if response.status_code != 200:
raise ConnectionError(f"Failed to submit to '{self.title}'.")
submission_data = response.json()
return Submission(self.session, submission_data)
def __str__(self): def __str__(self):
return f"ExerciseGroup({self.title})" return f"ExerciseGroup({self.title})"