CLI utility that parses and transforms text
Project description
Cli utility that parses and transforms text written in Python.
[CHANGELOG] : https://github.com/dslackw/pysed/blob/master/CHANGELOG
Installation
$ pip install pysed
uninstall
$ pip uninstall pysed
Command Line Tool Usage
usage: pysed [-h] [-v] [-p] [-s] [-i]
Utility that parses and transforms text
optional arguments:
-h, --help show this help message and exit
-v, --version print version and exit
-p, --print print text
-s, m(n), u, l / replace text
-i, m(n) / insert text
Pysed Examples
See changes before modification with options -p –print:
Print text file:
(NOTE: Windows users avoid using quotes ‘’)
$ pysed --print text.txt
This is my cat,
whose name is Betty.
This is my dog,
whose name is Frank.
This is my fish,
whose name is George.
This is my goat,
whose name is Adam.
Remove new lines:
$ pysed -s --print '\n ' ' ' text.txt
This is my cat, whose name is Betty.
This is my dog, whose name is Frank.
This is my fish,
whose name is George.
This is my goat, whose name is Adam.
Redirect results to another file:
$ pysed -s --print '\n ' ' ' text.txt > text2.txt
$ cat text2.txt
This is my cat, whose name is Betty.
This is my dog, whose name is Frank.
This is my fish,
whose name is George.
This is my goat, whose name is Adam.
Replace text:
$ pysed -s --print 'This' 'THIS' text.txt
THIS is my cat,
whose name is Betty.
THIS is my dog,
whose name is Frank.
THIS is my fish,
whose name is George.
THIS is my goat,
whose name is Adam.
Replace max:
$ pysed -s --print m2/'This' 'THIS' text.txt
THIS is my cat,
whose name is Betty.
THIS is my dog,
whose name is Frank.
This is my fish,
whose name is George.
This is my goat,
whose name is Adam.
convert text to uppercase:
$ pysed -s --print u/'This' '^' text.txt
THIS is my cat,
whose name is Betty.
THIS is my dog,
whose name is Frank.
THIS is my fish,
whose name is George.
THIS is my goat,
whose name is Adam.
$ pysed -s --print u/'' '*' text.txt
THIS IS MY CAT,
WHOSE NAME IS BETTY.
THIS IS MY DOG,
WHOSE NAME IS FRANK.
THIS IS MY FISH,
WHOSE NAME IS GEORGE.
THIS IS MY GOAT,
WHOSE NAME IS ADAM.
convert text to lowercase:
$ pysed -s --print l/'T' ',' text.txt
this is my cat,
whose name is Betty.
this is my dog,
whose name is Frank.
this is my fish,
whose name is George.
this is my goat,
whose name is Adam.
$ pysed -s --print l/'' '*' text.txt
this is my cat,
whose name is betty.
this is my dog,
whose name is frank.
this is my fish,
whose name is george.
this is my goat,
whose name is adam
Insert text:
$ pysed -i --print 'whose ' 'sur' text.txt
This is my cat,
whose surname is Betty.
This is my dog,
whose surname is Frank.
This is my fish,
whose surname is George.
This is my goat,
whose surname is Adam.
Insert max:
$ pysed -i --print m2/'whose ' 'sur' text.txt
This is my cat,
whose surname is Betty.
This is my dog,
whose surname is Frank.
This is my fish,
whose name is George.
This is my goat,
whose name is Adam.
More features come….
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 Distribution
pysed-0.0.7.tar.gz
(15.5 kB
view details)
File details
Details for the file pysed-0.0.7.tar.gz
.
File metadata
- Download URL: pysed-0.0.7.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26b019449ccf164076f7d91901e2ab0336d27adeb784d247b6ee0aafd9b412db |
|
MD5 | 0db6c72a692c6e5b36b98adb9a407a5a |
|
BLAKE2b-256 | 9edd506635b64fea5adb19ccbd1c640dad42977753e3667b806e480526be1ba0 |