Python Forum
BeautifulSoup4, How to get an HTML tag with specific class.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
BeautifulSoup4, How to get an HTML tag with specific class.
#4
Thank you Larz.

I did try:

test = soup.find('img', {'class': 'this'})
But that returned just the first instance of <img class="this
Which happened to be a <img class="this and that"

and
test = soup.find_all('img', {'class': 'this'})
[python]

returns all img tags with class="this" and class="this and that"
[hr]
and
[python]
test = soup.find_all('img', {'class': 'this'})
returns all img tags with class="this" and class="this and that"

...and

test = soup.find_all('img', {'class': 'this'})
returns all img tags with class="this" and class="this and that"
Reply


Messages In This Thread
RE: BeautifulSoup4, How to get an HTML tag with specific class. - by Broadsworde - Nov-22-2018, 02:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Div Class HTML selector in Python Artur 1 572 Mar-28-2024, 09:46 AM
Last Post: StevenSnyder
  Beautifulsoup4 help samuelbachorik 1 1,351 Feb-05-2022, 10:44 PM
Last Post: snippsat
  Python Obstacles | Karate | HTML/Scrape Specific Tag and Store it in MariaDB BrandonKastning 8 3,164 Nov-22-2021, 01:38 AM
Last Post: BrandonKastning
  HTML multi select HTML listbox with Flask/Python rfeyer 0 4,623 Mar-14-2021, 12:23 PM
Last Post: rfeyer
  Python3 + BeautifulSoup4 + lxml (HTML -> CSV) - How to write 3 Columns to MariaDB? BrandonKastning 21 6,913 Mar-23-2020, 05:51 PM
Last Post: ndc85430
  Python3 + BeautifulSoup4 + lxml (HTML -> CSV) - How to loop to next HTML/new CSV Row BrandonKastning 0 2,362 Mar-22-2020, 06:10 AM
Last Post: BrandonKastning
  How to get the href value of a specific word in the html code julio2000 2 3,201 Mar-05-2020, 07:50 PM
Last Post: julio2000
  BeautifulSoup4 plugin help Lathem01 2 2,021 Feb-16-2020, 11:56 AM
Last Post: snippsat
  Web crawler extracting specific text from HTML lewdow 1 3,398 Jan-03-2020, 11:21 PM
Last Post: snippsat
  How do I extract specific lines from HTML files before and after a word? glittergirl 1 5,098 Aug-06-2019, 07:23 AM
Last Post: fishhook

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020