I'd like to scrape a site for my office work. I am learning each day. I need your support guys.
Here is the Code:
url = https://www.eprocure.gov.bd/partner/ViewTenderPaymentDetails.jsp?payId=33767442&uId=12381&tenderId=860992&lotId=1332668&payTyp=ps)
headers = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0","Accept-Encoding": "\*","Connection": "keep-alive"}
requests.get(url, verify=False, headers=headers)
soup = BeautifulSoup(url,'html.parser').textprint(soup)
Result:
InsecureRequestWarning: Unverified HTTPS request is being made to host 'www.eprocure.gov.bd'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#tls-warnings
warnings.warn(
1099: InsecureRequestWarning: Unverified HTTPS request is being made to host 'www.eprocure.gov.bd'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#tls-warnings
warnings.warn(
57: MarkupResemblesLocatorWarning: The input looks more like a URL than markup. You may want to use an HTTP client like requests to get the document behind the URL, and feed that document to Beautiful Soup.
soup = BeautifulSoup(url,'html.parser').text
Please help me with scraping the site. I've just started coding.