import requests
from bs4 import BeautifulSoup

url = 'https://www.geny.com/partants-pmu/2021-08-22-le-mont-saint-michel-pmu-prix-des-benevoles_c1253399'

page = requests.get(url)
soup = BeautifulSoup(page.text, 'html.parser')
page.encoding = 'ISO-885901'
# l_j = soup.find_all('table', width='33.333333333333336%')
l_j = soup.find_all('table', width='100%')

# for row in l_j:
#     col = row.find_all('tr')
#     print(col)

print(l_j)
