Reputation: 223
<script type="text/javascript">
document.location = 'content_that_I_want_to_parse';
</script>
it is simple but I couldn't find something like this as most of questions were made for json
could someone guide me how to parse this?
page = s.get('http://theaddress.com')
soup=bs(page.text,'html.parser')
result = soup.find('script'}.get('value')
the result i want is as below
content_that_I_want_to_parse
Upvotes: 0
Views: 1072