How to Install and Uninstall python3-funcparserlib.noarch Package on Fedora 36
Last updated: January 10,2025
1. Install "python3-funcparserlib.noarch" package
Learn how to install python3-funcparserlib.noarch on Fedora 36
$
sudo dnf update
Copied
$
sudo dnf install
python3-funcparserlib.noarch
Copied
2. Uninstall "python3-funcparserlib.noarch" package
This guide covers the steps necessary to uninstall python3-funcparserlib.noarch on Fedora 36:
$
sudo dnf remove
python3-funcparserlib.noarch
Copied
$
sudo dnf autoremove
Copied
3. Information about the python3-funcparserlib.noarch package on Fedora 36
Last metadata expiration check: 4:39:13 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : python3-funcparserlib
Version : 1.0.0a0
Release : 2.prerelease.fc36
Architecture : noarch
Size : 31 k
Source : python-funcparserlib-1.0.0a0-2.prerelease.fc36.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).
Available Packages
Name : python3-funcparserlib
Version : 1.0.0a0
Release : 2.prerelease.fc36
Architecture : noarch
Size : 31 k
Source : python-funcparserlib-1.0.0a0-2.prerelease.fc36.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).