Python library for building composable text parsers
Project description
KNEX
Python library for creating chainable data transformers.
Installation
pip install knex
Usage
>>> from knex.parsers import *
>>>
>>> input_data = """
... Interface IP-Address OK? Method Status Protocol
... GigabitEthernet0/1 unassigned YES unset up up
... GigabitEthernet0/2 192.168.190.235 YES unset up up
... GigabitEthernet0/3 unassigned YES unset up up
... GigabitEthernet0/4 192.168.191.2 YES unset up up
... TenGigabitEthernet2/1 unassigned YES unset up up
... Virtual36 unassigned YES unset up up
... """
>>>
>>> pattern = r"\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b"
>>>
>>> end = (
Start(input_data)
> RegexExtractAll(pattern)
> GetIndex(0)
> Concat("", "/24")
> IpNetwork()
)
>>>
>>> print(end.result)
192.168.190.0/24
>>> print(json.dumps(end.history, indent=4))
[
{
"parser": "RegexExtractAll",
"input": "...omitted for brevity...",
"args": {
"pattern": "\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\b"
},
"error": false,
"output": [
"192.168.190.235",
"192.168.191.2"
]
},
{
"parser": "GetIndex",
"input": [
"192.168.190.235",
"192.168.191.2"
],
"args": {
"idx": 0
},
"error": false,
"output": "192.168.190.235"
},
{
"parser": "Concat",
"input": "192.168.190.235",
"args": {
"prefix": "",
"suffix": "/24"
},
"error": false,
"output": "192.168.190.235/24"
},
{
"parser": "IpNetwork",
"input": "192.168.190.235/24",
"args": {},
"error": false,
"output": "192.168.190.0/24"
}
]
>>>
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
knex-0.5.0.tar.gz
(18.4 kB
view details)
Built Distribution
knex-0.5.0-py3-none-any.whl
(18.5 kB
view details)
File details
Details for the file knex-0.5.0.tar.gz
.
File metadata
- Download URL: knex-0.5.0.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.8.2 Linux/5.11.0-1020-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e9b0f42d93561c57d586b8094c867b1382058c0971df19033b8664ac2dff3ee |
|
MD5 | 5fed76c71fd5d7c358e7d07fc28f84ef |
|
BLAKE2b-256 | 70ffaae0df02afc1c19a8981b9aef08b026f1c2bf5b22547c51065cf86f1866d |
File details
Details for the file knex-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: knex-0.5.0-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.8.2 Linux/5.11.0-1020-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6143d32f43310e50e1c17e919227d3eccb78d633ae7ad666ae6338ba44ee4cb2 |
|
MD5 | 966dd6199eb883b73fb3eaaf5ec24843 |
|
BLAKE2b-256 | 76d635ccf3fe89210572c77b7feb526f0ca7ea9dd90b018482e9fb7aba355a2e |