Skip to main content

extended pathlib

Project description

Superpathlib

Superpathlib offers Path objects with functionality extended from pathlib to maximize your productivity with a minimal amount of code.

Usage

from plib import Path
path = Path(filename)

1) Use properties to read & write path content in different formats

  • text
  • byte_content
  • lines
  • yaml
  • json

examples:

path.json = {key: value}

for line in path.lines:
    if interesting(line):
        process(line)

2) Use instance properties to get/set file metadata:

  • get:
    • size: filesize
    • is_root: whether the owner of the file is a root user
    • has_children: whether a path has children
    • number_of_children: number of children in a folder
    • filetype: content type of a file
  • get & set:
    • mtime: modified time
    • tag: can be used for alternative ordering or metadata

examples:

path_new.mtime = path_old.mtime

if path.tag != skip_keyword and path.filetype == "video":
    process(path)

3) Use class properties to access commonly used folders:

  • docs
  • assets
  • ..

example:

names_path = Path.assets / 'names'
names = names_path.lines

4) Use additional functionality

  • find(): recursively find all paths under a root that match a condition (extra options available for performance optimization)
  • rmtree(): remove directory recursively
  • copy_to(dest): copy content to dest
  • copy_properties_to(dest): recursively copy path properties (mtime, tag) to all n-level children of dest
  • tempfile(): create temporary file that can be used as context manager
  • unpack(): extract archive(zip, tar, ..) file to desired folder
  • pop_parent(): remove first parent from path in filesystem

examples:

with Path.tempfile() as tmp:
    do_work(logfile=tmp)
    log = tmp.text
process(log)

condition = lambda p: (p / '.git').exists()
for git_path in root.find(condition):
    process_git(git_path)

5) Enhance existing functionality

  • Automatically create parents when writing files, creating new files, renaming files, ..
  • Return default values when path does not exist (e.g. size = 0, lines=[])

6) Inherit from Path to define your own additional functionality:

example:

from plib import Path as BasePath

class Path(BasePath):
    def count_children(self):
        return sum(1 for _ in self.iterdir())

This only works if you inherit from plib and not from the builtin pathlib

Installation

pip install superpathlib
requires python version >= 3.9

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

superpathlib-1.0.1.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

superpathlib-1.0.1-py2.py3-none-any.whl (8.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file superpathlib-1.0.1.tar.gz.

File metadata

  • Download URL: superpathlib-1.0.1.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for superpathlib-1.0.1.tar.gz
Algorithm Hash digest
SHA256 8a5f62b256832936ff2dda27d334002d068ea673d2fd893598dfdc5382f235eb
MD5 3b6532bfe518aea1d741f97ec9a098b6
BLAKE2b-256 fa0bf777156dfc31c33612e8a6571910bf3e34433a3a9f235e7638172d585519

See more details on using hashes here.

File details

Details for the file superpathlib-1.0.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for superpathlib-1.0.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 98b6ca682be3da3fcd0db1176a4240c73a4565e88dfaec8ef8887c4b24041d15
MD5 4bda8a2b4a796c3fd7ef0a32c294383b
BLAKE2b-256 763108c50efe9e6617355c9a2c3215621a209e7241e15d7ea2cf48c1ba2922cf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page