You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-pycparser-2.22-1.lbn36.noarch
pycparser is a complete parser for the C language, written in pure Python. It is a module designed to be easily integrated into applications that need to parse C source code.
RPMPackage python3-pycountry-23.12.7-2.lbn36.noarch
pycountry provides the ISO databases for the standards: * 639-3 Languages * 3166 Countries * 3166-3 Deleted countries * 3166-2 Subdivisions of countries * 4217 Currencies * 15924 Scripts
RPMPackage python3-pycodestyle-2.10.0-2.lbn36.noarch
pycodestyle is a tool to check your Python code against some of the style conventions in PEP 8. It has a plugin architecture, making new checks easy, and its output is parseable, making it easy to jump to an error location in your editor. This is a version for Python 3.
RPMPackage python3-pybeam-0.7-2.fc36.noarch
Python module to parse Erlang BEAM files.
RPMPackage python3-pyatspi-2.38.2-2.fc36.noarch
at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications for automation, so tools such as screen readers, magnifiers, or even scripting interfaces can query and interact with GUI controls. This package includes a python3 client library for at-spi.
RPMPackage python3-pyasn1-modules-0.6.0-2.lbn36.noarch
ASN.1 types modules for python3-pyasn1.
RPMPackage python3-pyasn1-0.6.0-2.lbn36.noarch
This is an implementation of ASN.1 types and codecs in the Python 3 programming language.
RPMPackage 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...
RPMPackage 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.
RPMPackage 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
RPMPackage 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.
RPMPackage 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,...
RPMPackage 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
RPMPackage 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.
RPMPackage 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
RPMPackage 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.
RPMPackage python3-psycopg2-2.9.9-6.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.
RPMPackage python3-psutil-5.9.4-1.lbn36.x86_64
| |downloads| |stars| |forks| |contributors| |coverage| | |version| |py- versions| |packages| |license| | |github-actions| |appveyor| |doc| |twitter| |tidelift|.. |download .. |star .. |fork .. |contributors| image::
RPMPackage python3-prompt-toolkit-3.0.43-1.lbn36.noarch
Python Prompt Toolkit |Build Status| |PyPI|prompt_toolkit is a library for building powerful interactive command lines and terminal applications in Python.Read the documentation on readthedocs < < is an interactive Python Shell, build on top of prompt_toolkit... image :: prompt_toolkit features ***********************prompt_toolkit could be a replacement for GNU readline
RPMPackage python3-promise-2.3.0-8.fc36.noarch
This is a implementation of Promises in Python. It is a super set of Promises/A+ designed to have readable, performant code and to provide just the extensions that are absolutely necessary for using promises in Python. It's fully compatible with the Promises/A+ spec.