How to Install and Uninstall python3-lark-parser.noarch Package on AlmaLinux 9

Last updated: June 30,2024

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

This is a short guide on how to install python3-lark-parser.noarch on AlmaLinux 9

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

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

Here is a brief guide to show you how to uninstall python3-lark-parser.noarch on AlmaLinux 9:

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

3. Information about the python3-lark-parser.noarch package on AlmaLinux 9

Last metadata expiration check: 1:38:24 ago on Wed Mar 13 07:41:12 2024.
Available Packages
Name : python3-lark-parser
Version : 0.9.0
Release : 6.el9
Architecture : noarch
Size : 248 k
Source : python-lark-parser-0.9.0-6.el9.src.rpm
Repository : appstream
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