Metadata-Version: 1.0
Name: genmenu
Version: 0.1.8
Summary: A meal menu planner
Home-page: https://github.com/peerster/genmenu
Author: Pär Berge
Author-email: paer.berge@gmail.com
License: MIT
Description: genmenu: A meal planner written in python
        =========================================
        
        .. image:: https://travis-ci.org/peerster/genmenu.svg?branch=master
            :target: https://travis-ci.org/peerster/genmenu
           
        Why
        ---
        To try to simplify and automate the process of planning what to
        eat.
        
        Install
        -------
        
        .. code-block:: bash
        
            $ pip install genmenu
        
        Example
        -------
        .. code-block:: python
        
            >>> example_menu = genmenu.GenMenu()
            >>> example_menu.insert_lunch_menu(['spam', 'eggs'])
            >>> example_menu.insert_dinner_menu(['spam', 'eggs'])
            >>> example_menu.generate_menu()
            >>> example_menu.my_menu
            OrderedDict([('Monday', {'dinner': 'spam', 'lunch': 'spam'}), ('Tuesday', {'dinner': 'eggs', 'lunch': 'eggs'}), ('Wednesday', {'dinner': '', 'lunch': ''}), ('Thursday', {'dinner': '', 'lunch': ''}), ('Friday', {'dinner': '', 'lunch': ''}), ('Saturday', {'dinner': '', 'lunch': ''}), ('Sunday', {'dinner': '', 'lunch': ''})])
            >>>
        
        What I want to add
        ------------------
        
        -  A simple webpage (what web framework to use?)
        -  Simple DB backend (probably nosql. What DB to use?)
        -  Fetch recipies from external resources (what resources to use?)
        -  Make it multilingual (what tool and how to do that?)
        -  The option to specify how many days/weeks to plan for
        -  Add the dates to the days
        
Platform: UNKNOWN
