如何修复以下错误:AttributeError:' dict'对象没有属性' text'

时间:2016-06-02 19:35:40

标签: python database screen-scraping

我是编程的几个月。我目前正在学习如何自动化项目中的某些事情。我的目标是抓取text,src和href并将数据存储在我网站的数据库中,但是当我尝试时我得到了这个错误

AttributeError: 'dict' object has no attribute 'text'

但确实如此。这是我的代码。我创建了一个函数

def get_world_too():
        url = 'http://www.example.com'
        html = requests.get(url, headers=headers)
        soup = BeautifulSoup(html.text, 'html5lib')

        titles = soup.find_all('section', 'box')[:9]
        entries = [{'href': box.a.get('href'),
                    'src': box.img.get('src'),
                    'text': box.strong.a.text,
                    'url': url
                    } for box in titles]
        return entries

然后我做了这个

def noindex(request):
    world = get_world_too()

    for entry in world:
        post = Post()
        post.title = entry.text
        post.image_url = entry.src
        # post.url = entry.url
        # post.link = entry.href
        # post.description = entry.description
        #
        # d = datetime.datetime(*(entry.published_parsed[0:6]))
        # date_string = d.strftime('%Y-%m-%d %H:%M:%S')
        #
        # post.publication_date = date_string
        post.save()

        template = "blog/post/noindex.html"
        context = {

        }
        return render(request, template, context)

我的功能中的文字属性不是吗?然后,如果我试着评论文本它告诉我

AttributeError: 'dict' object has no attribute 'src'

如何解决这个问题,以便我想要的数据存储在我的数据库中而没有任何错误?如果这会产生影响,我会使用django。

2 个答案:

答案 0 :(得分:2)

你必须像这样访问字典键:

entry['text']
entry['src']

不喜欢这个

entry.text
entry.src

答案 1 :(得分:0)

在python中,您无法使用语法dict.key访问字典项, 如果entry是字典,则可以使用

  • entry['key1']
  • entry.get('key')