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

Last updated: July 05,2024

1. Install "python3-parse" package

Here is a brief guide to show you how to install python3-parse on Kali Linux

$ sudo apt update $ sudo apt install python3-parse

2. Uninstall "python3-parse" package

In this section, we are going to explain the necessary steps to uninstall python3-parse on Kali Linux:

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

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

Package: python3-parse
Source: python-parse
Version: 1.19.0-0.2
Installed-Size: 88
Maintainer: Cyril Bouthors
Architecture: all
Depends: python3:any
Size: 17636
SHA256: 5a6935f369a43c1270ac21a020fbbaf55df4bb218687a7305ac996720adc23b3
SHA1: 687c9b76322f8e55b9f30894418a315f1f279447
MD5sum: be7bfd8bfe570bae9555e9d63a2f8b41
Description: Parse provides the reverse function for format(), Python3 package
Parse strings using a specification based on the Python format() syntax.
.
``parse()`` is the opposite of ``format()``
.
The module is set up to only export ``parse()``, ``search()`` and
``findall()`` when ``import *`` is used:
.
>>> from parse import *
.
From there it's a simple thing to parse a string:
.
>>> parse("It's {}, I love it!", "It's spam, I love it!")

>>> _[0]
'spam'
.
Or to search a string for some pattern:
.
>>> search('Age: {:d}\n', 'Name: Rufus\nAge: 42\nColor: red\n')

.
This is the Python 3 package
Description-md5:
Homepage: https://github.com/r1chardj0n3s/parse
Section: python
Priority: optional
Filename: pool/main/p/python-parse/python3-parse_1.19.0-0.2_all.deb