How to Install and Uninstall python-pyparsing-doc Package on Kali Linux

Last updated: October 06,2024

1. Install "python-pyparsing-doc" package

This is a short guide on how to install python-pyparsing-doc on Kali Linux

$ sudo apt update $ sudo apt install python-pyparsing-doc

2. Uninstall "python-pyparsing-doc" package

This is a short guide on how to uninstall python-pyparsing-doc on Kali Linux:

$ sudo apt remove python-pyparsing-doc $ sudo apt autoclean && sudo apt autoremove

3. Information about the python-pyparsing-doc package on Kali Linux

Package: python-pyparsing-doc
Source: pyparsing
Version: 3.1.1-1
Installed-Size: 2975
Maintainer: Debian Python Team
Architecture: all
Depends: libjs-sphinxdoc (>= 5.2)
Size: 757572
SHA256: 125dedb08ea8dc5cd12d06417dc70dfb92061e63f42afb6ed7128cef82cd9fd7
SHA1: 91325b1fcfdecd30525ce1f2dbb8cdf678309ba8
MD5sum: a44e484edbef7d24640617c02790f3c8
Description: alternative to creating and executing simple grammars - doc
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 documentation for python-pyparsing.
Description-md5:
Multi-Arch: foreign
Homepage: https://github.com/pyparsing/pyparsing/
Section: doc
Priority: optional
Filename: pool/main/p/pyparsing/python-pyparsing-doc_3.1.1-1_all.deb