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

Last updated: October 05,2024

1. Install "python311-funcparserlib" package

This guide let you learn how to install python311-funcparserlib on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python311-funcparserlib

2. Uninstall "python311-funcparserlib" package

Please follow the steps below to uninstall python311-funcparserlib on openSuSE Tumbleweed:

$ sudo zypper remove python311-funcparserlib

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

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