You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

forestry

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

forestry

Python Tree data structures and tools.

0.0.2
pipPyPI
Maintainers
1

Forestry

Python Tree data structures and tools.

Forestry Package Installation

Install forestry with python's pipenv or pip package managers.

$ pipenv install forestry
$ pip install forestry

Getting Started

>>> t = Tree(key='a', value=1)
>>> assert t['a'] == 1
>>> t.append(key='b', value=2)  # Adds a child to the root node by default
>>> assert t['b'] == 2
>>> t.append(key='c', value=3)  # Add another child to the root node
>>> t.parent(key='c') == 1  # Ask for the parent of c
>>> t.children(key='a') == [2, 3]  # Ask for the children of a
>>> t.append(key='d', value=4, parent='b')  # Adds child to b
>>> assert t.ancestors(key='d') == [2, 1]
>>> assert t.path(key='d') == [1, 2, 4]  # Traverse from root to node

FAQs

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.