You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python-sloq-0.2-1.lbn19.noarch
A slower queue implementation, guaranteeing that tasks are processsed at a maximum rate. SlowQueue aims to be directly comparable with the Queue API so that it can be dropped in as an alternative implementation, as with LIFOQueue and PriorityQueue, but currently (as this needn’t be the case) will raise additional ValueErrors if you try to pass block=False or timeout > 0 to get methods. Some slamming is possible and is controllable using the max_slam keyword argument on the TokenBucket or SlowQueue instance.
RPMPackage python-six-1.5.2-1.fc19.noarch
python-six provides simple utilities for wrapping over differences between Python 2 and Python 3. This is the Python 2 build of the module.
RPMPackage python-singledispatch-3.4.0.2-3.lbn19.noarch
PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4 that provides a simple form of generic programming known as single-dispatch generic functions. This library is a backport of this functionality to Python 2.6 - 3.3.
RPMPackage python-simplejson-3.5.3-5.lbn19.x86_64
simplejson is a simple, fast, complete, correct and extensible JSON <http://json.org> encoder and decoder for Python 2.5+. It is pure Python code with no dependencies, but includes an optional C extension for a serious speed boost. The encoder may be subclassed to provide serialization in any kind of situation, without any special support by the objects to be serialized (somewhat like pickle). The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by default). simplejson is the externally maintained development version of the json library included with Python 2.6 and Python 3.0, but maintains backwards compatibility with Python 2.5. It gets updated more regularly than the json module in the python stdlib.
RPMPackage python-sh-1.09-1.lbn19.noarch
sh (previously [pbs](http://pypi.python.org/pypi/pbs)) is a full-fledged subprocess replacement for Python 2.6 - 3.2 that allows you to call any program as if it were a function: `python from sh import ifconfig print ifconfig("eth0") ` sh is not a collection of system commands implemented in Python.
RPMPackage python-service-identity-14.0.0-4.lbn19.noarch
Service Identity Verification for pyOpenSSL TL;DR: Use this package if you use pyOpenSSL and don’t want to be MITMed. service_identity aspires to give you all the tools you need for verifying whether a certificate is valid for the intended purposes. In the simplest case, this means host name verification. However, service_identity implements RFC 6125 fully and plans to add other relevant RFCs too.
RPMPackage python-semver-2.0.1-1.lbn19.noarch
Simple module for comparing versions as noted at semver.org. This module provides just couple of functions, main of which are: >>> import semver >>> semver.compare("1.0.0", "2.0.0") 1 >>> semver.compare("2.0.0", "1.0.0") -1 >>> semver.compare("2.0.0", "2.0.0") 0 >>> semver.match("2.0.0", ">=1.0.0") True >>> semver.match("1.0.0", ">1.0.0") False
RPMPackage python-semantic_version-2.4.2-1.lbn19.noarch
This small python library provides a few tools to handle semantic versioning in Python
RPMPackage python-scss-1.3.4-1.lbn19.x86_64
A Scss compiler for Python
RPMPackage python-saml-2.1.3-1.lbn19.noarch
Onelogin Python Toolkit. Add SAML support to your Python software using this library
RPMPackage python-saharaclient-0.7.0-1.lbn19.noarch
Python client library for interacting with OpenStack Sahara API.
RPMPackage python-sahara-4.0.1-1.lbn19.noarch
Sahara provides the ability to elastically manage Apache Hadoop clusters on OpenStack. This package contains the Sahara Python library.
RPMPackage python-ryu-3.26-1.lbn19.noarch
Ryu provides software components with well defined API that make it easy for developers to create new network management and control applications.
RPMPackage python-rtslib-2.1.fb40-2.fc19.noarch
API for generic Linux SCSI kernel target.
RPMPackage python-rsa-3.2.3-1.lbn19.noarch
Pure-Python RSA implementation
RPMPackage python-routes-1.13-2.fc19.noarch
Routes is a Python re-implementation of the Rails routes system for mapping URL's to Controllers/Actions and generating URL's. Routes makes it easy to create pretty and concise URL's that are RESTful with little effort.
RPMPackage python-rhsm-1.11.1-1.fc19.x86_64
A small library for communicating with the REST interface of a Red Hat Unified Entitlement Platform. This interface is used for the management of system entitlements, certificates, and access to content.
RPMPackage python-rfc6266-0.0.4-1.lbn19.noarch
Parse and generate Content-Disposition headers
RPMPackage python-rfc3986-0.2.0-1.lbn19.noarch
A Python implementation of RFC 3986 including validation and authority parsing.
RPMPackage python-retrying-1.2.3-4.lbn19.noarch
Retrying is an Apache 2.0 licensed general-purpose retrying library, written in Python, to simplify the task of adding retry behavior to just about anything.