You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-repoze.lru-0.6-4.lbn25.py37.noarch
repoze.lru is a LRU (least recently used) cache implementation. Keys and values that are not used frequently will be evicted from the cache faster than keys and values that are used frequently. It works under Python 2.5, Python 2.6, Python 2.7, and Python 3.2.
RPMPackage python3-repoze.catalog-0.9.0-1.lbn25.noarch
A Python indexing and searching system based on zope.index.
RPMPackage python3-repoze-2.3-1.lbn25.py37.noarch
Python moduel for repoze
RPMPackage netty3-3.10.6-2.lbn25.noarch
Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server. 'Quick and easy' doesn't mean that a resulting application will suffer from a maintainability or a performance issue. Netty has been designed carefully with the experiences earned from the implementation of a lot of protocols such as FTP, SMTP, HTTP, and various binary and text-based legacy protocols. As a result, Netty has succeeded to find a way to achieve ease of development, performance, stability, and flexibility without a compromise.
RPMPackage jline1-1.0-12.fc24.noarch
JLine is a java library for reading and editing user input in console applications. It features tab-completion, command history, password masking, configurable key-bindings, and pass-through handlers to use to chain to other console applications.
RPMPackage golang-github-terraform-providers-ibm-0.17.3-0.1.gitcbdac69.lbn25.x86_64
export IC_API_KEY="IBM Cloud API Key" export SL_API_KEY="SoftLayer API Key" export SL_USERNAME="SoftLayer username associated with SL_API_KEY". Add the plug-in provider to the Terraform configuration file. provider "ibm" {}
RPMPackage python2-solv-0.7.4-3.lbn25.x86_64
Python bindings for the libsolv library. Python 2 version.
RPMPackage python2-semver-2.8.1-1.lbn25.noarch
Python module for semantic versioning. Simplifies comparing versions. Python 2 version.
RPMPackage python2-rpm-macros-3-51.lbn25.noarch
RPM macros for building Python 2 packages.
RPMPackage python2-rpm-4.15.1-1.lbn25.x86_64
The python2-rpm package contains a module that permits applications written in the Python programming language to use the interface supplied by RPM Package Manager libraries. This package should be installed if you want to develop Python 2 programs that will manipulate RPM packages and databases.
RPMPackage python2-pycurl-7.43.0-9.lbn25.py37.x86_64
PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module. PycURL is mature, very fast, and supports a lot of features. Python 2 version.
RPMPackage python2-okaara-1.0.37-2.lbn25.py37.noarch
Python library to facilitate the creation of command-line interfaces.
RPMPackage python2-oauth2-1.9.0-7.post1.lbn25.noarch
Oauth2 was originally forked from Leah Culver and Andy Smith's oauth.py code. Some of the tests come from a fork by Vic Fryzel, while a revamped Request class and more tests were merged in from Mark Paschal's fork. A number of notable differences exist between this code and its forefathers: - 100% unit test coverage. - The DataStore object has been completely ripped out. While creating unit tests for the library I found several substantial bugs with the implementation and confirmed with Andy Smith that it was never fully baked. - Classes are no longer prefixed with OAuth. - The Request class now extends from dict. - The library is likely no longer compatible with Python 2.3. - The Client class works and extends from httplib2. It's a thin wrapper that handles automatically signing any normal HTTP request you might wish to make.
RPMPackage python2-nectar-1.6.0-1.lbn25.noarch
Nectar is a download library that abstracts the workflow of making and tracking download requests away from the mechanics of how those requests are carried out. It allows multiple downloaders to exist with different implementations, such as the default "threaded" downloader, which uses the "requests" library with multiple threads. Other experimental downloaders have used tools like pycurl and eventlets.
RPMPackage python2-mongoengine-0.18.2-1.lbn25.noarch
MongoEngine is a Document-Object Mapper (think ORM, but for document databases) for working with MongoDB from Python. It uses a simple declarative API, similar to the Django ORM.
RPMPackage python2-kombu-4.6.7-1.lbn25.noarch
AMQP is the Advanced Message Queuing Protocol, an open standard protocol for message orientation, queuing, routing, reliability and security. One of the most popular implementations of AMQP is RabbitMQ. The aim of Kombu is to make messaging in Python as easy as possible by providing an idiomatic high-level interface for the AMQP protocol, and also provide proven and tested solutions to common messaging problems.
RPMPackage python2-django-tastypie-0.13.3-7.lbn25.py37.noarch
Tastypie is an webservice API framework for Django. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces.
RPMPackage python2-django-tables2-1.2.3-4.lbn25.py37.noarch
django-tables2 simplifies the task of turning sets of data into HTML tables. It has native support for pagination and sorting. It does for HTML tables what django.forms does for HTML forms.
RPMPackage python2-django-stopforumspam-1.8-2.lbn25.py37.noarch
Tired of comment spam, form spam and dumb crawlers? A django application that provides middleware for blocking IPs listed in stopforumspam.com's database. A simple management command is provided for updating the database: manage.py sfsupdate [--force] Using this command, all IPs are stored in Django models. Using django-admin, it's possible to add your own extra IP addresses on a permanent database. This package provides Python 2 build of stopforumspam.
RPMPackage python2-django-sortedm2m-1.3.3-1.lbn25.py37.noarch
sortedm2m is a drop-in replacement for django’s own ManyToManyField. The provided SortedManyToManyField behaves like the original one but remembers the order of added relations. Usecases Imagine that you have a gallery model and a photo model. Usually you want a relation between these models so you can add multiple photos to one gallery but also want to be able to have the same photo on many galleries. This is where you usually can use many to many relation. The downside is that django’s default implementation doesn’t provide a way to order the photos in the gallery. So you only have a random ordering which is not suitable in most cases. You can work around this limitation by using the SortedManyToManyField provided by this package as drop in replacement for django’s ManyToManyField.