How to Install and Uninstall python3-parse Package on Ubuntu 21.10 (Impish Indri)

Last updated: May 16,2024

1. Install "python3-parse" package

Please follow the steps below to install python3-parse on Ubuntu 21.10 (Impish Indri)

$ sudo apt update $ sudo apt install python3-parse

2. Uninstall "python3-parse" package

Please follow the guidelines below to uninstall python3-parse on Ubuntu 21.10 (Impish Indri):

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

3. Information about the python3-parse package on Ubuntu 21.10 (Impish Indri)

Package: python3-parse
Architecture: all
Version: 1.6.6-0.2build1
Priority: optional
Section: universe/python
Source: python-parse
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Cyril Bouthors
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 69
Depends: python3:any
Filename: pool/universe/p/python-parse/python3-parse_1.6.6-0.2build1_all.deb
Size: 15132
MD5sum: bce039947ad1d623b61323072cf5ebd6
SHA1: 6547245f5b7bb33a8f153fc87e721666b6fa064b
SHA256: 712410850b06dc638d9c48581201fe05e6769a861f110664a9a4abc4cd3d654a
SHA512: 1e37a0a2bfaaf302baad8b6c8468d5596f7c37a0833f25dc07fe999b2f3b8e34d2449efbbcc00f05f84077199cdd518e97f6f94227a62e2a45eb250ad4c81b55
Homepage: https://github.com/r1chardj0n3s/parse
Description-en: 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: 1a78dda95a8d64d6dc49f8e52d2ab4b1