
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.
Norman is a framework for advanced data structures in python using an database-like approach. The range of potential applications is wide, for example in-memory databases, multi-keyed dictionaries or node graphs.
Norman provides a framework for creating complex data structures using an database-like approach. The range of potential application is wide, for example in-memory databases, multi-keyed dictionaries or node graphs. These applications are illustrated in the following examples.
This is a small database for a personal library::
db = Database()
@db.add
class Book(Table):
name = Field(unique=True)
author = Field(index=True)
def validate(self):
assert isinstance(self.name, str)
assert isinstance(self.author, Author)
@db.add
class Author(Table):
surname = Field(unique=True)
initials = Field(unique=True, default='')
nationality = Field()
books = Join(Book.author)
This table can be used as a dictionary with three keys::
class MultiDict(Table):
key1 = Field(unique=True)
key2 = Field(unique=True)
key3 = Field(unique=True)
value = Field()
Values can be added by::
MultiDict(key1=4, key2='abc', key3=0, value='efg')
And queried by::
for m in (MultiDict.key1 == 4 & Multidict.key2 == 'abc'):
print(m.value)
This is a graph, where each node can have many parent nodes and many children nodes::
class Link(Table):
"""
Directional connections between nodes.
"""
parent = Field(unique=True)
child = Field(unique=True)
def validate(self):
assert isinstance(self.parent, Node)
assert isinstance(self.child, Node)
class Node(Table):
"""
Nodes in the graph.
"""
parents = Join(query=lambda n: (Link.child == n).field('parent'))
children = Join(query=lambda n: (Link.parent == n).field('child'))
def validate_delete(self):
# Delete all connecting links if a node is deleted
(Link.parent == self).delete()
(Link.child == self).delete()
FAQs
Norman is a framework for advanced data structures in python using an database-like approach. The range of potential applications is wide, for example in-memory databases, multi-keyed dictionaries or node graphs.
We found that norman 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.