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
- Host: GitHub
- URL: https://github.com/andrewjprice/flask-excel-export
- Owner: andrewjprice
- Created: 2020-02-22T04:56:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-06T22:41:34.000Z (over 4 years ago)
- Last Synced: 2025-06-05T13:05:59.333Z (about 1 year ago)
- Topics: celery, flask, python, redis, s3
- Language: HTML
- Homepage:
- Size: 1.85 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask - Celery Example

## 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
```