You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python2-brotlicffi-1.0.9.2-1.lbn25.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 python2-borg-localrole-3.1.8-1.lbn25.noarch
A PAS plugin which can manage local roles via an adapter lookup on the current Source Code Contributors please read the document Process for Plone core's development < are at the Plone code repository hosted at Github < .. You should *NOT* be adding new change log entries to this file. You should create a file in the news directory instead. For helpful instructions, please see: towncrier...
RPMPackage python2-bobo-2.4.0-1.lbn25.noarch
Bobo is a light-weight framework for creating WSGI web applications.Its goal is to be easy to use and remember.It addresses 2 problems:- Mapping URLs to objects- Calling objects to generate HTTP responsesBobo doesn't have a templating language, a database integration layer, or a number of other features that are better provided by WSGI middle-ware or application-specific libraries.Bobo builds...
RPMPackage python2-blinker-1.4-1.lbn25.noarch
[![Build Status]( BlinkerBlinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals".Signal receivers can subscribe to specific senders or receive signals sent by any sender. >>> from blinker import signal >>> started signal('round-started') >>> def each(round): ... print "Round %s!" % round >>> started.connect(each) >>> def...
RPMPackage python2-blessed-1.19.1-1.lbn25.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 python2-bleach-3.3.1-1.lbn25.noarch
Bleach Bleach is an allowed-list-based HTML sanitizing library that escapes or strips markup and attributes.Bleach can also linkify text safely, applying filters that Django's urlize filter cannot, and optionally setting rel attributes, even on links already
RPMPackage python2-bidi-0.4.2-1.lbn25.noarch
Python BiDi Bi-directional_ (BiDi) layout implementation in pure pythonPackage documentation_.. _Bi-directional: .. _Package documentation: The algorithm starts with a single entry point bidi.algorithm.get_display.**Required arguments:**
RPMPackage python2-bda-intellidatetime-1.3-1.lbn25.noarch
bda.intellidatetime Overview bda.intellidatetime provides a converter for date and time input to python datetime.datetime objects.The input format is definded by a locale2pattern mapping and is provided by a seperate interface.Currently provided locales are:- en- fr- uk- cs - and the special locale iso, which is used as default.-Use the convert function:.. code-block:: pycon >>> from...
RPMPackage python2-bda-cache-1.3.0-1.lbn25.noarch
General Caching API This package is designed to be used by applications which require different kinds of caching flavour. This is abstracted due to the interfaces ICacheProvider and ICacheManager. ICacheProvider takes care of the concrete cache implementation, ICacheManager is the read/write interface.The convention is to adapt a concrete ICacheProvider implementation.. code-block:: python...
RPMPackage python2-bda-awstatsparser-1.2.1-1.lbn25.noarch
This egg contains a parser for AwStats files, providing a convenient dict like API:: >>> from bda.awstatsparser.defaults import ( ... PREFIX, ... POSTFIX, ... SECTIONDEFS, ... )PREFIX and POSTFIX are used to build the target stats file path, SECTIONDEFS defines the expected structure of the stats file and the keys to use for providing the several values.The API is provided due to the...
RPMPackage python2-bcrypt-3.1.7-3.lbn25.x86_64
Good password hashing for your software and your servers Installation To install bcrypt, simply:.. code:: bash $ pip install bcryptNote that bcrypt should build very easily on Linux provided you have a C compiler, headers for Python (if you're not using pypy), and headers for the libffi libraries available on your system.
RPMPackage python2-baluhn-0.1.2-1.lbn25.noarch
Baluhn: Base-agnostic LuhnBaluhn provides a base-independent implementation of the [Luhn algorithm]( for Python. It is useful for generating and verifying check digits in arbitrary bases.From Wikipedia:> The Luhn algorithm or Luhn formula, also known as the "modulus 10" or "mod > 10" algorithm, is a simple checksum formula used to validate a variety of > identification numbers, such as credit...
RPMPackage python2-backports-os-0.1.1-1.lbn25.noarch
backports.os This package provides backports of new features in Python's os_ module under the backports_ namespace... _os: .. _backports: .. image::
RPMPackage python2-backports-functools-lru-cache-1.6.4-1.lbn25.noarch
:target: PyPI link_ :target: PyPI link_.. _PyPI link: .. image::
RPMPackage python2-backports-entry-points-selectable-1.1.1-1.lbn25.noarch
:target: PyPI link_ :target: PyPI link_.. _PyPI link: :alt: Code style: Black
RPMPackage python2-babel-2.9.1-1.lbn25.noarch
A collection of tools for internationalizing Python applications.
RPMPackage python2-authencoding-4.3-1.lbn25.noarch
AuthEncoding is a framework for handling LDAP style password hashes.It is used in Zope but does not depend on any other Zope package.Changelog 4.3 (2021-06-29) -- Replace hand-rolled salt creation with os.urandom (8 < 4.2.1 (2021-04-08) - Test on GHA.- Skip some tests for broken crypt implementations. 4.2 (2020-09-30) -- Add support for Python 3.8 and 3.9. 4.1 (2018-10-30) -- Add support for...
RPMPackage python2-atomicwrites-1.4.1-1.lbn25.noarch
python-atomicwrites **Atomic file writes.**.. code-block:: python from atomicwrites import atomic_write
RPMPackage python2-astroid-1.6.6-1.lbn25.noarch
The aim of this module is to provide a common base representation of python source code for projects such as pychecker, pyreverse, pylint... It provides a compatible representation which comes from the _ast module. It rebuilds the tree generated by the builtin _ast module by recursively walking down the AST and building an extended ast. The new node classes have additional methods and attributes for different usages. They include some support for static inference and local name scopes. Furthermore, astroid builds partial trees by inspecting living objects. This package provides the Python 2 implementation.
RPMPackage python2-args-0.1.0-1.lbn25.noarch
This simple module gives you an elegant interface for your command line argumemnts.