| Projects on Google Code | Results 1 - 10 of 17 |
cgi3 provides fast and safe parsing of form POST data for Python 3.
* Supports large file uploads while keeping memory usage low
* Written from the ground up to be bytes and encoding aware
* Byte values can be obtained without ever round-tripping through decoded text
* Enforceable me...
= Jipy =
Modulo escrito 100% en python versión 3, con un conjunto de utilidades, principalmente orientados a la comunicación y el protocolo http. Las siguientes submodulos son los que forman parte de jipy:
* *jhttp* - Conjunto de clases y excepciones que facilitan realizar peticiones y descarga...
A collection of scripts to do MPEG-4 AVC/AAC encoding batch runs. Real work is done by mplayer, avidemux, and mp4box.
*PROJECT STATUS: actively maintained*
{{{
>>> import urllib
>>> urlread = lambda url: urllib.urlopen(url).read()
>>> import chardet
>>> chardet.detect(urlread("http://google.cn/"))
{'encoding': 'GB2312', 'confidence': 0.99}
>>> chardet.detect(urlread("http://yahoo.co.jp/"))
{'encoding': 'EUC-JP', 'confidence': 0.99}
>>> char...
This library implements the content sniffing algorithm described in http://tools.ietf.org/html/draft-abarth-mime-sniff-03, which will eventually become a normative reference in [http://www.whatwg.org/html5 HTML5].
Works well with [http://code.google.com/p/httplib2/ httplib2]:
{{{
>>> from mim...
Using annotations (python3) and decorators, pyopt aims to ease and simplify exposing python functions to the command line. It's easier than toying with sys.argv and works as though you wrote an entire optparse parser.
The following example auto-generates help with docstrings, usage, type casting ...
Dirty is a simple [http://c2.com/cgi/wiki?EmbeddedDomainSpecificLanguage EDSL] template library that helps you to write some HTML
or XML markup with Python. It is inspired by [http://markaby.rubyforge.org/ Markaby].
{{{
>>> from dirty.html import *
>>> page = xhtml(
... head(
... title...
Stagger is an ID3v1/ID3v2 tag manipulation package written in pure Python 3.
The ID3v2 tag format is notorious for its useless specification documents and its quirky, mutually incompatible part-implementations. Stagger is to provide a robust tagging package that is able to handle all the various...
Traducción al español de la última versión del libro de Mark Pilgrim sobre Python 3 [http://diveintopython3.org Dive Into Python 3] - Inmersión en Python 3.
Actualmente se trata de un trabajo en marcha, iré incorporando los capítulos según avance en la traducción.
Por favor, si detectas errore...