0

我想打印首轮选秀的 30 支 nba 球队的图像。但是,当我告诉它打印时,它会打印出链接而不是图像。我如何让它打印出图像而不是给我图像链接。这是我的代码:

import urllib2
from BeautifulSoup import BeautifulSoup
# or if your're using BeautifulSoup4:
# from bs4 import BeautifulSoup

soup = BeautifulSoup(urllib2.urlopen('http://www.cbssports.com/nba/draft/mock-draft').read())

rows = soup.findAll("table", attrs = {'class': 'data borderTop'})[0].tbody.findAll("tr")[2:]

for row in rows:
  fields = row.findAll("td")
  if len(fields) >= 3:
    anchor = row.findAll("td")[1].find("a")
    if anchor:
      print anchor
4

1 回答 1

0

您需要将文件转换为 base64 编码,这将提供一串数据,可以根据需要移动和存储。我通常用 PHP 来做这件事,如果 Python 有点粗糙,我很抱歉

import urllib2
import base64
url = 'http://somesite.com/images/team_one.jpg'
grab = urllib2.urlopen(url)
encoded_image_string = base64.b64encode(grab.read())
于 2012-07-02T01:00:43.123 回答