- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在构建一个 Django 应用程序,它通过 LinkedIn API 下载一些数据并将其存储到 MongoDB。我正在使用 python-linkedin图书馆。一个函数获取群组帖子并将这些帖子作为字典对象返回。
在测试时我收到以下类型错误:
======================================================================
ERROR: test_get_or_create_post (providers.linkedin.tests.LinkedInTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/josephfusaro/explorro/explorro/app/providers/linkedin/tests.py", line 36, in test_get_or_create_post
api.get_or_create_post(a1)
File "/Users/josephfusaro/explorro/explorro/app/providers/linkedin/api.py", line 134, in get_or_create_post
existing_post = Post.objects.get(post_id=post['id'])
TypeError: string indices must be integers, not str
这是返回的字典对象的示例,表示 LinkedIn 组帖子和创建帖子的用户。
{u'creator':
{u'firstName': u'Joe',
u'headline': u'General Manager',
u'id': u'Wr4g5xEN4I',
u'lastName': u'P.',
u'pictureUrl': u'http://m.c.lnkd.licdn.com/mpr/mprx/0_x...xJkwu'},
u'id': u'g-60415-S-5913079393848621697',
u'title': u'How do you use LinkedIn groups for business?',
u'type': {u'code': u'standard'}
}
我正在尝试将这些对象存储在 MongoDB 中。这是(大部分)documents.py 文件:
# documents.py
from mongoengine import (
Document,
ReferenceField,
StringField,
IntField,
DateTimeField,
URLField,
DictField,
ListField, DoesNotExist, NotUniqueError)
from abc import ABCMeta, abstractmethod
class LinkedInUser(Document):
linkedin_user_id = StringField(required=True)
screen_name = StringField()
first_name = StringField()
last_name = StringField()
description = StringField()
url = URLField()
profile_image_url = URLField()
class Post(Document):
linkedin_user = ReferenceField(LinkedInUser,required=True)
post_id = StringField(required=True)
title = StringField()
这是接收帖子(预期为字典)并将其保存在 MongoDB 中的函数
# api.py
def get_or_create_post(post):
try:
existing_post = Post.objects.get(post_id=post['id'])
return existing_post
except DoesNotExist:
try:
new_post = Post()
new_post.linkedin_user = get_or_create_linkedin_user(
post['creator']
)
new_post.post_id = post['id']
new_post.title = post['title']
new_post.save()
return new_post
except NotUniqueError:
return get_or_create_post(post)
请注意,我在运行 Django 测试时遇到错误
# tests.py
from django.test import TestCase
from .models import OauthToken
from accounts.models import EmailUser
from . import api
class LinkedInTestCase(TestCase):
'''To run these tests: python app/manage.py test linkedin'''
def setUp(self):
cust_user = EmailUser.objects.create()
oauth = OauthToken.objects.create(user=cust_user)
oauth.access_token = "AQUaXm...klsdfQ"
oauth.save()
def test_get_or_create_post(self):
oauth = OauthToken.objects.get(user=0)
auth = api.get_linkedin_api(access_token=oauth.access_token)
posts = api.get_linkedin_group_digest(auth) # create generator object and set to 'posts'
a = next(posts) # get item from generator object above
a1 = ["values"][0] # Get first post from dict
api.get_or_create_post(a1)
这是 Django ORM + MongoDB 的限制,还是我做错了什么?
最佳答案
问题是
a1 = ["values"][0]
检查输出
>>> a1 = ["values"][0]
>>> print a1
values
你可能不得不这样写
a1 = a["values"][0]
关于Python、MongoDB、Mongoengine - TypeError : string indices must be integers, 不是 str,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25656884/
我有一个 TableView,每个单元格的附件都设置为“披露指示器”,它工作正常。 然后,我决定在使用外部来源的数据更新每个单元格时添加一个事件指示器。为此,我设置了: cell.accessoryV
我正在尝试遵循来自 here 的公认解决方案在 Xcode 6.3.2 上,但指示器拒绝显示,或者由于某种原因我在 iPhone 6 plus 上看不到它。没有错误消息、带有标题的警告等显示,并且空白
我的 JavaFX 应用程序计算另一个文件夹下一层的每个文件夹的大小。我的问题是,当我点击“应用”按钮(该按钮在另一个类中开始计算)时,我想要一个不确定的进度指示器来向用户显示该应用程序正在运行并且尚
One of the biggest causes of instability in Elasticsearch is fielddata: field values have to be load
我在实验宇宙学中做一些模拟,在使用 numpy 数组时遇到了这个问题。我是 numpy 的新手,所以我不确定我是否做错了或者这是一个错误。我跑: Enthought Python Distributi
我有一个结构数组,这些结构基本上是形成一条边的两个点。由于性能,我使用结构。 现在我有对象 A 保存边缘和这个对象中的一个方法来告诉另一个对象 B 关于这个边缘数组中的连续边缘列表。 边缘: e0 e
我正在使用 Elasticsearch ( Official PHP client) 开发一个 PHP 网站。 我正在编写需要确定新插入文档的测试在继续之前准备好搜索。 为此,在索引新文档后,我调用:
我是 DirectX 12 的新手,正在尝试在 DX 上渲染网格。到目前为止,我成功地从 obj 和 fbx 文件中检索顶点和索引,并使用模板通用窗口项目在 DX 12 上渲染所有顶点。但是,我遇到了
我是 DirectX 12 的新手,正在尝试在 DX 上渲染网格。到目前为止,我成功地从 obj 和 fbx 文件中检索顶点和索引,并使用模板通用窗口项目在 DX 12 上渲染所有顶点。但是,我遇到了
我正在使用 StratifiedKFold 创建用于拆分数据的索引。它给了我索引超出范围的错误。 Xdev的索引从0到47503。 cv_index 变量的 min 和 max 索引分别为 0 和 1
我想绘制以下 UIPageControl 指示器: 我目前有以下代码,结果是: if (isHighlighted) { UIBezierPath *ovalPath = [UIBezierP
我们在以下用例中使用 elasticsearch。 Elasticsearch 版本:5.1.1 注意:我们使用的是 AWS 托管的 ElasticSearch 我们有一个 Multi-Tenancy
我正在尝试使用 scikit-learn 中的算法根据大量输入来预测输出。我似乎收到错误“索引过多”,但无法弄清楚原因。 CSV 文件训练: 1.1 0.2 0.1 0 0.12 0
在this page的底部从 Python 2.3 文档中它说: slice objects now have a method indices(length) which, given the le
我在主线程上做一些繁重的计算,这些计算不能在单独的线程上运行。 我想在这些计算运行时在应用程序 UI 上显示一个“忙碌指示器”(即旋转小部件)。因此,我无法在主线程上显示繁忙指示器,因为在这些计算运行
我有一个名为 memory_region 的类,有点像未类型化的 gsl::span (即它本质上是一个 void* 和一个 size_t ),我也将其用于类型删除。因此它有一个 as_span()方
我一直在寻找如何将 Tablayout 中的指示器更改为圆形,就像这样 但我不知道该怎么做,任何帮助! 最佳答案 来自source code ,标签指示器定义为: @dimen/de
我在哪里可以找到可绘制的 Android“向上”按钮以便我可以对其进行自定义?或者它的文件名是什么,以便我可以快速搜索以在 sdk 目录中找到它? 最佳答案 正如您在 default style 中看
我遇到了 ViewPager 的另一个问题,我现在无法用我目前的知识解决它。 我有带 ViewPager 的 TabPageIndicator,在每个选项卡上,我都显示文本。这是简单的 TextVie
我将如何制作一个自定义指示器,该指示器将使用可绘制对象和用于 SwipeRefreshLayout 的自定义动画? 我查看了 SwipeRefreshLayout 的源代码,发现 CircleImag
我是一名优秀的程序员,十分优秀!