Skip to content
Advertisement

Tag: python-requests-html

Python Scrap Same item from all subpages using BeautifulSoup

I am trying to scrap “salary” from each subpage. For one of the subpage, I am copying the specific contents of the soup =BeautifulSoup(requests.get(‘url_of_job’).text. I copied soup content to a word file and sliced the content surrounding salary and copied here. Copying all text crosses the limit here. soup = My code: Present solution: Expected solution: Answer Here is a

Advertisement