Gilbert Brault

Results 56 comments of Gilbert Brault

**The non debug** When I launch my app: `flask run -h 0.0.0.0 -p 5000` If I get connected to the server, as I am not authenticated with flask-appbuilder, the connection...

**The debug** When I launch my app: flask run -h 0.0.0.0 -p 5000 --debug If I connect with the browser I get this in the Flask log: ``` 2023-09-13 09:42:50,311:INFO:werkzeug:172.18.0.12...

If I authenticate, everything works great. But when I quit the browser, I get the same message again.

@miguelgrinberg if you need some more details, don't hesitate to ask

This is the freeze on Linux, where I have the issue ``` aiohttp==3.8.5 aiosignal==1.3.1 anyio==3.7.1 apispec==5.2.2 argon2-cffi==21.3.0 argon2-cffi-bindings==21.2.0 arrow==1.2.3 asttokens==2.2.1 async-lru==2.0.3 async-timeout==4.0.2 attrs==23.1.0 Babel==2.12.1 backcall==0.2.0 beautifulsoup4==4.12.2 binaryornot==0.4.4 bleach==6.0.0 blinker==1.6.2 certifi==2023.7.22...

Something I just notice is that I don't have the error on windows on my dev computer here is the freeze for windows ``` (venv) PS D:\Dev\Ilex Projects\BBFTA> pip freeze...

Thanks @miguelgrinberg , will do!

Or best just put the code of the function here `def lrtd_parse_page(document,callback,context): """Parse page and yield text token left to right and top down (lrtd) :param document: open stream to...

Here is the final code ``` @classmethod def _close(cls, descriptor): if isinstance(descriptor, Connection): conn = descriptor else: conn = cls.connections.get(descriptor) or cls.connections.get( descriptor.lower() # or cls.connections[descriptor] ) if not conn:...