Skip to main content

A simple library for exectuing egrep linux commando to files

Project description

Project Description

Simple utility to execute linux egrep command. The intention is to extend the capability of the egrep command from linux to python.

Repo

If you wish to add aditional features to the command take a look at: https://github.com/rhimmelbauer/egrep

Runtime

It has only been tested with Python3.6 onwards. This package will only work in linux OS that have the egrep command.

Example

You must at least pass 2 variables when constructing an egrep instance. 1. Should be the regex expression and the second should be the filepath as a string. If you wish to add command options you can add them as initial parameter. Make sure the the second to last is the regex expression and the last is the filepath.

# No option
egrepInstance = egrep("'\d+'","directory.txt")
egrepInstance.execute()
print(egrepInstance.expressionsFound)

# Must match whole expression.
egrepInstance = egrep("-w","'\d+'","directory.txt")
egrepInstance.execute()
print(egrepInstance.expressionsFound)

Methods & Properties:

At least 2 arguments:

  1. The regex expresion as a String with single quotes eg: "'[agxc].A'".
  2. The filepath as a string eg: "testfile.txt"
  3. Any egrep command. Make sure the are at the beiging eg: "-w","regex","filepath"

def __init__(*args)

The constructor will validate if the file existis. If it does not it will through a egrepError.

To execute the egrep use the execute method were it will store the result in the property expressionsFound, which is a list.

Project details


Download files

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

Source Distribution

egrep-0.1.1.tar.gz (2.6 kB view hashes)

Uploaded Source

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