An open API service indexing awesome lists of open source software.

https://github.com/spk/flask-recipes

Import recipes into flask web app
https://github.com/spk/flask-recipes

flask-web python recipes

Last synced: 16 days ago
JSON representation

Import recipes into flask web app

Awesome Lists containing this project

README

        

# flask-recipes

Import recipes into flask web app.

## Setup

```
sudo apt install python-dev python-pip virtualenv
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
```

Create database:

```
python db_manage.py up
```

Run:

```
python run.py || foreman start
```

Goto http://127.0.0.1:5000/

## Import

```
celery --A app.tasks worker
sh download-recipes.sh
python import_recipes.py
```

## Tests

```
pytest
```

## Resources

* http://microformats.org/wiki/recipe-formats

## License

The MIT License

Copyright (c) 2015-2020 Laurent Arnoud