AK
AK
Using the example I get this: htmlmin = HTMLMIN(app, remove_comments=False, remove_empty_space=True, disable_css_min=True) TypeError: **unexpected keyword argument 'disable_css_min'** Also, when I install via pip, I get this: **Using legacy setup.py install...
Hi @miguelgrinberg, how can I test this works as expected? I tried to locally via two different networks with different IPs and was didn't see the session clear. Does this...
Achieved it this way, but it would be nice if there was an option within flask-debugtoolbar to toggle the use between the two: ```python # https://pypi.org/project/flask-debugtoolbar-sqlalchemy/ # https://git.sr.ht/~ihabunek/flask_debugtoolbar_sqlalchemy/tree/master # Remove...
This is not an issue but a suggestion for decoding a JWT (hopefully, it helps): The readme example shows how to use AccessTokenVerifier to validate an access token. However, if...
I followed the examples in the documentation and noticed that when a custom domain is provided in AWS Cognito and the AWS_COGNITO_DOMAIN config is set in Flask with the same...
The following `redis.ConnectionPool.from_url(config.REDIS_URL)` works with Heroku's REDIS_URL, but due to their [TLS changes](https://devcenter.heroku.com/articles/connecting-heroku-redis#connection-permissions), I was unable to connect using `create_pool(RedisSettings().from_dsn(config.REDIS_URL))` which led to the following SSLCertVerificationError error: ``` ssl.SSLCertVerificationError: [SSL:...