#!/usr/bin/env python
"""
cook

Entry point for the cooker module
"""
from cooker import Cooker

def main():
    """Begin cooking"""
    try:
        Cooker.cook()
    except IOError:
        print """Internet connection seems to be unavailable."""
    except:
        print """Oops, smells like rotten ingredients.
                Something has gone wrong"""


if __name__ == "__main__":
    main()
