-2

===changed after getting the source of page, lets call it src

I use bs4 for parsing:

soup = BeautifulSoup(src)

the think is that I'm getting the filtered data.

Example: look at the source of this url="http://www.imdb.com/name/nm0000905/" after using bs4:

soup = BeautifulSoup(src)

the filtered data is "Known For" and "Related News" and all what under it. so when opening soup I see the upper part of the page. (see python,not getting full response) I still want to work with bs4 (I have too) any suggestion?

thanks for help.

Community
  • 1
  • 1
  • Be more specific with your question. Tell us what you tried, what you expected and what you got. – KurzedMetal Apr 11 '12 at 13:36
  • Now that you've added a little more, I still don't see what you're asking. Is this not just a duplicate of your question from four hours earlier? – Chris Morgan Apr 11 '12 at 15:05
  • @Chris Morgan this is not duplicated because I'm trying to explain what is the problem of the first case. and looking for solution for it. so: why soup is not full?> –  Apr 11 '12 at 19:38

1 Answers1

2

Suggestions? yes, use the library as specified in the documentation.

KurzedMetal
  • 12,540
  • 6
  • 39
  • 65