You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python-docx-0.8.5-2.lbn19.noarch
Python library for creating and updating Microsoft Word (.docx) files.
RPMPackage python-docutils-0.12-0.6.20140510svn7747.lbn19.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.
RPMPackage python-dns-1.12.0GIT99fd864-2.lbn19.noarch
dnspython is a DNS toolkit for Python. It supports almost all record types. It can be used for queries, zone transfers, and dynamic updates. It supports TSIG authenticated messages and EDNS0. dnspython provides both high and low level access to DNS. The high level classes perform queries for data of a given name, type, and class, and return an answer set. The low level classes allow direct manipulation of DNS zones, messages, names, and records.
RPMPackage python-dm-1.1-4.lbn19.noarch
dm module
RPMPackage python-diazo-1.2.5-1.lbn25.noarch
Diazo implements a Deliverance like language using a pure XSLT engine. With Diazo, you "compile" your theme and ruleset in one step, then use a superfast/simple transform on each request thereafter. Alternatively, compile your theme during development, check it into Subversion, and not touch Diazo during deployment. Diazo allows you to apply a theme contained in a static HTML web page to a dynamic website created using any server-side technology. With Diazo, you can take an HTML wireframe created by a web designer and turn it into a theme for your favourite CMS, redesign the user interface of a legacy web application without even having access to the original source code, or build a unified user experience across multiple disparate systems, all in a matter of hours, not weeks. When using Diazo, you will work with syntax and concepts familiar from working with HTML and CSS. And by allowing you seamlessly integrate XSLT into your rule files, Diazo makes common cases simple and complex requirements possible. For detailed documentation, please see diazo.org.
RPMPackage python-dateable-kalends-0.5-4.lbn19.noarch
Kalends is a Python module using the Component Architecture technologies of interfaces and adapters to separate the storage and display of calendar events. The purpose is to provide a generic Python API so that any calendar UI can display calendars coming from any calendar source. Thus, one can create new UIs without reimplementing the underlying calendar functionality, and one can likewise implement specialized calendar functionality while reusing the existing UI. For example, if you have a groupware system with a good calendaring UI but need to use an external server for your calendars, you should not need to rewrite the user interface. A secondary goal is also to provide an API for calendaring to help people around some of the obstacles you will sooner or later arrive at, like how to handle recurring events, searching, and more, by providing them with an API that can handle the issues. The two main concepts of this API are event providers, which are the sources of events, and event users, which take the Events and display them, export them, etc. More information on how to use Kalends to make an EventProvider is in doc/PROVIDING.txt, and more information on how to use Kalends to get events from an EventProvider is in doc/USING.txt.
RPMPackage python-dateable-chronos-0.5-5.lbn19.noarch
A suite of products for a calendar that can handle recurring events.
RPMPackage python-cssmin-0.2.0-1.fc19.noarch
A Python port of the YUI CSS compression algorithm. The library can be used for merging and compressing CSS files.
RPMPackage python-country-0.14.5-2.lbn19.x86_64
pycountry provides the ISO databases for the standards: - 639: Languages - 3166: Countries - 3166-2: Subdivisions of countries - 4217: Currencies - 15924: Scripts The databases are imported from Debian's `pkg-isocodes`, packaged into pycountry and made accessible through a Python API. Translation files for the various strings are included as well. Authors: -------- Christian Theune <ct@gocept.com>
RPMPackage python-cornice-0.16.2-2.lbn19.noarch
Helpers to build & document Web Services with Pyramid.
RPMPackage python-contentratings-1.0-1.lbn19.noarch
This package provides an infrastructure for adding ratings to Zope content. It supports multiple categorized ratings per content object and includes views for displaying those ratings. For Plone rating support, please see plone.contentratings.
RPMPackage python-configparser-3.5.0b2-1.lbn19.noarch
The ancient ConfigParser module available in the standard library 2.x has seen a major update in Python 3.2. This is a backport of those changes so that they can be used directly in Python 2.6 - 2.7. To use configparser instead of ConfigParser, simply replace: import ConfigParser with: import configparser For detailed documentation consult the vanilla version at http://docs.python.org/py3k/library/configparser.html. Why you'll love configparser * there's now one default ConfigParser class, which basically is the old SafeConfigParser with a bunch of tweaks which make it more predictable for users. Don't need interpolation? Simply use ConfigParser(interpolation=None), no need to use a distinct RawConfigParser anymore. * the parser is highly customizable upon instantiation supporting things like changing option delimiters, comment characters, the name of the DEFAULT section, the interpolation syntax, etc. * you can easily create your own interpolation syntax but there are two powerful implementations built-in (more info): o the classic %(string-like)s syntax (called BasicInterpolation) o a new ${buildout:like} syntax (called ExtendedInterpolation) * ConfigParser objects can now read data directly from strings and from dictionaries. That means importing configuration from JSON or specifying default values for the whole configuration (multiple sections) is now a single line of code. Same goes for copying data from another ConfigParser instance, thanks to its mapping protocol support. * many smaller tweaks, updates and fixes
RPMPackage python-colander-1.0b1-3.lbn19.noarch
An extensible package which can be used to: - deserialize and validate a data structure composed of strings, mappings, and lists. - serialize an arbitrary data structure to a data structure composed of strings, mappings, and lists. Please see http://docs.pylonsproject.org/projects/colander/en/latest/ for further documentation.
RPMPackage python-cioppino.twothumbs-2.1.1-1.lbn19.noarch
This will add those terribly "delish" little thumbs all over facebook to products of your choosing. By default, only logged in users can rate a product, and once they are logged in they can vote once (and change their vote at any time)
RPMPackage python-bytecodeassembler-0.6-2.lbn19.noarch
peak.util.assembler is a simple bytecode assembler module that handles most low-level bytecode generation details like jump offsets, stack size tracking, line number table generation, constant and variable name index tracking, etc. That way, you can focus your attention on the desired semantics of your bytecode instead of on these mechanical issues. In addition to a low-level opcode-oriented API for directly generating specific Python bytecodes, this module also offers an extensible mini-AST framework for generating code from high-level specifications. This framework does most of the work needed to transform tree-like structures into linear bytecode instructions, and includes the ability to do compile-time constant folding.summary}
RPMPackage python-bson-2.5.2-1.fc19.armv6hl
BSON is a binary-encoded serialization of JSON-like documents. BSON is designed to be lightweight, traversable, and efficient. BSON, like JSON, supports the embedding of objects and arrays within other objects and arrays.
RPMPackage python-bson-2.5.2-1.fc19.x86_64
BSON is a binary-encoded serialization of JSON-like documents. BSON is designed to be lightweight, traversable, and efficient. BSON, like JSON, supports the embedding of objects and arrays within other objects and arrays.
RPMPackage python-beautifulsoup4-4.5.3-1.lbn19.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 python-beaker-1.5.4-14.lbn19.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 python-bda.cache-1.1.3-2.lbn19.noarch
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.