I am trying to scrape a website using beautiful soup. For that, while making a request I need to send the Instagram user ID which is supposed to be entered in a search box & scrape the response HTML. How should I send the user ID while sending a request? Thanks.
import requests
from bs4 import BeautifulSoup
URL = "https://product.influencer.in/price-index"
r = requests.get(URL)
soup = BeautifulSoup(r.content, 'lxml')
print(soup.prettify())