I know Beautiful Soup does not support xpath expressions. Thus I end up writing code that looks like this:
soup.findChildren(['table'])[0].findChildren(['tr'])[0].findChildren(['td'])[0]
UGLY! Is there a cleaner and more direct way to write these kinds of chains without xpath using Beautiful Soup. I do not want to use lxml because it has trouble parsing my HTML.