===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.