Home | History | Annotate | Download | only in docs

Lines Matching refs:soup

178 def validate_clones(soup):
183 soup - an instance of BeautifulSoup
190 for clone in soup.find_all("clone"):
199 matching_entry = soup.find(find_entry)
212 def validate_entries(soup):
220 soup - an instance of BeautifulSoup
226 for entry in soup.find_all("entry"):
281 soup = BeautifulSoup(xml, features='xml')
283 succ = validate_clones(soup)
284 succ = validate_entries(soup) and succ
287 return soup