Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Python package for structuredly managing directional relationship between objects.
Python package for structuredly managing directional relationship between objects.
Though it uses allegory of 'family tree', it doesn't implement 'tree data structure'.
Alternatively, relationship in default is drawn by organizing Directed Acyclic Graph(DAG).
This means that there is a loop-less hierarchy in between members.
Not like tree, member of this data structure can have multiple parents
thus the package is named 'poly'family
Graph organizing members is not a concrete object.
All participants store its vicinity relationship in itself.
By default relationship is build bidirectional - parent knows about children while
children knows about parent. But this can be manually tweaked using
lower level methods like fm_append
fm_remove
.
Methods use prefix 'fm_' to be distinguished.
Use pip
to install the package.
pip install polyfamily_tree
from polyfamily_tree import *
class MyMember(FamilyMember): # inherit `FamilyMember`
def __init__(self):
super().__init__() # vital for initiating required attributes
# your __init__ code below
...
a, b = MyMember(), MyMember()
a.fm_append_member(parent=a, child=b) # build relationship
print(b.fm_get_parents())
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
https://github.com/grasshopperTrainer/polyfamily_tree
For any questions :
grasshoppertrainer@gmail.com
MIT
FAQs
Python package for structuredly managing directional relationship between objects.
We found that polyfamily-tree 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.