如何从 UnQLite 集合中提取字段值
How to extract a field value from UnQLite collection
db = UnQLite('test.db')
data = db.collection('data')
print(data.fetch(0))
这会打印
{'id': b'abc', 'type': b'business', 'state': b'AZ', 'latitude': 33.3482589,
'name': b"ABC Restaurant", 'full_address': b'1835 E ABC Rd, Ste C109, Phoenix, AZ 85284',
'categories': [b'Restaurants', b'Buffets', b'Italian'],
'open': True, 'stars': 4, 'city': b'Phoenix', 'neighborhoods': [],
'__id': 0, 'review_count': 122, 'longitude': -111.9088346}
如何获取城市的值 "Phoenix"?
type(data.fetch(0))
打印 class 'dict'
我正在查看 UnQlite 文档,没有找到太多。请帮忙。
你已经得到一个字典,所以你只需要搜索键
x = {'id': b'abc', 'type': b'business', 'state': b'AZ', 'latitude': 33.3482589,
'name': b"ABC Restaurant", 'full_address': b'1835 E ABC Rd, Ste C109, Phoenix, AZ 85284',
'categories': [b'Restaurants', b'Buffets', b'Italian'],
'open': True, 'stars': 4, 'city': b'Phoenix', 'neighborhoods': [],
'__id': 0, 'review_count': 122, 'longitude': -111.9088346}
x['city']
#b'Phoenix'
这里 Phoenix
不是 str
对象而是 byte
所以如果你想要它作为字符串你可以使用 decode
转换它
x['city'].decode()
#'Phoenix'
或者您的情况:
data.fetch(0)['city'].decode()
我想通了。执行 collection.fetch(0).get('city') 给出值。
db = UnQLite('test.db')
data = db.collection('data')
print(data.fetch(0))
这会打印
{'id': b'abc', 'type': b'business', 'state': b'AZ', 'latitude': 33.3482589,
'name': b"ABC Restaurant", 'full_address': b'1835 E ABC Rd, Ste C109, Phoenix, AZ 85284',
'categories': [b'Restaurants', b'Buffets', b'Italian'],
'open': True, 'stars': 4, 'city': b'Phoenix', 'neighborhoods': [],
'__id': 0, 'review_count': 122, 'longitude': -111.9088346}
如何获取城市的值 "Phoenix"?
type(data.fetch(0))
打印 class 'dict'
我正在查看 UnQlite 文档,没有找到太多。请帮忙。
你已经得到一个字典,所以你只需要搜索键
x = {'id': b'abc', 'type': b'business', 'state': b'AZ', 'latitude': 33.3482589,
'name': b"ABC Restaurant", 'full_address': b'1835 E ABC Rd, Ste C109, Phoenix, AZ 85284',
'categories': [b'Restaurants', b'Buffets', b'Italian'],
'open': True, 'stars': 4, 'city': b'Phoenix', 'neighborhoods': [],
'__id': 0, 'review_count': 122, 'longitude': -111.9088346}
x['city']
#b'Phoenix'
这里 Phoenix
不是 str
对象而是 byte
所以如果你想要它作为字符串你可以使用 decode
x['city'].decode()
#'Phoenix'
或者您的情况:
data.fetch(0)['city'].decode()
我想通了。执行 collection.fetch(0).get('city') 给出值。