Skip to content

donno2048/pyp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

pyp

A minified pyp compatible with python3

You can also install the python package

Pyp is a linux command line text manipulation tool similar to awk or sed, but which uses standard python string and list methods as well as custom functions evolved to generate fast results in an intense production environment.

Because pyp employs it's own internal piping syntax ("|") similar to unix pipes, complex operations can be proceduralized by feeding the output of one python command to the input of the next.

This greatly simplifies the generation and troubleshooting of multistep operations without the use of temporary variables or nested parentheses. The variable "p" represents each line as a string, while "pp" is entire input as python list:

ls | ./pyp "p[0] | pp.sort()" #gives sorted list of first letters of every line
ls | ./pyp "p.replace('.', ',')" #replaces . with ,

About

A minified pyp compatible with python3

Topics

Resources

Stars

Watchers

Forks

Languages