Naïve ML implementation of flashfill.
This repository is used as ML backend to create Google Spreadsheets Addon (Video Demo).
pip3 install virtualenv
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
FLASK_APP=app.py FLASK_ENV=development flask run
LOG_LEVEL = os.getenv("APP_LOG_LEVEL", "INFO")
LOG_FILE_NAME_PREFIX = f"console-{datetime.today().strftime('%Y%m%d')}"
- Chapter 11: Programming Collective Intelligence
- Heroku deploy: Getting Started on Heroku with Python