You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-brotlicffi-1.0.9.2-1.lbn36.x86_64
BrotliCFFI This library contains Python CFFI bindings for the reference Brotli encoder/decoder, available here_. This allows Python software to use the Brotli compression algorithm directly from Python code.Install from PyPI:
RPMPackage python3-brotli-1.1.0-4.lbn36.x86_64
Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. This package installs a Python 3 module.
RPMPackage python3-brlapi-0.8.4-4.fc36.x86_64
This package provides the Python 3 binding for BrlAPI.
RPMPackage python3-botocore-1.38.9-1.lbn36.noarch
A low-level interface to a growing number of Amazon Web Services. The botocore package is the foundation for the AWS CLI as well as boto3.
RPMPackage python3-blockdev-3.0.4-1.lbn36.x86_64
This package contains enhancements to the gobject-introspection bindings for libblockdev in Python3.
RPMPackage python3-blivet-3.4.4-1.fc36.noarch
The python3-blivet is a python3 package for examining and modifying storage configuration.
RPMPackage python3-blinker-1.7.0-2.lbn36.noarch
Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals".
RPMPackage python3-blessed-1.19.1-1.lbn36.noarch
| |pypi_downloads| |codecov| |windows| |linux| |mac| |bsd|Introduction Blessed is an easy, practical *library* for making *terminal* apps, by providing an elegant, well-documented interface to Colors_, Keyboard_ input, and screen position and Location_ capabilities... code-block:: python from blessed import Terminal term Terminal() print(term.home + term.clear + term.move_y(term.height // 2))...
RPMPackage python3-bleach-6.1.0-2.lbn36.noarch
Bleach is an HTML sanitizing library that escapes or strips markup and attributes based on a white list. Python 3 version.
RPMPackage python3-beautifulsoup4-4.13.3-3.lbn36.noarch
Beautiful Soup is a Python HTML/XML parser designed for quick turnaround projects like screen-scraping. Three features make it powerful: Beautiful Soup won't choke if you give it bad markup. Beautiful Soup provides a few simple methods and Pythonic idioms for navigating, searching, and modifying a parse tree. Beautiful Soup automatically converts incoming documents to Unicode and outgoing documents to UTF-8. Beautiful Soup parses anything you give it. Valuable data that was once locked up in poorly-designed websites is now within your reach. Projects that would have taken hours take only minutes with Beautiful Soup.
RPMPackage python3-beaker-1.10.0-13.fc36.noarch
Beaker is a caching library that includes Session and Cache objects built on Myghty's Container API used in MyghtyUtils. WSGI middleware is also included to manage Session objects and signed cookies.
RPMPackage python3-backcall-0.1.0-15.fc36.noarch
Specifications for callback functions passed in to an API. If your code lets other people supply callback functions, it's important to specify the function signature you expect, and check that functions support that. Adding extra parameters later would break other peoples code unless you're careful. Backcall helps with that.
RPMPackage python3-babeltrace-1.5.8-9.fc36.x86_64
This project provides trace read and write libraries, as well as a trace converter. A plugin can be created for any trace format to allow its conversion to/from another trace format.
RPMPackage python3-babel-2.16.0-1.lbn36.noarch
A collection of tools for internationalizing Python applications.
RPMPackage python3-autopep8-2.0.4-5.lbn36.noarch
autopep8 formats Python code based on the output of the pep8 utility.
RPMPackage python3-autocommand-2.2.1-1.lbn36.noarch
autocommand A library to automatically generate and run simple argparse parsers from function signatures.Installation Autocommand is installed via pip::: $ pip install autocommandUsage Autocommand turns a function into a command-line program. It converts the function's parameter signature into command-line arguments, and automatically runs the function if the module was called as __main__. In...
RPMPackage python3-augeas-1.1.0-4.fc36.noarch
python3-augeas is a set of Python bindings around augeas.
RPMPackage python3-audit-3.0.9-1.fc36.x86_64
The python3-audit package contains the bindings so that libaudit and libauparse can be used by python3.
RPMPackage python3-attrs-25.1.0-1.lbn36.noarch
attrs is an MIT-licensed Python package with class decorators that ease the chores of implementing the most common attribute-related object protocols.
RPMPackage python3-async-timeout-4.0.3-1.lbn36.noarch
asyncio-compatible timeout context manager The context manager is useful in cases when you want to apply timeout logic around block of code or in cases when asyncio.wait_for() is not suitable. Also it's much faster than asyncio.wait_for() because timeout doesn't create a new task.