[SOLVED] Problem with the new edupython site
Published: February 17, 2026 - 11:30 AM
Good morning,
There's a new website for Edupython. Also, the hrefs have changed
Sincerely,
There's a new website for Edupython. Also, the hrefs have changed
Code: Select all
url = "http://edupython.free.fr/#téléchargement"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(url, "a", proxies=proxies):
if bs_search.get("href", "").split("/")[-1].endswith(".exe"):
download_url = f'http://edupython.free.fr/{bs_search["href"]}'
latest_bin = download_url
version = bs_search.text.split(": ")[1]
break
Sincerely,