I have soup
with the following tag/information:
<table class="first_day info"> ==$0
<tbody>
...
I am trying to access this table but can't seem to get syntax right. I think it has to do with the ==$0
but I can't figure it out.
I'm using the following code/syntax:
briefs = briefs_meta.find("table",class_='first_day info')
and I've also tried:
briefs_meta = soup.find_all("table",{"class": "first_day info"})
But all I get is an empty result.
Insight?