How to Install and Uninstall python3-funcparserlib Package on Ubuntu 21.10 (Impish Indri)

Last updated: May 16,2024

1. Install "python3-funcparserlib" package

This guide let you learn how to install python3-funcparserlib on Ubuntu 21.10 (Impish Indri)

$ sudo apt update $ sudo apt install python3-funcparserlib

2. Uninstall "python3-funcparserlib" package

This is a short guide on how to uninstall python3-funcparserlib on Ubuntu 21.10 (Impish Indri):

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

3. Information about the python3-funcparserlib package on Ubuntu 21.10 (Impish Indri)

Package: python3-funcparserlib
Architecture: all
Version: 0.3.6+dfsg1-1build1
Priority: optional
Section: universe/python
Source: funcparserlib
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Kouhei Maeda
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 66
Depends: python3:any
Filename: pool/universe/f/funcparserlib/python3-funcparserlib_0.3.6+dfsg1-1build1_all.deb
Size: 14708
MD5sum: 1c9fc0d97c45432038fc183fc991612a
SHA1: 1f4c848dadf478e9fdb8a46d6e9dd0bca47d9fd0
SHA256: eecd566a98303df72531abc9e9932270f408a58ba13175cdad297cc2c6ecffbc
SHA512: 017707fcdb413152c192280168ad0e060c2208e443a396a4d3ac0a792a379051b1856f2df398140bba24012ecadf4302b15c1f4d015f1e75067e4bed2de46b82
Homepage: https://github.com/vlasovskikh/funcparserlib
Description-en: 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: f59daa3b72703586b9ef5d8a6089bc1d
Task: ubuntustudio-audio