How to Install and Uninstall python39-funcparserlib Package on openSuSE Tumbleweed

Last updated: May 18,2024

1. Install "python39-funcparserlib" package

Please follow the guidelines below to install python39-funcparserlib on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python39-funcparserlib

2. Uninstall "python39-funcparserlib" package

This tutorial shows how to uninstall python39-funcparserlib on openSuSE Tumbleweed:

$ sudo zypper remove python39-funcparserlib

3. Information about the python39-funcparserlib package on openSuSE Tumbleweed

Information for package python39-funcparserlib:
-----------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-funcparserlib
Version : 1.0.1-1.7
Arch : noarch
Vendor : openSUSE
Installed Size : 87.7 KiB
Installed : No
Status : not installed
Source package : python-funcparserlib-1.0.1-1.7.src
Upstream URL : https://github.com/vlasovskikh/funcparserlib
Summary : Recursive descent parsing library based on functional combinators
Description :
The primary focus of funcparserlib is parsing little languages or external
DSLs (domain specific languages).
Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that
it's very easy to write parsers without thinking about lookaheads and other
hardcore parsing stuff. However, recursive descent parsing is a rather
low method compared to LL(k) or LR(k) algorithms. Still, parsing with
funcparserlib is at least twice faster than PyParsing, a very popular library
for Python.