python-ttp
Port variant py311
Summary Template Text Parser (3.11)
Package version 0.9.2
Homepage https://github.com/dmulyalin/ttp
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants py310
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 07 JAN 2023, 04:18:24 UTC
Port created 07 JAN 2023, 04:18:24 UTC
Subpackage Descriptions
single [Downloads] [PyPI versions] [Documentation status] # Template Text Parser TTP is a Python library for semi-structured text parsing using templates. ## Why? To save ones time on transforming raw text into structured data and beyond. ## How? Regexes, regexes everywhere... but, dynamically formed out of TTP templates with added capabilities to simplify the process of getting desired outcome. ## What? In essence TTP can help to: - Prepare, sort and load text data for parsing - Parse text using regexes dynamically derived out of templates - Process matches on the fly using broad set of built-in or custom functions - Combine match results in a structure with arbitrary hierarchy - Transform results in desired format to ease consumption by humans or machines - Return results to various destinations for storage or further processing Reference [documentation] for more information. TTP [Networktocode Slack channel] Collection of [TTP Templates] ## Example - as simple as it can be Simple interfaces configuration parsing example
Code ```python from ttp import ttp import pprint data = """ interface Loopback0 description Router-id-loopback ip address 192.168.0.113/24 ! interface Vlan778 description CPE_Acces_Vlan ip address 2002::fd37/124 ip vrf CPE1 ! """ template = """ interface {{ interface }} ip address {{ ip }}/{{ mask }} description {{ description }} ip vrf {{ vrf }} """ parser = ttp(data, template) parser.parse() pprint.pprint(parser.result(), width=100) # prints: # [[[{'description': 'Router-id-loopback', # 'interface': 'Loopback0', # 'ip': '192.168.0.113', # 'mask': '24'}, # {'description': 'CPE_Acces_Vlan', # 'interface': 'Vlan778', # 'ip': '2002::fd37', # 'mask': '124', # 'vrf': 'CPE1'}]]] ```
## Example - a bit more complicated For this example lets say we want to parse BGP peerings output, but combine state with configuration data, at the end we want to get pretty looking text table printed to screen.
Code ```python template=""" This template first parses "show bgp vrf CUST-1 vpnv4 unicast summary" commands output, forming results for "bgp_state" dictionary, where peer ip is a key. Following that, "show run | section bgp" output parsed by group "bgp_cfg". That
Configuration Switches (platform-specific settings discarded)
PY310 OFF Build using Python 3.10 PY311 ON Build using Python 3.11
Package Dependencies by Type
Build (only) python-pip:single:py311
autoselect-python:single:standard
Build and Runtime python311:single:standard
Download groups
main mirror://PYPIWHL/c2/72/0b977acd34ad3e6e1dcc12a65f1ccd5565b5973f7549a17d529f44563a19
Distribution File Information
0b427d81d76d733e80e7ed40206e22a7a0193394ee7dafa0b5122ee4f9d68797 85181 ttp-0.9.2-py2.py3-none-any.whl
Ports that require python-ttp:py311
python-napalm:py311 Vendor-agnostic router interaction libary (3.11)
python-ttp-templates:py311 Template Text Parser Templates collections (3.11)