pawk
pawk copied to clipboard
PAWK - A Python line processor (like AWK)
Feature request to enable things like: `cat /etc/hosts | pawk '!/^#/ and !/^127'` This would require a whole new way of parsing. It should parse it as a python expression...
Hello, I'm building pawk on an Arch Linux machine with packages: pawk v.0.7.0 pypandoc 1.8.1 The build process halts on the following error: ``` Traceback (most recent call last): File...
Is it possible to invoke pawk from a python script, without using subprocess.run? I am imagining something like: ```python import pawk my_pawk_program = ' .... ' results = pawk.run(my_pawk_program) ```
Hi! Love having the power of power of python with the convenience of awk, thanks for the great work! I did miss the ability of awk to match against specific...
```python all_text = '"v1Cd5Yk6x_f2cqrqNV6Iy_1ab34_dfI" + l' modules = re.findall(r'([\w.]+)+(?=\.\w+)\b', all_text) ``` When the code contains the above text, it will be executed for several minutes when searching for module. After...