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

Last updated: June 29,2024

1. Install "python312-funcparserlib" package

Please follow the instructions below to install python312-funcparserlib on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python312-funcparserlib

2. Uninstall "python312-funcparserlib" package

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

$ sudo zypper remove python312-funcparserlib

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

Information for package python312-funcparserlib:
------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python312-funcparserlib
Version : 1.0.1-1.7
Arch : noarch
Vendor : openSUSE
Installed Size : 96.6 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.