Allrecipes Advanced Scraper avatar
Allrecipes Advanced Scraper
Try for free

3 days trial then $25.00/month - No credit card required now

View all Actors
Allrecipes Advanced Scraper

Allrecipes Advanced Scraper

epctex/allrecipes-advanced-scraper
Try for free

3 days trial then $25.00/month - No credit card required now

Advanced scraping on Allrecipes for data on millions of recipes, articles, galleries, and many more. Crawl Recipes and extract descriptions, images, steps, ingredients, nutrition, and all other properties. You can specify search terms, filters, mappings, and much more.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4client = ApifyClient("<YOUR_API_TOKEN>")
5
6# Prepare the Actor input
7run_input = {
8    "search": "cucumber",
9    "startUrls": [
10        "https://www.allrecipes.com/cook/onewholesomemeal",
11        "https://www.allrecipes.com/cook/foodwisheswithchefjohn/collection/bookmarks_5e9f2dfb-c75b-8640-f3ff-7897a9ed3897",
12        "https://www.allrecipes.com/search/results/?search=cucumber",
13        "https://www.allrecipes.com/gallery/butter-rich-recipes/",
14        "https://www.allrecipes.com/author/melanie-fincher/",
15        "https://www.allrecipes.com/article/how-to-clean-air-fryer/",
16        "https://www.allrecipes.com/recipe/261911/chef-johns-croissants/",
17    ],
18    "maxItems": 20,
19    "endPage": 1,
20    "extendOutputFunction": "($) => { return {} }",
21    "customMapFunction": "(object) => { return {...object} }",
22    "proxy": { "useApifyProxy": True },
23}
24
25# Run the Actor and wait for it to finish
26run = client.actor("epctex/allrecipes-advanced-scraper").call(run_input=run_input)
27
28# Fetch and print Actor results from the run's dataset (if there are any)
29print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
30for item in client.dataset(run["defaultDatasetId"]).iterate_items():
31    print(item)
32
33# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Community
Actor metrics
  • 3 monthly users
  • 1 star
  • 100.0% runs succeeded
  • Created in May 2022
  • Modified 15 minutes ago
Categories