How to Install and Uninstall python3-pyparsing Package on Kali Linux

Last updated: September 21,2024

1. Install "python3-pyparsing" package

This tutorial shows how to install python3-pyparsing on Kali Linux

$ sudo apt update $ sudo apt install python3-pyparsing

2. Uninstall "python3-pyparsing" package

Learn how to uninstall python3-pyparsing on Kali Linux:

$ sudo apt remove python3-pyparsing $ sudo apt autoclean && sudo apt autoremove

3. Information about the python3-pyparsing package on Kali Linux

Package: python3-pyparsing
Source: pyparsing
Version: 3.1.1-1
Installed-Size: 474
Maintainer: Debian Python Team
Architecture: all
Depends: python3:any
Suggests: python-pyparsing-doc
Breaks: python3-translate (<< 3.6.0~), translate-toolkit (<< 3.6.0~)
Size: 145276
SHA256: f008f18db50fdc25d0c969c03ce6cf4557839c143e3cf9f617e7319a27440982
SHA1: e53726f5fa9f7b8b2b6b7b3f00ad7fc9c4e8eb31
MD5sum: eef9da3baa65e367cf3d6f509f25d8a3
Description: alternative to creating and executing simple grammars - Python 3.x
The parsing module is an alternative approach to creating and
executing simple grammars, vs. the traditional lex/yacc approach, or
the use of regular expressions. The parsing module provides a
library of classes that client code uses to construct the grammar
directly in Python code.
.
Here's an example:
.
from pyparsing import Word, alphas
greet = Word(alphas) + "," + Word(alphas) + "!"
hello = "Hello, World!"
print hello, "->", greet.parseString(hello)
.
This package contains the Python 3.x version of python-pyparsing.
Description-md5:
Multi-Arch: foreign
Homepage: https://github.com/pyparsing/pyparsing/
Section: python
Priority: optional
Filename: pool/main/p/pyparsing/python3-pyparsing_3.1.1-1_all.deb