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
Release history Release notifications | RSS feed
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
File details
Details for the file pylprename-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pylprename-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 251a96830cd2555d92dcc848501bd1770614f5ac9c210026287cdf3f86203faa |
|
MD5 | 1f3b1033a5033f446735498837290203 |
|
BLAKE2b-256 | a72c81dfe732e914fefaa870df8fd217bdc8c4492ea9c7721f763475fdf027ac |