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

https://github.com/andrewjprice/flask-excel-export

Simple Flask app with Redis and Celery to generate sample Excel reports
https://github.com/andrewjprice/flask-excel-export

celery flask python redis s3

Last synced: about 2 months ago
JSON representation

Simple Flask app with Redis and Celery to generate sample Excel reports

Awesome Lists containing this project

README

          

# Flask - Celery Example

![](excel-report-generator.gif)

## Steps
1. Add AWS S3 credentials in app.py

2. Install dependencies
```
pip install -r requirements.txt (in virtualenv)
```

3. Start Redis
```
sh ./run-redis
```

4. Start Celery Worker
```
celery worker -A app.celery --loglevel=info
```

5. Run app.py
```
python app.py
```