https://github.com/uduse/dc-food-search
https://github.com/uduse/dc-food-search
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/uduse/dc-food-search
- Owner: uduse
- Created: 2016-03-04T08:41:08.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-04T09:20:08.000Z (over 10 years ago)
- Last Synced: 2025-03-14T15:54:33.905Z (over 1 year ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DC Food Search
Search if a food is provided this week in DC at UC Davis. Search is done by scanning DC menu web pages, so it might not be accurate.
## Motivation
I miss menudo and basa fish from Cuarto too much ...
## Usage
`python dc_food_search.py *names`
Names is a list of food names that you want to find in this week DC menus.
Search a single dish:
```
$ python dc_food_search.py oatmeal
Menus successfully retrieved.
Cuarto has oatmeal! Check it out here: http://dining.ucdavis.edu/res-cuarto-menu.html
Segundo has oatmeal! Check it out here: http://dining.ucdavis.edu/res-segundo-menu.html
Tercero has oatmeal! Check it out here: http://dining.ucdavis.edu/res-tercero-menu.html
```
Search multiple dishes:
```
$ python dc_food_search.py oatmeal eggmeal fishmeal
Menus successfully retrieved.
Cuarto has oatmeal! Check it out here: http://dining.ucdavis.edu/res-cuarto-menu.html
Segundo has oatmeal! Check it out here: http://dining.ucdavis.edu/res-segundo-menu.html
Tercero has oatmeal! Check it out here: http://dining.ucdavis.edu/res-tercero-menu.html
Sadly no DC has eggmeal this week, forget about it so you may lose some weight.
Sadly no DC has fishmeal this week, forget about it so you may lose some weight.
```