Skip to content

Instantly share code, notes, and snippets.

@timothycrosley
Last active March 15, 2016 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timothycrosley/1750cad72971e9ba809a to your computer and use it in GitHub Desktop.
Save timothycrosley/1750cad72971e9ba809a to your computer and use it in GitHub Desktop.
First hug API step #1
"""First API, local access only"""
import hug
@hug.local()
def happy_birthday(name: hug.types.text, age: hug.types.number, hug_timer=3):
"""Says happy birthday to a user"""
return {'message': 'Happy {0} Birthday {1}!'.format(age, name),
'took': float(hug_timer)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment