#!/usr/bin/env python

## - For testing - ##
import sys
sys.path.insert(0,'../')
## - - - ### - - - ##
try:
    from db import getProfile
except:
    from mural.db import getProfile

getProfile().display()
    
