🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

pathable

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pathable

Object-oriented paths

0.4.4
PyPI
Maintainers
1

pathable

About

Object-oriented paths

Key features

  • Traverse resources like paths
  • Access resources on demand with separate accessor layer

Usage

.. code-block:: python

from pathable import DictPath

d = { "parts": { "part1": { "name": "Part One", }, "part2": { "name": "Part Two", }, }, }

dp = DictPath(d)

Concatenate paths with /

parts = dp / "parts"

Stat path keys

"part2" in parts

Open path dict

with parts.open() as parts_dict: print(parts_dict)

Keywords

dict

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