Parse strings and extract information from structured or unstructured data.
Project description
py3grok
A Python library to parse strings and extract information from structured or unstructured data. This library is based on pygrok.
Why?
- Parsing and matching patterns from a string.
- Relieving from complex regular expressions.
- Extracting information from structured/unstructured data.
Installation
pip install py3grok
Getting Started
When using this library, you will want to first create an instance of GrokEnvironment
.
That will load the default and custom grok pattern files. Whenever you want to create a new
pattern, you can run GrokEnvironment.create(pattern)
which returns an instance of Grok
,
where you can simply run Grok.match(text)
.
For flexibility, you can also modify a Grok
instance's pattern
property as well if needed.
Code Example
from py3grok import GrokEnvironment
grok_env = GrokEnvironment()
pattern = '%{WORD:name} is %{WORD:gender}, %{NUMBER:age} years old and weighs %{NUMBER:weight} kilograms.'
# Regex flags can be used, like: grok_env.create(pattern, flags=re.IGNORECASE)
grok = grok_env.create(pattern)
text = 'Gary is male, 25 years old and weighs 68.5 kilograms.'
print(grok.match(text))
# {'gender': 'male', 'age': '25', 'name': 'Gary', 'weight': '68.5'}
Numbers can be converted from string to int
or float
if you use %{pattern:name:type}
syntax, such as %{NUMBER:age:int}
See all available patterns here!
Additional Notes
The python re
module does not support regular expression syntax atomic grouping (?>)
, so pygrok requires regex to be installed.
Grok is a simple software that allows you to easily parse strings, logs and other files. With grok, you can turn unstructured log and event data into structured data.
I recommend you to have a look at logstash filter grok, it explains how Grok works.
Pattern files come from logstash filter grok's pattern files.
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
File details
Details for the file py3grok-0.2.0.tar.gz
.
File metadata
- Download URL: py3grok-0.2.0.tar.gz
- Upload date:
- Size: 23.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3a2631665bec36d6728d5295ff239aece855f86349d1a8120cb9946062526e0 |
|
MD5 | 21ab009ca619226fc9990471670f563d |
|
BLAKE2b-256 | cd0c54ae4824ef56b500fff7b40a8ec892585de1f078c089b08d3dc78abe8e9f |