1
2
3
4
#?
import PIL
#?
...

Python Convert .pdf to .tiff

by setori88.myopenid.com, October 20, 2008 07:04, 4 refactorings, tagged with python, open office, conversion, PIL

Hello all

As the title s...

40975e93e1913ab7c55e019f69d64b1f Talk
1
2
3
4
#!/usr/bin/python
# -*- coding: utf-8 -*-

...

Python Parse XML from Yahoo weathe...

by kael, August 26, 2008 17:27, 1 refactoring, tagged with python, dom, xml, rss

Is there a more efficient w...

Ec5a58db4acc016568e0293d283cbc2d Talk
1
2
3
4
#!/usr/bin/python
# -*- coding: utf-8 -*-

...

Python Base64 image encoding and i...

by kael, August 25, 2008 19:05, 1 refactoring, tagged with python, image, base64, hash, sha224

Is this a correct a way to ...

Ec5a58db4acc016568e0293d283cbc2d Talk
1
2
3
4
#!/usr/bin/python
# -*- coding: utf-8 -*-

...

Python Query TinyUrl the fastest way

by kael, August 25, 2008 18:44, No refactoring, tagged with python, http, tinyurl, urllib, urllib2

I'm looking for the fastest...

Ec5a58db4acc016568e0293d283cbc2d Talk
1
2
3
4
import wsgiref.handlers

from google.appengine.ext import webapp
...

Python Get request path using Goog...

by Zote, July 14, 2008 18:34, 1 refactoring, tagged with python, google application engine, gae, request path

if my url is http://zote.ap...

3079a42933388fed686653b9cd9affba Talk
1
2
3
4
def segment_pages(page):
    page.paginator.left = []
    page.paginator.right = []
...

Python Django / Python / Paginatio...

by bramston, June 11, 2008 04:58, 1 refactoring, tagged with django, python, pagination

Really quickly ported some ...

Eb74aac8da41a993ae9dd91a5b13b78a Talk
1
2
3
4

def sort(words):
...

Python Custom sort a list of words

by armandino.myopenid.com, December 10, 2007 02:36, 7 refactorings, tagged with python, sort

My second python script. :)...

2155c92be66863c4634778bf522efe14 Talk
1
2
3
4
import re

def addWord(token, frequencies):
...

Python Count word occurrences in a...

by armandino.myopenid.com, December 08, 2007 07:03, 8 refactorings, tagged with python

This code counts number of ...

2155c92be66863c4634778bf522efe14 Talk
1
2
3
4
class SearchLet(Form):
    district = Field(widget=SelectMultiple(choices=DISTRICTS, required=False)
...

Python Django models search

by lbolognini, November 10, 2007 16:30, 1 refactoring, tagged with python, django, search, orm

I'm using the following cod...

D2ff155cd04fa175620d2f3495b11b08 Talk