Working on a partial answer to this question, I came across a bs4.element.Tag
that is a mess of nested dicts and lists (s
, below).
Is there a way to return a list of urls contained in s
without using re.find_all
? Other comments regarding the structure of this tag are helpful too.
from bs4 import BeautifulSoup
import requests
link = 'https://stackoverflow.com/jobs?med=site-ui&ref=jobs-tab&sort=p'
r = requests.get(link)
soup = BeautifulSoup(r.text, 'html.parser')
s = soup.find('script', type='application/ld+json')
## the first bit of s:
# s
# Out[116]:
# <script type="application/ld+json">
# {"@context":"http://schema.org","@type":"ItemList","numberOfItems":50,
What I've tried:
- randomly perusing through methods with tab completion on
s
. - picking through the docs.
My problem is that s
only has 1 attribute (type
) and doesn't seem to have any child tags.