-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.md.save.1
More file actions
56 lines (39 loc) · 2.09 KB
/
README.md.save.1
File metadata and controls
56 lines (39 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# The weekly meal planner
Beta version of a tool that generates a customizable meal plan out of a large dataset of screapped recipes
### Technology stack
Python (BeautifulSoup, pandas, numpy, dotenv, smtplib, email.mime), json, DigitalOcean.
### Inspiration
Grocery shopping takes time and effort, but unplanned grocerry shopping takes even longer. When we make meal plans, we reduce the number of visits to the supormarket and the money that we spend, and we can enhance the balance of our diet and be more creative in our cooking. Planning your weekly meal brings a lot of benefits but it can also be a time consuming and tiring process. This tood does the work for you.
After scraping over 10k recipes from the website [Link](http://www.recetasgratis.net), you can set up out preferences using the separate json file. The tool then will send you via email a selection of 7 meals and 7 dinners for hte week.
### Configuration
If you know me, and you'd like to have your name added to the distribution list of the weekly meal plan, let me know! On the other hand, you can also set the tool up in your own terminal. To do this, after cloning the repo, you'll need to create a file called .env and update it with the following information:

### Folder structure
```
└── project
├── data_exports
├── .gitignore
├── .env
├── practice.json
├── README.md
├── main.py
├── main_demo.py
├── notebooks
│ ├── 1_scrapper.ipynb
│ ├── 2_jsonfilter.ipynb
│ ├── 3_email.ipynb
│ └── 4_pipeline_demo.ipynb
├── p_email
│ ├── m_send.py
│ └── __init__.py
└── p_filter
├── m_filter.py
└── __init__py└── p_filter
| ├── m_filter.py
| └── __init__py
└── p_filter
├── m_filter.py
└── __init__py
```
>Don't forget to set up a `.env` file. This program requires a sender and recipient email to deliver the results.
### To Do