#!/usr/bin/python

#Change this variable to the httpd root.
webRoot = '/home/leonardr/public_html/'

#Change this variable to the partial path to the directory containing
#photos.
photoPath = '/graphics/people/me/'

import os
import random

#Get the list of files in the photo directory
files = os.listdir(webRoot + photoPath)

#Pick one at random
filename = random.choice(files);

print photoPath+filename
