I made a crawler in python, and I am trying to download the image from this article-http://www.bbc.com/news/business-34958154. The problem in this website, is that it auto rezise it, and when I am tring to download the article's image, it give me in 320 pixels(too small). The reason it happen is that the crawler is enter to the url's source file(view-source:http://www.bbc.com/news/business-34958154), which there is 320 pixels. There is a way to make the image max size, or how I see it in the browser? This is the code that take the images:
r = requests.get("http://www.bbc.com/news/business-34958154")
soup = BeautifulSoup(r.content)
soupAllImgs=soup.findAll('img',src=True)