You are here: Home

Modified items

All recently modified items, latest first.
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.
RPMPackage python3-prometheus_client-0.13.1-1.fc36.noarch
Python client for Prometheus.
RPMPackage python3-progressbar2-3.53.2-4.fc36.noarch
A text progress bar is typically used to display the progress of a long running operation, providing a visual cue that processing is underway. The ProgressBar class manages the current progress, and the format of the line is given by a number of widgets. The progressbar module is very easy to use, yet very powerful. It will also automatically enable features like auto-resizing when the system supports it.
RPMPackage python3-progress-1.6-1.lbn36.noarch
Easy progress reporting for Python |pypi||demo|.. |pyp .. |dem -There are 7 progress bars to choose from:- Bar - ChargingBar - FillingSquaresBar - FillingCirclesBar - IncrementalBar - PixelBar - ShadyBarTo use them, just call next to advance and finish to finish:.. code-block:: python from progress.bar import Bar bar Bar('Processing', max20) for i in range(20):
RPMPackage python3-profilehooks-1.12.0-5.fc36.noarch
Profilehooks is a collection of decorators for profiling functions.
RPMPackage python3-productmd-1.33-4.fc36.noarch
Python library providing parsers for metadata related to composes and installation media.
RPMPackage python3-prelude-5.2.0-11.fc36.x86_64
Provides python 3 bindings for prelude.
RPMPackage python3-pptx-0.6.21-1.lbn36.noarch
*python-pptx* is a Python library for creating and updating PowerPoint (.pptx) A typical use would be generating a customized PowerPoint presentation from database content, downloadable by clicking a link in a web application. Several developers have used it to automate production of presentation-ready engineering status reports based on information held in their work management system. It...
RPMPackage python3-portend-3.1.0-2.fc36.noarch
por·tend pôrˈtend/ be a sign or warning that (something, especially something momentous or calamitous) is likely to happen.
RPMPackage python3-policycoreutils-3.3-4.fc36.noarch
The python3-policycoreutils package contains the interfaces that can be used by python 3 in an SELinux environment.
RPMPackage python3-ply-3.11-25.lbn36.noarch
PLY is a straightforward lex/yacc implementation. Here is a list of its essential features: * It is implemented entirely in Python. * It uses LR-parsing which is reasonably efficient and well suited for larger grammars. * PLY provides most of the standard lex/yacc features including support for empty productions, precedence rules, error recovery, and support for ambiguous grammars. * PLY is straightforward to use and provides very extensive error checking. * PLY doesn't try to do anything more or less than provide the basic lex/yacc functionality. In other words, it's not a large parsing framework or a component of some larger system. Python 3 version.
RPMPackage python3-plumber-1.7-1.lbn36.noarch
Plumbing is an alternative to mixin-based extension of classes. In motivation an incomplete list of limitations and/or design choices of python's subclassing are given along with plumber's solutions for them. The plumbing system is
RPMPackage python3-pluggy-1.5.0-1.lbn36.noarch
pluggy - A minimalist production ready plugin system |pypi| |conda-forge| |versions| |travis| |appveyor| |gitter| |black| |codecov|This is the core framework used by the pytest_, tox_, and devpi_ projects.Please read the docs_ to learn more!A definitive example .. code-block:: python import pluggy hookspec pluggy.HookspecMarker("myproject") hookimpl pluggy.HookimplMarker("myproject") class...
RPMPackage python3-platformdirs-3.9.1-2.lbn36.noarch
A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".