Metadata-Version: 2.1
Name: get-chefkoch
Version: 0.1.1
Summary: A Python Library with which you can get data from Chefkoch.
Home-page: https://github.com/olzeug/get_chefkoch
Author: olzeug
License: UNKNOWN
Description: # get_chefkoch
        <a href="http://pepy.tech/count/get-chefkoch"><img src="http://pepy.tech/badge/get-chefkoch"></a> <a href="https://badge.fury.io/py/get-chefkoch"><img src="https://badge.fury.io/py/get-chefkoch.svg" alt="PyPI version" height="18"></a> <a href="https://github.com/olzeug/get_chefkoch/blob/master/LICENSE"><img src="https://img.shields.io/github/license/olzeug/get_chefkoch.svg"></a><br>
        A Python Library with which you can get data from Chefkoch.
        
        # Example:
        
        ```python
        from get_chefkoch import chefkoch
        
        c = chefkoch()
        recipe = c.daily_recipe()
        print(recipe.name)
        ```
        
        ```python
        from get_chefkoch import chefkoch
        
        c = chefkoch()
        print(c.search("Hot Dog", limit=5)[0].id)
        
        for i in c.search("Milk Shake", limit=10, offset=2):
          print(i._yield)
        ```
        
        # Recipe-Class Parameters:
             name              The recipe name
             description       The operation description
             image             The recipe image
             ingredients       The ingredients
             rating            The rating of the recipe
             category          The category
             published         The Publish Date
             cooktime          The cooking time
             autor             The autor
             reviews           Number of reviews
             _yield            Number of portions as string
             id                The unique id created by chefkoch
             url               The Url
        
        # Features:
        
        - Query the recipe of the day
        - Search for specific recipe
        - Querying information about a recipe(cooking time, description, ingredients, ...)
        
        # Get it now:
        
        ```
        pip install get-chefkoch
        ```
        
Keywords: Chefkoch,get_chefkoch
Platform: UNKNOWN
Requires: requests
Requires: feedparser
Requires: bs4
Requires: json
Requires: lxml
Requires-Python: >=3.0
Description-Content-Type: text/markdown
