python-addressable:像使用字典一样使用列表

时间:2024-07-09 16:38:18
【文件属性】:

文件名称:python-addressable:像使用字典一样使用列表

文件大小:6KB

文件格式:ZIP

更新时间:2024-07-09 16:38:18

Python

addressable是一个愚蠢的小实用程序,它允许您使用一个或多个索引作为键来访问列表中的项目。 你几乎可以假装列表是一本加强版的字典。 artists = [{ 'id': '0488', 'name': 'Lambchop', 'members': ['Kurt Wagner'], }, { 'id': '9924', 'name': 'Dire Straits', 'members': ['Mark Knopfler'], }] # keys are matched against one or more indices artists = List(artists, indices=('id', 'name')) print artists['0488'] == artists['Lambchop'] # fuzzy


【文件预览】:
python-addressable-master
----setup.py(1KB)
----.gitignore(946B)
----addressable()
--------__init__.py(4KB)
----Makefile(75B)
----MANIFEST.in(28B)
----LICENSE(752B)
----README.md(1KB)
----README.rst(1KB)

网友评论