Socket
Socket
Sign inDemoInstall

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


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

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc