Grue

Results 2 comments of Grue

I recommend putting some simple sample string interpolation on routes... ``` @hug.get('/happy_birthday') @hug.get('/happy_birthday/{name}') def happy_birthday(name, age:hug.types.number=1): """Says happy birthday to a user""" return "Happy {age} Birthday {name}!".format(**locals()) ``` ...would have...