Skip to main content

A framework which makes you to write scripts as if they were written in awk.

Project description

All you have to do is make a script file and create a class which extends PyAwk class and write some procedures like awk.

There are some examples on https://github.com/hideshi/PyAwk.

Requirements

  • Python 3.3 or later

Features

  • begin and end syntax which are called only once in an execution.

  • begin_file and end_file syntax which are called only once par each file.

  • awk specific valiables like FILENAME, FS, OFS, RS, ORS, NF, NR, FNR, FIELDWIDTHS.

  • command line options like debug mode, set valiables.

  • SQLite3 query.

Setup

$ pip install PyAwk

History

0.1.0 (2014-02-21)

  • first release

Example

This is a parser for LTSV formatted data. http://ltsv.org

#!/usr/bin/env python3.3
from pyawk import PyAwk, p
class LTSVParser(PyAwk):
    def begin(self):
        self.FS = '\t'
        self.count = 0

    def action(self, S):
        if not p(S[0], r'status:200'):
            self.count += 1
            self.print('----------')
            d = {}
            for elem in S[1:]:
                key, value = elem.split(':', 1)
                d[key] = value
            self.print(d)

    def end(self):
        self.print('----------')
        self.print('Total:{}'.format(self.NR))
        self.print('Matched:{}'.format(self.count))

if __name__ == '__main__':
    LTSVParser().run()

Then you can execute this script with LTSV file.

$ ./ltstparser.py ltsv.log

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

PyAwk-0.1.0.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file PyAwk-0.1.0.tar.gz.

File metadata

  • Download URL: PyAwk-0.1.0.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for PyAwk-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7d00431872da7ff2ad2a2e3e715a4f6c3d08c73df551990b830440273fb1be28
MD5 5a20c60951225217330ace994a5f18ec
BLAKE2b-256 0dda67fb172603f16e2ee37a6d412be8f4f34db0db713cfbf526b4a5ea595dbc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page