- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 tweepy 抓取推文,并且想要为我的数据仓库设置数据格式。
每次收到推文时都会调用以下方法:
def on_status(self, status):
statusAsDict= {
"text": status.text,
"created_at": status.created_at,
"language": status.lang,
"user": {
"id": status.author.id,
"name": status.author.name,
"screen_name": status.author.screen_name,
"verified": status.author.verified,
"favourites_count": status.author.favourites_count,
"followers_count": status.author.followers_count,
"friends_count": status.author.friends_count
}
}
if status.in_reply_to_status_id != None:
statusAsDict["in_reply_to_status_id"] = status.in_reply_to_status_id,
if status.in_reply_to_screen_name != None:
statusAsDict["in_reply_to_screen_name"] = status.in_reply_to_screen_name,
if status.coordinates != None:
statusAsDict["coordinates"] = status.coordinates,
if hasattr(status, "retweeted_status"):
statusAsDict["retweet"] = {}
statusAsDict["retweet"]["id"] = status.retweeted_status.id,
statusAsDict["retweet"]["user_id"] = status.retweeted_status.author.id,
statusAsDict["retweet"]["user_screen_name"] = status.retweeted_status.author.screen_name,
statusAsDict["retweet"]["user_verified"] = status.retweeted_status.author.verified,
statusAsDict["retweet"]["user_favourites_count"] = status.retweeted_status.author.favourites_count,
statusAsDict["retweet"]["user_followers_count"] = status.retweeted_status.author.followers_count,
statusAsDict["retweet"]["user_friends_count"] = status.retweeted_status.author.friends_count,
statusAsDict["retweet"]["retweet_count"] = status.retweeted_status.retweet_count,
statusAsDict["retweet"]["text"] = status.retweeted_status.text,
if status.in_reply_to_status_id != None:
print type(status.in_reply_to_status_id)
print type(statusAsDict["in_reply_to_status_id"])
print statusAsDict
它打印以下语句:
<type 'int'>
<type 'tuple'>
{'language': u'en', 'text': u'@fuckitslrhafi7 @fuckitslrhafi rt this from ff and main acc for 50 https://....', 'created_at': datetime.datetime(2016, 3, 30, 12, 25, 10), 'in_reply_to_status_id': (715149454257442816,), 'in_reply_to_screen_name': (u'fuckitslrhafi7',), 'user': {'favourites_count': 55, 'screen_name': u'JOlNTZOUlS', 'friends_count': 29, 'followers_count': 16, 'verified': False, 'id': 3040734513, 'name': u'accs in bio'}}
应该是
'in_reply_to_status_id': 715149454257442816
不是
'in_reply_to_status_id': (715149454257442816,)
如何避免从 int 到 tuple 的转换?
最佳答案
您有一个额外的尾随逗号:
statusAsDict["in_reply_to_status_id"] = status.in_reply_to_status_id,
删除结尾的逗号,它应该可以工作。例如,1,
是一个元组 (1,)
,而 1
只是一个 int
。
您可能还想尝试使用 vars
函数将 status
转换为 dict
,例如
statusAsDict = vars(status)
关于python - 在字典中添加键/值时出现非期望的 "int to tuple"转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36309167/
我有一个包含文件名 和文件路径 的元组列表。我想找到重复的 filename(但 filepath 可能不同),即文件名相同但 filepath 可能不同的元组。 元组列表示例: file_info
我有一个像这样定义的变量 auto drum = std::make_tuple ( std::make_tuple ( 0.3f , Ex
我有一个包含几个字段的自定义结构,我想在快速 switch 语句中对其进行模式匹配,这样我就可以通过将其中一个字段与另一个字段进行比较来自定义匹配正则表达式。 例如鉴于这种结构: struct MyS
我有一种动态元组结构: template //Should only be tuples class DynamicTuple { vector data; //All data is st
这个问题在这里已经有了答案: What and When to use Tuple? [duplicate] (5 个答案) 关闭 8 年前。 我正在查看 Tuple 的在线示例,但我没有看到任何理
在我的项目中我有很多坐标要处理,在二维情况下我发现(cons x y)的构造比(list x y)快和 (vector x y)。 但是,我不知道如何将 cons 扩展到 3D 或更进一步,因为我没有
我有以下 Scala 代码: def f(x: Int, y: Int): Option[String] = x*y match { case 0 => None case n =>
我的直觉告诉我,在一般情况下,只有宏或复杂类型的体操才能解决这个问题。 Shapeless 或 Scalaz 可以在这里帮助我吗?这是 N=2 问题的具体实例,但我正在寻找的解决方案适用于所有合理的
为什么这段 Scala 代码是这样的: class Test { def foo: (Int, String) = { (123, "123") } def bar: Unit
我是 python 和 pygame 的新手,我正在尝试学习向量和类的基础知识,但在这个过程中我搞砸了,而且我在理解和修复标题中的错误消息方面苦苦挣扎。 这是我的 Vector 类的代码: impor
我正在编写一个程序来打开和读取一个 txt 文件,并在每一行中循环。将第 2 列和第 4 列中的值相乘并将其分配给第 5 列。 A 500.00 A 84.15 ? B 648.80 B 77.61
我知道还有其他几个问题提出了完全相同的问题,但是当我运行时: 导入命令 从 pyDes 导入 * def encrypt(data, password,): k = des(password,
我有一个元组列表,内容如下: >>>myList [(), (), ('',), ('c', 'e'), ('ca', 'ea'), ('d',), ('do',), ('dog', 'ear', '
给定一个 boost::tuple 和 std::tuple,你如何在它们之间进行转换? 也就是说,您将如何实现以下两个功能? template boost::tuple asBoostTuple(
我无法初始化 std::tuple来自 std::tuple 的逐元素元素兼容类型。为什么它不像 boost::tuple 那样工作? #include #include template st
我是 Storm 的新手并且我正在尝试找出如何编写一个 bolt 测试来测试子类 BaseRichBolt 中的 execute(Tuple tuple) 方法。 问题是 Tuple 似乎是不可变的,
如果我有如下元组列表: [('a', 'b'), ('c', 'd'), ('a', 'b'), ('b', 'a')] 我想删除重复的元组(在内容和内部项目顺序方面重复)以便输出为: [('a',
我编写了一个简单的脚本来模拟基于每用户平均收入 (ARPU)、利润率和客户保持客户的年数 (ltvYears) 的客户生命周期值(value) (LTV)。下面是我的脚本。它在“ltvYears =
以下是我的代码,它是一组元组:。输出:设置([(‘A’,20160129,36.44),(‘A’,20160104,41.06),(‘A’,20160201,37.37)])。如何将另一个元组(‘A’
我用以下代码编写了一个程序: import pandas as pd import numpy as np from typing import Tuple def split_data(self,
我是一名优秀的程序员,十分优秀!