Skip to main content

A Pylp plugin for renaming files in a stream

Project description

Information

pylprename is a plugin for Pylp that rename files in a stream.

Installation

Install pylprename with pip:

pip install pylprename

If you don’t have Python Scripts folder in your PATH, you can run also:

python -m pip install pylprename

Usage

import pylp
from pylprename import rename

# Rename with a string
pylp.src('src/main/text/hello.txt')
  .pipe(rename('ciao/goodbye.md'))
  .pipe(pylp.dest('dist'))  # ./dist/ciao/goodbye.md


# Rename with a function
pylp.src('src/main/text/hello.txt')
  .pipe(rename(lambda n:
    n.replace('ell', 'all')
  ))
  .pipe(pylp.dest('dist'))  # ./dist/hallo.txt


# Rename with some values (all values are optional)
pylp.src('src/main/text/hello.txt')
  .pipe(rename(
    dirname='md/ciao',
    basename='aloha',
    prefix='bonjour-',
    suffix='-hola',
    ext='.md'
  ))
  .pipe(pylp.dest('dist'))  # ./dist/md/ciao/bonjour-aloha-hola.md

Notes

  • basename is the filename without the extension

  • ext is the file extension including the ‘.’

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pylprename-0.1.1-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

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