Personal tools
Skip to content. | Skip to navigation
Funky is a package of some useful functionnal constructs for python.
future is the missing compatibility layer between Python 2 and Python 3. It allows you to use a single, clean Python 3.x-compatible codebase to support both Python 2 and Python 3 with minimal overhead. It is designed to be used as follows: from __future__ import (absolute_import, division, print_function, unicode_literals) from builtins import ( bytes, dict, int, list, object, range, str, ascii, chr, hex, input, next, oct, open, pow, round, super, filter, map, zip) followed by predominantly standard, idiomatic Python 3 code that then runs similarly on Python 2.6/2.7 and Python 3.3+. The imports have no effect on Python 3. On Python 2, they shadow the corresponding builtins, which normally have different semantics on Python 3 versus 2, to provide their Python 3 semantics.
The concurrent.futures module provides a high-level interface for asynchronously executing callables.
This is a Python module for accessing online Google services such as: - Base - Blogger - Calendar - Health - Picasa Web Albums - Spreadsheets - Documents List - Contacts - YouTube - Google Apps Provisioning - Code Search - Notebook - Webmaster Tools API - Google Analytics Data Export API - Google Book Search Data API - Google Finance Portfolio Data API - Google Maps Data API - Sites Data API - Issue Tracker Data API
A pure-Python asynchronous library to interface with Gearman.
Genshi is a Python library that provides an integrated set of components for parsing, generating, and processing HTML, XML or other textual content for output generation on the web. The major feature is a template language, which is heavily inspired by Kid.