This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# you also need to download this file: https://github.com/luis-almeida/unveil/blob/master/jquery.unveil.js | |
# and place it in the same directory as this python file with the name "jquery.unveil.js" | |
import os | |
from io import BytesIO | |
from flask import Flask, Response, request, abort, render_template_string, send_from_directory | |
from PIL import Image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
from pprint import pprint as pp | |
from trello import TrelloClient | |
client = TrelloClient( | |
api_key='your-key', | |
api_secret='your-secret', | |
token='your-oauth-token-key', |