You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-jinja2-3.0.3-1.lbn25.noarch
Jinja2 is a template engine written in pure Python. It provides a Django inspired non-XML syntax but supports inline expressions and an optional sandboxed environment. If you have any exposure to other text-based template languages, such as Smarty or Django, you should feel right at home with Jinja2. It's both designer and developer friendly by sticking to Python's principles and adding functionality useful for templating environments.
RPMPackage python3-javapackages-5.3.0-13.lbn25.noarch
Module for handling, querying and manipulating of various files for Java packaging in Linux distributions
RPMPackage python3-itsdangerous-2.1.1-1.lbn25.noarch
Itsdangerous is a Python 3 library for passing data through untrusted environments (for example, HTTP cookies) while ensuring the data is not tampered with. Internally itsdangerous uses HMAC and SHA1 for signing by default and bases the implementation on the Django signing module. It also however supports JSON Web Signatures (JWS).
RPMPackage python3-iso8601-0.1.12-3.lbn25.noarch
This module parses the most common forms of ISO 8601 date strings (e.g. 2007-01-14T20:34:22+00:00) into datetime objects.
RPMPackage python3-iniparse-0.4-20.lbn25.py37.noarch
iniparse is an INI parser for Python 3 which is API compatible with the standard library's configparser, preserves structure of INI files (order of sections & options, indentation, comments, and blank lines are preserved when data is updated), and is more convenient to use.
RPMPackage python3-idna-2.8-1.lbn25.noarch
A library to support the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5891 <http://tools.ietf.org/html/rfc5891>. This version of the protocol is often referred to as "IDNA2008" and can produce different results from the earlier standard from 2003. The library is also intended to act as a suitable drop-in replacement for the "encodings.idna" module that comes with the Python standard library but currently only supports the older 2003 specification.
RPMPackage python3-hypothesis-6.14.1-1.lbn25.noarch
Hypothesis is a library for testing your Python code against a much larger range of examples than you would ever want to write by hand. It’s based on the Haskell library, Quickcheck, and is designed to integrate seamlessly into your existing Python unit testing work flow.
RPMPackage python3-httpretty-0.9.5-4.lbn25.noarch
Once upon a time a python developer wanted to use a RESTful API, everything was fine but until the day he needed to test the code that hits the RESTful API: what if the API server is down? What if its content has changed? Don't worry, HTTPretty is here for you.
RPMPackage python3-html5lib-1.0.1-2.lbn25.noarch
A python based HTML parser/tokenizer based on the WHATWG HTML5 specification for maximum compatibility with major desktop web browsers.
RPMPackage python3-hawkey-0.63.1-3.lbn25.x86_64
Python 3 bindings for the hawkey library.
RPMPackage python3-gobject-3.32.2-1.lbn25.x86_64
The python3-gobject package provides a convenient wrapper for the GObject library and and other libraries that are compatible with GObject Introspection, for use in Python 3 programs.
RPMPackage python3-flask-2.0.3-1.lbn25.noarch
Flask is called a “micro-framework” because the idea to keep the core simple but extensible. There is no database abstraction layer, no form validation or anything else where different libraries already exist that can handle that. However Flask knows the concept of extensions that can add this functionality into your application as if it was implemented in Flask itself. There are currently extensions for object relational mappers, form validation, upload handling, various open authentication technologies and more. Python 3 version.
RPMPackage python3-flake8-3.8.4-1.lbn25.noarch
Flake8 is a wrapper around PyFlakes, pycodestyle, and Ned's McCabe script. It runs all the tools by launching the single flake8 script, and displays the warnings in a per-file, merged output. It also adds a few features: files that contain "# flake8: noqa" are skipped, lines that contain a "# noqa" comment at the end will not issue warnings, Git and Mercurial hooks are included, a McCabe complexity checker is included, and it is extendable through flake8.extension entry points.
RPMPackage python3-docutils-0.16-1.lbn25.noarch
The Docutils project specifies a plaintext markup language, reStructuredText, which is easy to read and quick to write. The project includes a python library to parse rST files and transform them into other useful formats such as HTML, XML, and TeX as well as commandline tools that give the enduser access to this functionality. Currently, the library supports parsing rST that is in standalone files and PEPs (Python Enhancement Proposals). Work is underway to parse rST from Python inline documentation modules and packages. This package contains the module, ported to run under python3.
RPMPackage python3-dnf-plugins-core-4.0.22-3.lbn25.noarch
Core Plugins for DNF, Python 3 interface. This package enhances DNF with builddep, config-manager, copr, debug, debuginfo-install, download, needs-restarting, groups-manager, repoclosure, repograph, repomanage, reposync, changelog and repodiff commands. Additionally provides generate_completion_cache passive plugin.
RPMPackage python3-dnf-4.8.0-2.lbn25.noarch
Python 3 interface to DNF.
RPMPackage python3-distutils-extra-2.39-2.lbn25.py37.noarch
Enables you to easily integrate gettext support, themed icons and scrollkeeper based documentation into Python's distutils.
RPMPackage python3-devel-3.7.7-1.lbn25.x86_64
This package contains the header files and configuration needed to compile Python extension modules (typically written in C or C++), to embed Python into other programs, and to make binary distributions for Python libraries. It also contains the necessary macros to build RPM packages with Python modules and 2to3 tool, an automatic source converter from Python 2.X.
RPMPackage python3-defusedxml-0.5.0-7.lbn25.noarch
The defusedxml package contains several Python-only workarounds and fixes for denial of service and other vulnerabilities in Python's XML libraries. In order to benefit from the protection you just have to import and use the listed functions / classes from the right defusedxml module instead of the original module. This is the python3 build.
RPMPackage python3-decorator-4.4.2-1.lbn25.noarch
The aim of the decorator module is to simplify the usage of decorators for the average programmer, and to popularize decorators usage giving examples of useful decorators, such as memoize, tracing, redirecting_stdout, locked, etc. The core of this module is a decorator factory called decorator.