Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web-scraping #693

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Web-scraping #693

wants to merge 1 commit into from

Conversation

Dhallod07
Copy link

web scraping program...

Copy link

@Alperencode Alperencode left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should use more specified variable names and definitions to keep your code clean. I just suggested and change them for you.

res = requests.get("https://www.amazon.in/s?bbn=976419031&rh=n%3A976419031%2Cp_89%3Arealme&dc&qid=1624216249&rnid=3837712031&ref=lp_976420031_nr_p_89_3", headers = headers)
bs = BeautifulSoup(res.text, "html.parser")
print(bs.title.string)
print(bs.find_all("div", {"class" : "s-image-square-aspect"}))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use:
print(bs.find_all("div",class_="s-image-square-aspect"))

bs = BeautifulSoup(res.text, "html.parser")
print(bs.title.string)
print(bs.find_all("div", {"class" : "s-image-square-aspect"}))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

create a variable for div section, then use this on for loop:
div_section = bs.find_all("div",class_="s-image-square-aspect")

print(bs.title.string)
print(bs.find_all("div", {"class" : "s-image-square-aspect"}))

for x in bs.find_all("div", {"class" : "s-image-square-aspect"}):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use more specified variable names like:
for div in div_section:
print(div.text)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants