Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下 Python 代码,它从 cassandra 数据库中获取数据。我想要实现的是最后有 json 编码的变量。但是,毫不奇怪,我的代码仅将最新数据行附加到变量。
如何将所有数据组合或附加到单个变量?
for key, columns in crime.get_range(): data = json.dumps(columns)
谢谢
我正在使用 Pycassa 作为库来访问 Cassandra
首先收集列表中的所有数据,然后对该列表进行编码:
data = json.dumps([columns for key, columns in crime.get_range()])