From 148265b23ebf485152841648da82d57760fd065e Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Mon, 15 May 2023 12:57:38 +0200 Subject: [PATCH] Add files via upload --- example_get_drop_targets.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/example_get_drop_targets.py b/example_get_drop_targets.py index 8b78383..90146cb 100644 --- a/example_get_drop_targets.py +++ b/example_get_drop_targets.py @@ -11,6 +11,8 @@ from selenium.webdriver.firefox.service import Service as FirefoxService from webdriver_manager.firefox import GeckoDriverManager from content.change_url import change_url from content.get_drop_targets import get_drop_targets +from content.make_drop_map import make_drop_map + page_id: int = 59492 base_url: str = "https://www.uni-bremen.de" @@ -45,6 +47,10 @@ for i in range(0, len(id_name)): print(f"{id_name[i]} => ({center_x[i]}, {center_y[i]})") +organization_matrix = make_drop_map(center_x, center_y) +print("How the drop points are organized: (-1 => Empty)") +print(organization_matrix) + print("Close shop") driver.close() driver.quit()