
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Listmodel is a Python library for object mappings for various list sources (XML documents, CSV documents, text documents, JSON/YAML objects) in a unified manner.
Listmodel is a Python library for object mappings for various list sources (XML documents, CSV documents, text documents, JSON/YAML objects) in a unified manner. Inspiration was taken from QML_ XmlListModel_.
.. _QML: http://en.wikipedia.org/wiki/QML .. _XmlListModel: http://qt-project.org/doc/qt-4.8/qml-xmllistmodel.html
.. code-block:: python
>>> from listmodel import XMLDoc, QueryAttr, set_name
>>> xml = u"""<bookshelf>
... <name>My Bookshelf</name>
... <book>
... <title>1984</title>
... <author>Orwell, George</author>
... <isbn>978-0-452-28423-4</isbn>
... <chapter id="1">...</chapter>
... <chapter id="2">...</chapter>
... <chapter id="3">...</chapter>
... </book>
... <book>
... <title>The man in the high castle</title>
... <author>Dick, Philip K.</author>
... <isbn>0679740678</isbn>
... <chapter id="1">...</chapter>
... <chapter id="2">...</chapter>
... <chapter id="3">...</chapter>
... </book>
... </bookshelf>
... """
>>> class Bookshelf(XMLDoc):
... class Iterable(XMLDoc):
... __query__ = "/bookshelf/book"
...
... @set_name("Chapter")
... class Iterable(XMLDoc):
... __query__ = "chapter"
... id = QueryAttr("@id")
...
... isbn = QueryAttr("isbn/text()")
... title = QueryAttr("title/text()")
... author = QueryAttr("author/text()")
...
... @QueryAttr("author/text()")
... def author_first_name(self, value):
... return value.split(", ")[1]
...
... name = QueryAttr("/bookshelf/name/text()")
>>> shelf = Bookshelf.fromstring(xml)
>>> shelf
<Bookshelf (name='My Bookshelf')>
>>> shelf.name
'My Bookshelf'
>>> books = list(shelf)
>>> len(books)
2
>>> books[1].title
'The man in the high castle'
>>> books[1].author_first_name
'Philip K.'
>>> list(books[0])
[<Chapter (id='1')>, <Chapter (id='2')>, <Chapter (id='3')>]
FAQs
Listmodel is a Python library for object mappings for various list sources (XML documents, CSV documents, text documents, JSON/YAML objects) in a unified manner.
We found that listmodel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.