How to Install and Uninstall python3-lark-parser.noarch Package on CentOS Stream 8

Last updated: May 06,2024

1. Install "python3-lark-parser.noarch" package

Please follow the steps below to install python3-lark-parser.noarch on CentOS Stream 8

$ sudo dnf update $ sudo dnf install python3-lark-parser.noarch

2. Uninstall "python3-lark-parser.noarch" package

Please follow the step by step instructions below to uninstall python3-lark-parser.noarch on CentOS Stream 8:

$ sudo dnf remove python3-lark-parser.noarch $ sudo dnf autoremove

3. Information about the python3-lark-parser.noarch package on CentOS Stream 8

Last metadata expiration check: 1:04:56 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : python3-lark-parser
Version : 0.8.1
Release : 1.el8
Architecture : noarch
Size : 241 k
Source : python-lark-parser-0.8.1-1.el8.src.rpm
Repository : epel
Summary : Lark is a modern general-purpose parsing library for Python
URL : https://github.com/lark-parser/lark
License : MIT
Description : Lark is a modern general-purpose parsing library for Python.
:
: Lark focuses on simplicity and power. It lets you choose between
: two parsing algorithms:
:
: Earley : Parses all context-free grammars (even ambiguous ones)!
: It is the default.
:
: LALR(1): Only LR grammars. Outperforms PLY and most if not all
: other pure-python parsing libraries.
:
: Both algorithms are written in Python and can be used interchangeably
: with the same grammar (aside for algorithmic restrictions).
: See "Comparison to other parsers" for more details.
:
: Lark can auto magically build an AST from your grammar, without any
: more code on your part.
:
: Features:
:
: - EBNF grammar with a little extra
: - Earley & LALR(1)
: - Builds an AST auto magically based on the grammar
: - Automatic line & column tracking
: - Automatic token collision resolution (unless both tokens are regexps)
: - Python 2 & 3 compatible
: - Unicode fully supported