Let's say we have a data on a webpage (for example: "Name: Bill Gates"). When we inspect the data on the browser we find:
<b> Name </b>: Bill Gates
but when we scrape it using BeautifulSoup, the name is actually a variable (like in jinja template) and we end up with
<b> Name </b>: {{ name }}
Is there a way to extract the {{ name }} value (i.e. "Bill Gates") using BeautifulSoup ?
I didn't find an answer to that on internet (maybe didn't use the right keywords? any suggestions ?)
(Example: extracting names from https://orcid.org/orcid-search/quick-search/?searchQuery=mario%20franca)