1) Playing with all recipes
Browse files- .vscode/launch.json +16 -0
- app.ipynb +31 -4
- vector-stores-create-beautiful-soap-1.ipynb +267 -0
.vscode/launch.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
// Use IntelliSense to learn about possible attributes.
|
3 |
+
// Hover to view descriptions of existing attributes.
|
4 |
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5 |
+
"version": "0.2.0",
|
6 |
+
"configurations": [
|
7 |
+
{
|
8 |
+
"name": "Python: Current File",
|
9 |
+
"type": "python",
|
10 |
+
"request": "launch",
|
11 |
+
"program": "${file}",
|
12 |
+
"console": "integratedTerminal",
|
13 |
+
"justMyCode": true
|
14 |
+
}
|
15 |
+
]
|
16 |
+
}
|
app.ipynb
CHANGED
@@ -235,7 +235,7 @@
|
|
235 |
},
|
236 |
{
|
237 |
"cell_type": "code",
|
238 |
-
"execution_count":
|
239 |
"metadata": {},
|
240 |
"outputs": [],
|
241 |
"source": [
|
@@ -251,14 +251,14 @@
|
|
251 |
},
|
252 |
{
|
253 |
"cell_type": "code",
|
254 |
-
"execution_count":
|
255 |
"metadata": {},
|
256 |
"outputs": [
|
257 |
{
|
258 |
"name": "stdout",
|
259 |
"output_type": "stream",
|
260 |
"text": [
|
261 |
-
"Running on local URL: http://127.0.0.1:
|
262 |
"\n",
|
263 |
"To create a public link, set `share=True` in `launch()`.\n"
|
264 |
]
|
@@ -266,7 +266,7 @@
|
|
266 |
{
|
267 |
"data": {
|
268 |
"text/html": [
|
269 |
-
"<div><iframe src=\"http://127.0.0.1:
|
270 |
],
|
271 |
"text/plain": [
|
272 |
"<IPython.core.display.HTML object>"
|
@@ -274,6 +274,33 @@
|
|
274 |
},
|
275 |
"metadata": {},
|
276 |
"output_type": "display_data"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
}
|
278 |
],
|
279 |
"source": [
|
|
|
235 |
},
|
236 |
{
|
237 |
"cell_type": "code",
|
238 |
+
"execution_count": 113,
|
239 |
"metadata": {},
|
240 |
"outputs": [],
|
241 |
"source": [
|
|
|
251 |
},
|
252 |
{
|
253 |
"cell_type": "code",
|
254 |
+
"execution_count": 114,
|
255 |
"metadata": {},
|
256 |
"outputs": [
|
257 |
{
|
258 |
"name": "stdout",
|
259 |
"output_type": "stream",
|
260 |
"text": [
|
261 |
+
"Running on local URL: http://127.0.0.1:7918\n",
|
262 |
"\n",
|
263 |
"To create a public link, set `share=True` in `launch()`.\n"
|
264 |
]
|
|
|
266 |
{
|
267 |
"data": {
|
268 |
"text/html": [
|
269 |
+
"<div><iframe src=\"http://127.0.0.1:7918/\" width=\"100%\" height=\"500\" allow=\"autoplay; camera; microphone; clipboard-read; clipboard-write;\" frameborder=\"0\" allowfullscreen></iframe></div>"
|
270 |
],
|
271 |
"text/plain": [
|
272 |
"<IPython.core.display.HTML object>"
|
|
|
274 |
},
|
275 |
"metadata": {},
|
276 |
"output_type": "display_data"
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"name": "stdout",
|
280 |
+
"output_type": "stream",
|
281 |
+
"text": [
|
282 |
+
"Literature\n",
|
283 |
+
"Using vector store: Literature\n",
|
284 |
+
"Using index: rag-demo-1-literature\n",
|
285 |
+
"Literature\n",
|
286 |
+
"Using vector store: Literature\n",
|
287 |
+
"Using index: rag-demo-1-literature\n",
|
288 |
+
"Literature\n",
|
289 |
+
"Using vector store: Literature\n",
|
290 |
+
"Using index: rag-demo-1-literature\n",
|
291 |
+
"Literature\n",
|
292 |
+
"Using vector store: Literature\n",
|
293 |
+
"Using index: rag-demo-1-literature\n",
|
294 |
+
"Literature\n",
|
295 |
+
"Using vector store: Literature\n",
|
296 |
+
"Using index: rag-demo-1-literature\n",
|
297 |
+
"Literature\n",
|
298 |
+
"Using vector store: Literature\n",
|
299 |
+
"Using index: rag-demo-1-literature\n",
|
300 |
+
"Literature\n",
|
301 |
+
"Using vector store: Literature\n",
|
302 |
+
"Using index: rag-demo-1-literature\n"
|
303 |
+
]
|
304 |
}
|
305 |
],
|
306 |
"source": [
|
vector-stores-create-beautiful-soap-1.ipynb
ADDED
@@ -0,0 +1,267 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": 44,
|
6 |
+
"metadata": {},
|
7 |
+
"outputs": [],
|
8 |
+
"source": [
|
9 |
+
"import requests\n",
|
10 |
+
"from bs4 import BeautifulSoup\n",
|
11 |
+
"\n",
|
12 |
+
"#specify the url we want to scrape from\n",
|
13 |
+
"link = \"https://www.allrecipes.com/recipes/17562/dinner/\"\n",
|
14 |
+
"contentText = requests.get(link).text\n"
|
15 |
+
]
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"cell_type": "code",
|
19 |
+
"execution_count": 145,
|
20 |
+
"metadata": {},
|
21 |
+
"outputs": [
|
22 |
+
{
|
23 |
+
"name": "stdout",
|
24 |
+
"output_type": "stream",
|
25 |
+
"text": [
|
26 |
+
"['https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/']\n"
|
27 |
+
]
|
28 |
+
}
|
29 |
+
],
|
30 |
+
"source": [
|
31 |
+
"def get_links_on_url(url: str, urlFilter: str):\n",
|
32 |
+
" html = requests.get(url).text\n",
|
33 |
+
" allUrls = []\n",
|
34 |
+
" soup = BeautifulSoup(contentText)\n",
|
35 |
+
" for link in soup.find_all('a'):\n",
|
36 |
+
" if urlFilter in link.get('href'):\n",
|
37 |
+
" allUrls.append(link.get('href'))\n",
|
38 |
+
" \n",
|
39 |
+
" return allUrls\n",
|
40 |
+
"\n",
|
41 |
+
"#links = get_links_on_url(\"https://www.allrecipes.com/recipes/17562/dinner/\", \"/recipe/\")\n",
|
42 |
+
"# links = get_links_on_url(\"https://www.allrecipes.com/search?q=Chicken\", \"/recipe/\")\n",
|
43 |
+
"#links = get_links_on_url(\"https://www.allrecipes.com/search?Poultry=Beef+Stews&offset=0&q=Beef+Stews\", \"/recipe/\")\n",
|
44 |
+
"\n",
|
45 |
+
"\n",
|
46 |
+
"print(links)"
|
47 |
+
]
|
48 |
+
},
|
49 |
+
{
|
50 |
+
"cell_type": "code",
|
51 |
+
"execution_count": 155,
|
52 |
+
"metadata": {},
|
53 |
+
"outputs": [
|
54 |
+
{
|
55 |
+
"name": "stdout",
|
56 |
+
"output_type": "stream",
|
57 |
+
"text": [
|
58 |
+
"0\n",
|
59 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=0&q=Chicken\n",
|
60 |
+
"1\n",
|
61 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=24&q=Chicken\n",
|
62 |
+
"2\n",
|
63 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=48&q=Chicken\n",
|
64 |
+
"3\n",
|
65 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=72&q=Chicken\n",
|
66 |
+
"4\n",
|
67 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=96&q=Chicken\n",
|
68 |
+
"5\n",
|
69 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=120&q=Chicken\n",
|
70 |
+
"6\n",
|
71 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=144&q=Chicken\n",
|
72 |
+
"7\n",
|
73 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=168&q=Chicken\n",
|
74 |
+
"8\n",
|
75 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=192&q=Chicken\n",
|
76 |
+
"9\n",
|
77 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=216&q=Chicken\n",
|
78 |
+
"10\n",
|
79 |
+
"https://www.allrecipes.com/search?Chicken=Chicken&offset=240&q=Chicken\n",
|
80 |
+
"#############################\n",
|
81 |
+
"['https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/', 'https://www.allrecipes.com/recipe/240206/simple-broccolini/', 'https://www.allrecipes.com/recipe/18290/garlic-mashed-potatoes/', 'https://www.allrecipes.com/recipe/229733/simple-roasted-butternut-squash/', 'https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/', 'https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/', 'https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/216426/english-honey-roasted-turkey/', 'https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/', 'https://www.allrecipes.com/recipe/233953/million-dollar-chicken/', 'https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/', 'https://www.allrecipes.com/recipe/214618/beer-can-chicken/', 'https://www.allrecipes.com/recipe/219079/chef-johns-roast-turkey-and-gravy/', 'https://www.allrecipes.com/recipe/23037/easy-beginners-turkey-with-stuffing/', 'https://www.allrecipes.com/recipe/229658/oven-roasted-turkey-breast/', 'https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/', 'https://www.allrecipes.com/recipe/84456/roasted-turkey-legs/', 'https://www.allrecipes.com/recipe/214478/happy-roast-chicken/', 'https://www.allrecipes.com/recipe/16984/turkey-in-a-smoker/']\n"
|
82 |
+
]
|
83 |
+
}
|
84 |
+
],
|
85 |
+
"source": [
|
86 |
+
"def search_all_recipes(query: str, pages: int) -> list:\n",
|
87 |
+
" recipeUrls = []\n",
|
88 |
+
" recipesOnPage = 24\n",
|
89 |
+
" for i in range(pages + 1):\n",
|
90 |
+
" print(i)\n",
|
91 |
+
" offset = i * recipesOnPage\n",
|
92 |
+
" url = f\"https://www.allrecipes.com/search?{query}=Chicken&offset={offset}&q={query}\"\n",
|
93 |
+
" print(url)\n",
|
94 |
+
" links = get_links_on_url(url, \"/recipe/\")\n",
|
95 |
+
" recipeUrls.extend(links)\n",
|
96 |
+
"\n",
|
97 |
+
" return recipeUrls\n",
|
98 |
+
"\n",
|
99 |
+
"recipes = search_all_recipes(\"Chicken\", 10)\n",
|
100 |
+
"print(\"#############################\")\n",
|
101 |
+
"print(recipes)"
|
102 |
+
]
|
103 |
+
},
|
104 |
+
{
|
105 |
+
"cell_type": "code",
|
106 |
+
"execution_count": 136,
|
107 |
+
"metadata": {},
|
108 |
+
"outputs": [
|
109 |
+
{
|
110 |
+
"name": "stdout",
|
111 |
+
"output_type": "stream",
|
112 |
+
"text": [
|
113 |
+
"{'@context': 'http://schema.org', '@type': ['Recipe'], 'headline': 'Easy Chicken and Broccoli Alfredo', 'datePublished': '2015-07-25T02:03:34.000-04:00', 'dateModified': '2023-08-24T03:27:33.109-04:00', 'author': [{'@type': 'Person', 'name': 'Philadelphia', 'url': 'https://www.allrecipes.com/cook/philadelphia'}], 'description': 'This creamy chicken and broccoli Alfredo pasta dish with fresh broccoli, tender chunks of chicken breast, Parmesan cheese, and basil is sure to please!', 'name': 'Easy Chicken and Broccoli Alfredo', 'aggregateRating': {'@type': 'AggregateRating', 'ratingValue': '4.4', 'ratingCount': '143'}, 'cookTime': 'PT20M', 'nutrition': {'@type': 'NutritionInformation', 'calories': '511 kcal', 'carbohydrateContent': '32 g', 'cholesterolContent': '139 mg', 'fiberContent': '3 g', 'proteinContent': '47 g', 'saturatedFatContent': '10 g', 'sodiumContent': '514 mg', 'sugarContent': '10 g', 'fatContent': '21 g', 'unsaturatedFatContent': '0 g'}, 'prepTime': 'PT10M', 'recipeCategory': ['Dinner'], 'recipeCuisine': ['Italian'], 'recipeIngredient': ['8 ounces fettuccine or spaghetti, uncooked', '2 cups fresh broccoli florets', '0.25 cup KRAFT Zesty Italian Dressing', '1 pound boneless skinless chicken breasts, cut into bite-sized pieces', '1.6666667461395 cups milk', '4 ounces PHILADELPHIA Cream Cheese, cubed', '0.25 cup KRAFT Grated Parmesan Cheese', '0.5 teaspoon dried basil leaves'], 'recipeInstructions': [{'@type': 'HowToStep', 'text': 'Cook pasta as directed on package, adding broccoli to the boiling water for the last 2 minutes of the pasta cooking time. Drain pasta mixture.'}, {'@type': 'HowToStep', 'text': 'Meanwhile, heat dressing in large nonstick skillet on medium-high heat. Add chicken and cook until no longer pink in the center, stirring occasionally, about 5 to 7 minutes.'}, {'@type': 'HowToStep', 'text': 'Stir in milk, cream cheese, Parmesan cheese, and basil. Bring to a boil, stirring constantly. Cook until sauce is well blended and heated through, about 1 to 2 minutes.'}, {'@type': 'HowToStep', 'text': 'Add chicken mixture to pasta mixture; mix lightly.'}], 'recipeYield': ['4'], 'totalTime': 'PT30M', 'about': []}\n"
|
114 |
+
]
|
115 |
+
}
|
116 |
+
],
|
117 |
+
"source": [
|
118 |
+
"import dateutil.parser\n",
|
119 |
+
"from datetime import datetime\n",
|
120 |
+
"import json\n",
|
121 |
+
"\n",
|
122 |
+
"def get_recipe_as_json(url: str) -> dict: \n",
|
123 |
+
" html = requests.get(url).text \n",
|
124 |
+
" soup = BeautifulSoup(html)\n",
|
125 |
+
" script = soup.find_all(\"script\", {\"id\": \"allrecipes-schema_1-0\"})\n",
|
126 |
+
"\n",
|
127 |
+
" recipeDict = json.loads(script[0].text)[0]\n",
|
128 |
+
" del recipeDict['review']\n",
|
129 |
+
" del recipeDict['image']\n",
|
130 |
+
" del recipeDict['mainEntityOfPage']\n",
|
131 |
+
" del recipeDict['publisher']\n",
|
132 |
+
" \n",
|
133 |
+
" return recipeDict\n",
|
134 |
+
"\n",
|
135 |
+
"url = \"https://www.allrecipes.com/recipe/212498/easy-chicken-and-broccoli-alfredo/\"\n",
|
136 |
+
"obj = get_recipe_as_json(url)\n",
|
137 |
+
"\n",
|
138 |
+
"print(obj)\n",
|
139 |
+
"\n"
|
140 |
+
]
|
141 |
+
},
|
142 |
+
{
|
143 |
+
"cell_type": "code",
|
144 |
+
"execution_count": 188,
|
145 |
+
"metadata": {},
|
146 |
+
"outputs": [
|
147 |
+
{
|
148 |
+
"name": "stdout",
|
149 |
+
"output_type": "stream",
|
150 |
+
"text": [
|
151 |
+
"[{'title': 'chocolate snack cake recipe', 'url': 'https://www.allrecipes.com/chocolate-snack-cake-recipe-8350343'}, {'title': 'charred spiced pears with smoky vanilla cherry sauce recipe', 'url': 'https://www.allrecipes.com/charred-spiced-pears-with-smoky-vanilla-cherry-sauce-recipe-8347080'}, {'title': 'meringue topped banana pudding recipe', 'url': 'https://www.allrecipes.com/meringue-topped-banana-pudding-recipe-8347040'}, {'title': 'white chocolate cinnamon toast crunch bars recipe', 'url': 'https://www.allrecipes.com/white-chocolate-cinnamon-toast-crunch-bars-recipe-7556790'}, {'title': 'plum cobbler for two recipe', 'url': 'https://www.allrecipes.com/plum-cobbler-for-two-recipe-8304143'}, {'title': 'pumpkin cheesecake cookies recipe', 'url': 'https://www.allrecipes.com/pumpkin-cheesecake-cookies-recipe-7972485'}, {'title': 'chocolate whipped cottage cheese recipe', 'url': 'https://www.allrecipes.com/chocolate-whipped-cottage-cheese-recipe-8303272'}, {'title': 'nutella ice cream recipe', 'url': 'https://www.allrecipes.com/nutella-ice-cream-recipe-7508716'}, {'title': '3 ingredient banana oatmeal cookies recipe', 'url': 'https://www.allrecipes.com/3-ingredient-banana-oatmeal-cookies-recipe-7972686'}, {'title': 'caramel apple pie cookies recipe', 'url': 'https://www.allrecipes.com/caramel-apple-pie-cookies-recipe-7642173'}]\n"
|
152 |
+
]
|
153 |
+
}
|
154 |
+
],
|
155 |
+
"source": [
|
156 |
+
"dessertList = [\n",
|
157 |
+
" {\n",
|
158 |
+
" \"title\": \"Chocolate Snack Cake\",\n",
|
159 |
+
" \"url\": \"https://www.allrecipes.com/chocolate-snack-cake-recipe-8350343\"\n",
|
160 |
+
" },\n",
|
161 |
+
" {\n",
|
162 |
+
" \"title\": \"Charred Spiced Pears with Smoky Vanilla Cherry Sauce\",\n",
|
163 |
+
" \"url\": \"https://www.allrecipes.com/charred-spiced-pears-with-smoky-vanilla-cherry-sauce-recipe-8347080\"\n",
|
164 |
+
" },\n",
|
165 |
+
" {\n",
|
166 |
+
" \"title\": \"Meringue Topped Banana Pudding\",\n",
|
167 |
+
" \"url\": \"https://www.allrecipes.com/meringue-topped-banana-pudding-recipe-8347040\"\n",
|
168 |
+
" },\n",
|
169 |
+
" {\n",
|
170 |
+
" \"title\": \"White Chocolate Cinnamon Toast Crunch Bars\",\n",
|
171 |
+
" \"url\": \"https://www.allrecipes.com/white-chocolate-cinnamon-toast-crunch-bars-recipe-7556790\"\n",
|
172 |
+
" },\n",
|
173 |
+
" {\n",
|
174 |
+
" \"title\": \"Plum Cobbler for Two\",\n",
|
175 |
+
" \"url\": \"https://www.allrecipes.com/plum-cobbler-for-two-recipe-8304143\"\n",
|
176 |
+
" },\n",
|
177 |
+
" {\n",
|
178 |
+
" \"title\": \"Pumpkin Cheesecake Cookies\",\n",
|
179 |
+
" \"url\": \"https://www.allrecipes.com/pumpkin-cheesecake-cookies-recipe-7972485\"\n",
|
180 |
+
" },\n",
|
181 |
+
" {\n",
|
182 |
+
" \"title\": \"Chocolate Whipped Cottage Cheese\",\n",
|
183 |
+
" \"url\": \"https://www.allrecipes.com/chocolate-whipped-cottage-cheese-recipe-8303272\"\n",
|
184 |
+
" },\n",
|
185 |
+
" {\n",
|
186 |
+
" \"title\": \"Nutella Ice Cream\",\n",
|
187 |
+
" \"url\": \"https://www.allrecipes.com/nutella-ice-cream-recipe-7508716\"\n",
|
188 |
+
" },\n",
|
189 |
+
" {\n",
|
190 |
+
" \"title\": \"3-Ingredient Banana Oatmeal Cookies\",\n",
|
191 |
+
" \"url\": \"https://www.allrecipes.com/3-ingredient-banana-oatmeal-cookies-recipe-7972686\"\n",
|
192 |
+
" },\n",
|
193 |
+
" {\n",
|
194 |
+
" \"title\": \"Caramel Apple Pie Cookies\",\n",
|
195 |
+
" \"url\": \"https://www.allrecipes.com/caramel-apple-pie-cookies-recipe-7642173\"\n",
|
196 |
+
" }\n",
|
197 |
+
"]\n",
|
198 |
+
"\n",
|
199 |
+
"\n",
|
200 |
+
"chickenDishList = [\n",
|
201 |
+
" {\n",
|
202 |
+
" \"title\": \"Crispy Roasted Chicken\",\n",
|
203 |
+
" \"url\": \"https://www.allrecipes.com/recipe/228363/crispy-roasted-chicken/\"\n",
|
204 |
+
" },\n",
|
205 |
+
" {\n",
|
206 |
+
" \"title\": \"Roasted Spatchcocked Chicken With Potatoes\",\n",
|
207 |
+
" \"url\": \"https://www.allrecipes.com/recipe/254877/roasted-spatchcocked-chicken-with-potatoes/\"\n",
|
208 |
+
" },\n",
|
209 |
+
" {\n",
|
210 |
+
" \"title\": \"Easy Baked Chicken Thighs\",\n",
|
211 |
+
" \"url\": \"https://www.allrecipes.com/recipe/235153/easy-baked-chicken-thighs/\"\n",
|
212 |
+
" },\n",
|
213 |
+
" {\n",
|
214 |
+
" \"title\": \"Crispy Baked Chicken Thighs\",\n",
|
215 |
+
" \"url\": \"https://www.allrecipes.com/recipe/258878/crispy-baked-chicken-thighs/\"\n",
|
216 |
+
" },\n",
|
217 |
+
" {\n",
|
218 |
+
" \"title\": \"Crispy and Tender Baked Chicken Thighs\",\n",
|
219 |
+
" \"url\": \"https://www.allrecipes.com/recipe/235151/crispy-and-tender-baked-chicken-thighs/\"\n",
|
220 |
+
" },\n",
|
221 |
+
" {\n",
|
222 |
+
" \"title\": \"Million Dollar Chicken\",\n",
|
223 |
+
" \"url\": \"https://www.allrecipes.com/recipe/233953/million-dollar-chicken/\"\n",
|
224 |
+
" },\n",
|
225 |
+
" {\n",
|
226 |
+
" \"title\": \"Simple Whole Roasted Chicken\",\n",
|
227 |
+
" \"url\": \"https://www.allrecipes.com/recipe/70679/simple-whole-roasted-chicken/\"\n",
|
228 |
+
" },\n",
|
229 |
+
" {\n",
|
230 |
+
" \"title\": \"Beer Can Chicken\",\n",
|
231 |
+
" \"url\": \"https://www.allrecipes.com/recipe/214618/beer-can-chicken/\"\n",
|
232 |
+
" },\n",
|
233 |
+
" {\n",
|
234 |
+
" \"title\": \"Air Fryer Chicken Thighs\",\n",
|
235 |
+
" \"url\": \"https://www.allrecipes.com/recipe/272858/air-fryer-chicken-thighs/\"\n",
|
236 |
+
" },\n",
|
237 |
+
" {\n",
|
238 |
+
" \"title\": \"Happy Roast Chicken\",\n",
|
239 |
+
" \"url\": \"https://www.allrecipes.com/recipe/214478/happy-roast-chicken/\"\n",
|
240 |
+
" }\n",
|
241 |
+
"]\n",
|
242 |
+
"\n"
|
243 |
+
]
|
244 |
+
}
|
245 |
+
],
|
246 |
+
"metadata": {
|
247 |
+
"kernelspec": {
|
248 |
+
"display_name": ".venv",
|
249 |
+
"language": "python",
|
250 |
+
"name": "python3"
|
251 |
+
},
|
252 |
+
"language_info": {
|
253 |
+
"codemirror_mode": {
|
254 |
+
"name": "ipython",
|
255 |
+
"version": 3
|
256 |
+
},
|
257 |
+
"file_extension": ".py",
|
258 |
+
"mimetype": "text/x-python",
|
259 |
+
"name": "python",
|
260 |
+
"nbconvert_exporter": "python",
|
261 |
+
"pygments_lexer": "ipython3",
|
262 |
+
"version": "3.10.6"
|
263 |
+
}
|
264 |
+
},
|
265 |
+
"nbformat": 4,
|
266 |
+
"nbformat_minor": 2
|
267 |
+
}
|