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

Last updated: April 25,2024

1. Install "python3-asteval" package

Please follow the guidance below to install python3-asteval on Kali Linux

$ sudo apt update $ sudo apt install python3-asteval

2. Uninstall "python3-asteval" package

Please follow the instructions below to uninstall python3-asteval on Kali Linux:

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

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

Package: python3-asteval
Source: python-asteval
Version: 0.9.31-1
Installed-Size: 87
Maintainer: Debian Science Maintainers
Architecture: all
Depends: python3-importlib-metadata | python3-supported-min (>= 3.8), python3:any
Size: 20496
SHA256: f7c211e0a737d6b09fbdc2cf4c15d3a0027ff06c35026053a4a0897517d511c6
SHA1: a4a7aa67495aa9ef325f1db8ce4d9cd3168b1251
MD5sum: 50c7c3418b4de1a1e47c879616781f6d
Description: minimalistic evaluator of Python 3 expression using ast module
ASTEVAL is a safe(ish) evaluator of Python expressions and statements,
using Python's ast module. The idea is to provide a simple, safe, and
robust miniature mathematical language that can handle user-input. The
emphasis here is on mathematical expressions, and so many functions from
numpy are imported and used if available.
.
Many Python lanquage constructs are supported by default, These include
slicing, subscripting, list comprehension, conditionals (if-elif-else
blocks and if expressions), flow control (for loops, while loops, and
try-except-finally blocks). All data are Python objects, and built-in
data structures (dictionaries, tuple, lists, numpy arrays, strings) are
fully supported by default.
.
Many of the standard builtin Python functions are available, as are all
mathemetical functions from the math module. If the numpy module is
installed, many of its functions will also be available. Users can
define and run their own functions within the confines of the
limitations of asteval.
.
There are several absences and differences with Python, and asteval is
by no means an attempt to reproduce Python with its own ast module. Some
of the most important differences and absences are:
.
* Variable and function symbol names are held in a simple symbol table
(a single dictionary), giving a flat namespace.
* creating classes is not supported.
* importing modules is not supported.
* function decorators, yield, lambda, exec, and eval are not
supported.
* files can only be opened in read-only mode.
.
In addition, accessing many internal methods and classes of objects is
forbidden in order to strengthen asteval against malicious user code. .
.
This package installs the library for Python 3.
Description-md5:
Homepage: https://github.com/newville/asteval
Section: python
Priority: optional
Filename: pool/main/p/python-asteval/python3-asteval_0.9.31-1_all.deb