How to Install and Uninstall python3-funcparserlib.noarch Package on Fedora 34

Last updated: September 20,2024

1. Install "python3-funcparserlib.noarch" package

Please follow the instructions below to install python3-funcparserlib.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install python3-funcparserlib.noarch

2. Uninstall "python3-funcparserlib.noarch" package

Please follow the guidance below to uninstall python3-funcparserlib.noarch on Fedora 34:

$ sudo dnf remove python3-funcparserlib.noarch $ sudo dnf autoremove

3. Information about the python3-funcparserlib.noarch package on Fedora 34

Last metadata expiration check: 0:28:26 ago on Tue Sep 6 14:10:38 2022.
Available Packages
Name : python3-funcparserlib
Version : 0.3.6
Release : 26.fc34
Architecture : noarch
Size : 25 k
Source : python-funcparserlib-0.3.6-26.fc34.src.rpm
Repository : fedora
Summary : Recursive descent parsing library based on functional combinators
URL : https://github.com/vlasovskikh/funcparserlib
License : MIT
Description : 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).