- 
                                      
                                        
                                        python3-psycopg2-2.9.10-1.lbn36.x86_64
                                      
                                      
                                      Psycopg is the most popular PostgreSQL adapter for the Python
programming language. At its core it fully implements the Python DB
API 2.0 specifications. Several extensions allow access to many of the
features offered by PostgreSQL.
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-ptyprocess-0.7.0-8.lbn36.noarch
                                      
                                      
                                      Launch a subprocess in a pseudo terminal (pty), and interact with both the
process and its pty.
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-pure-eval-0.2.2-1.lbn36.noarch
                                      
                                      
                                      pure_eval
This is a Python package that lets you safely evaluate certain AST nodes without triggering arbitrary code that may have unwanted side effects.
It can be installed from PyPI:
pip install pure_eval
To demonstrate usage, suppose we have an object defined as follows:
class Rectangle:
    def __init__(self, width, height):
        self.width = width
        self.height = height
    @property
    def area(self):
        print("Calculating area...")
        return self.width * self.height
rect = Rectangle(3, 5)
Given the rect object, we want to evaluate whatever expressions we can in this source code:
source = "(rect.width, rect.height, rect.area)"
This library works with the AST, so let's parse the source code and peek inside:
import ast
tree = ast.parse(source)
the_tuple = tree.body[0].value
for node in the_tuple.elts:
    print(ast.dump(node))
Output:
Attribute(value=Name(id='rect', ctx=Load()), attr='width', ctx=Load())
Attribute(value=Name(id='rect', ctx=Load()), at
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-pwquality-1.4.4-7.fc36.x86_64
                                      
                                      
                                      This is pwquality Python module that provides Python bindings
for the libpwquality library. These bindings can be used
for easy password quality checking and generation of random
pronounceable passwords from Python applications.
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-py-1.11.0-3.fc36.noarch
                                      
                                      
                                      The py lib is a Python development support library featuring the
following tools and modules:
  * py.path: uniform local and svn path objects
  * py.apipkg: explicit API control and lazy-importing
  * py.iniconfig: easy parsing of .ini files
  * py.code: dynamic code generation and introspection
  * py.path: uniform local and svn path objects
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-py-make-0.1.1-1.lbn36.noarch
                                      
                                      
                                      |PyPI-Status| |PyPI-Versions||Build-Status| |Coverage-Status| |Branch-Coverage-
Status| |Codacy-Grade| |Libraries-Rank||DOI-URI| |LICENCE| |OpenHub-Status|
|Gift-Casper| Bring basic Makefile support to any system with Python.Inspired
by work in tqdm < install then execute pymake in a directory containing a
Makefile.pymake works on any platform (Linux, Windows, Mac, FreeBSD,...
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-py-spy-0.3.12-1.lbn36.x86_64
                                      
                                      
                                      py-spy is a sampling profiler for Python programs. It lets you visualize what your
Python program is spending time on without restarting the program or modifying the
code in any way. py-spy is extremely low overhead: it is written in Rust for speed
and doesn't run in the same process as the profiled Python program. This means py-spy
is safe to use against production Python code.
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-pyOpenSSL-24.1.0-2.lbn36.noarch
                                      
                                      
                                      High-level wrapper around a subset of the OpenSSL library, includes among others
 * SSL.Connection objects, wrapping the methods of Python's portable
   sockets
 * Callbacks written in Python
 * Extensive error-handling mechanism, mirroring OpenSSL's error codes
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-pyaff-3.7.19-6.fc36.x86_64
                                      
                                      
                                      Python3 bindings for AFFLIB.
These bindings currently support a read-only file-like interface to AFFLIB and
basic metadata accessor functions. The binding is not currently complete.
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36
                                                  
                                               
                                          
                                      
                                     
                              
                              
                                    - 
                                      
                                        
                                        python3-pyannotate-1.2.0-1.lbn36.noarch
                                      
                                      
                                      PyAnnotate: Auto-generate PEP-484 annotations Insert annotations into your
source code based on call arguments and return types observed at runtime.For
license and copyright see the end of this file.Blog post: to use See also the
example directory.Phase 1: Collecting types at runtime - Install the usual way
(see "red tape" section below) - Add from pyannotate_runtime import
collect_types to...
                                      
                                          
                                              Located in
                                          
                                          
                                              
                                                  LBN
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  …
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  Core Linux
                                                  
                                                      /
                                                      
                                                  
                                               
                                          
                                          
                                              
                                                  BastionLinux 36