Python BeautifulSoup give multiple tags to findAll

Question:

I’m looking for a way to use findAll to get two tags, in the order they appear on the page.

Currently I have:

import requests
import BeautifulSoup

def get_soup(url):
    request = requests.get(url)
    page = request.text
    soup = BeautifulSoup(page)
    get_tags = soup.findAll('hr' and 'strong')
    for each in get_tags:
        print each

If I use that on a page with only ’em’ or ‘strong’ in it then it will get me all of those tags, if I use on one with both it will get ‘strong’ tags.

Is there a way to do this? My main concern is preserving the order in which the tags are found.

Asked By: DasSnipez

||

Answers:

Use regular expressions:

import re
get_tags = soup.findAll(re.compile(r'(hr|strong)'))

The expression r'(hr|strong)' will find either hr tags or strong tags.

Answered By: TerryA

You could pass a list, to find any of the given tags:

tags = soup.find_all(['hr', 'strong'])
Answered By: jfs

To find multiple tags, you can use the , CSS selector, where you can specify multiple tags separated by a comma ,.

To use a CSS selector, use the .select_one() method instead of .find(), or .select() instead of .find_all().

For example, to select all <hr> and strong tags, separate the tags with a ,:

tags = soup.select('hr, strong')
Answered By: MendelG
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.