Python library for building composable text parsers
Project description
KNEX
Python library for creating chainable data transformers.
Installation
pip install knex
Supported Transformers
:x: - Planned
:heavy_check_mark: - Implemented
General | String | Number | Date | Other |
---|---|---|---|---|
:heavy_check_mark: Append | :heavy_check_mark: Base64Decode | :x: Absolute | :x: BetweenDates | :x: ThisOrThat |
:heavy_check_mark: Count | :heavy_check_mark: Base64Encode | :x: Add | :x: BetweenHours | :x: URLDecode |
:heavy_check_mark: FirstElement | :heavy_check_mark: Concat | :x: Ceil | :x: DateStringToISOFormat | :x: URLEncode |
:heavy_check_mark: GetField | :x: Cut | :x: Divide | :x: DateToEpoch | |
:heavy_check_mark: GetIndex | :x: DumpJSON | :x: Floor | :x: DateToString | |
:x: If-Then-Else | :x: FromString | :x: Modulus | :x: FormattedDateToEpoch | |
:x: IndexOf | :x: JSONUnescape | :x: Multiply | :x: ModifyDateTime | |
:x: Join | :heavy_check_mark: Length | :x: Round | :x: TimeStampToDate | |
:x: Jq | :x: LoadJSON | :x: Subtract | ||
:x: JsonToTable | :heavy_check_mark: RegexExtractAll | :x: SumList | ||
:heavy_check_mark: LastElement | :x: RegexReplace | :x: ToPercent | ||
:x: ReverseList | :heavy_check_mark: Split | |||
:x: SetIfEmpty | :x: Substring | |||
:x: Slice | :heavy_check_mark: ToLower | |||
:x: Sort | :x: ToString | |||
:x: Stringify | :heavy_check_mark: ToUpper | |||
:x: Unique | :x: Trim | |||
:x: WhereFieldEquals |
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"
}
]
>>>
Development
Environment Setup
- Install Poetry
- Clone the repo:
git clone https://github.com/clay584/knex && cd knex
- Install pre-requisits for developement:
poetry install
- Install PyPI API Key:
poetry config pypi-token.pypi <token>
- Activate the environment:
poetry shell
- Install git pre-commit hook:
pre-commit install && pre-commit autoupdate
Publishing to PyPI
- Run tests and validate coverage:
pytest -v --cov=knex --cov-report html tests
- Commit all changes, and have clean git repo on
main
branch. - Bump version:
bump2version <major|minor|patch>
- Push to git:
git push && git push --tags
- Build for PyPI:
poetry build
- Publish to PyPI:
poetry publish
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.1.9.tar.gz
(16.8 kB
view details)
Built Distribution
knex-0.1.9-py3-none-any.whl
(16.5 kB
view details)
File details
Details for the file knex-0.1.9.tar.gz
.
File metadata
- Download URL: knex-0.1.9.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.9 CPython/3.8.2 Linux/5.8.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfe03adca699d67b7b4883fb3abc32aaca78eb6fc3ff97a07c07b700b5c654fd |
|
MD5 | 9f135ebd091836bc7d1e3f9ae71ef1c6 |
|
BLAKE2b-256 | c720f949487f5b8fd4b36708829a07673dc72e7e111f77662d98e4a8e226e467 |
File details
Details for the file knex-0.1.9-py3-none-any.whl
.
File metadata
- Download URL: knex-0.1.9-py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.9 CPython/3.8.2 Linux/5.8.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5469360b0d32505dd14dae791d059e4fa653c69a02fe55a84a77196edabb26b0 |
|
MD5 | f13499bcdc9afbb980ac5ac3e70b4dc2 |
|
BLAKE2b-256 | c2840abfdc8095ab59d3b9fbe85961f3c4eb90a7fa3fd6946a2a3fa6d447753d |