How to Install and Uninstall python3-funcparserlib Package on Kali Linux

Last updated: May 22,2024

1. Install "python3-funcparserlib" package

Please follow the instructions below to install python3-funcparserlib on Kali Linux

$ sudo apt update $ sudo apt install python3-funcparserlib

2. Uninstall "python3-funcparserlib" package

Learn how to uninstall python3-funcparserlib on Kali Linux:

$ sudo apt remove python3-funcparserlib $ sudo apt autoclean && sudo apt autoremove

3. Information about the python3-funcparserlib package on Kali Linux

Package: python3-funcparserlib
Source: funcparserlib
Version: 1.0.0-0.2
Installed-Size: 67
Maintainer: Kouhei Maeda
Architecture: all
Depends: python3:any
Size: 17544
SHA256: 79dcedaa6cb56603d305f2fc265524e6ef776f6f33e118170120403449023a06
SHA1: ae64a85309ed782f181c58e9bcb88206b34a2609
MD5sum: c0166283b3f37b5795c5812175dbf10c
Description: Recursive descent parsing library for python3
For python3.
Parser combinators are just higher-order functions that take parsers as
their arguments and return them as result values. Parser combinators are:
.
First-class values. Extremely composable. Tend to make the code quite compact.
Resemble the readable notation of xBNF grammars.
.
Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that
it's very easy to write them without thinking about look-aheads and all that
hardcore parsing stuff. But the recursive descent parsing is a rather slow
method compared to LL(k) or LR(k) algorithms.
.
So the primary domain for funcparserlib is parsing little languages or external
DSLs (domain specific languages).
.
The library itself is very small. Its source code is only 0.5 KLOC, with lots
of comments included. It features the longest parsed prefix error reporting,
as well as a tiny lexer generator for token position tracking.
Description-md5:
Homepage: https://github.com/vlasovskikh/funcparserlib
Section: python
Priority: optional
Filename: pool/main/f/funcparserlib/python3-funcparserlib_1.0.0-0.2_all.deb