imagizer.imagizer.ModelRangeTout:
Implemantation MVC de la procedure RangeTout moves all the JPEG
files to a directory named from their day and with the name
according to the time
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.
imagizer.imagecache.ImageCache:
this class is a Borg : always returns the same values regardless to
the instance of the object it is used as data storage for images
...