git.fiddlerwoaroof.com
marrow_config.sample.py
8d6bf703
 from src.marrow.titlegetter import titlegetter
 from src.marrow.titlegetter import nytimes
a7edc10f
 
 class config:
     debug = True
     secret_key = "<some random string>"
     db = "<theDatabaseName>"
     user = "<theDatabaseUser>"
     password = "<theDatabasePassword>"
     host = "localhost"
8d6bf703
     titlegetter = titlegetter.TitleGetter()
a7edc10f