vendredi 18 juin 2010

Calendrier

pcal -o 2010.ps -P a4 -t 2010 -a fr -F 1 6 2010 2

mercredi 9 juin 2010

Python - urlparse


>>> from urlparse import urlparse
>>> o = urlparse('http://www.example.com:80/%7Eme/test.html;jsessionid=id?a=b&c=d#tag')
>>> o
ParseResult(scheme='http', netloc='www.example.com:80',
path='/%7Eme/test.html', params='jsessionid=id',
query='a=b&c=d', fragment='tag')