Voir le tutoriel hello World pour mettre en place le projet initial. Pour servir des fichiers statiques, lors de la configuration de l'application, utiliser la méthode
# conf est une instance de pyramid.conf.Configurator conf.add_static_view(name='static', path='static')
$ mkdir static $ cp ~/Images/georges.gif .
Le dossier static contient un gif. Le gif est utilisé dans le template Chameleon ci dessous:
<!DOCTYPE html> 2 <html lang="fr"> 3 <body> 4 <h1>Hello ${name}</h1> 5 <img src="/static/georges.gif" alt="whouuuuuuuuuuuuu!" /> 6 </body> 7 </html>