Skip to main content

A Python Library with which you can get data from Chefkoch.

Project description

get_chefkoch

PyPI version
A Python Library with which you can get data from Chefkoch.

Example:

from get_chefkoch import chefkoch

c = chefkoch()
recipe = c.daily_recipe()
print(recipe.name)
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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

get_chefkoch-0.1.1.tar.gz (2.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page