Miguel Grinberg

Results 484 comments of Miguel Grinberg

The section of the docs you are reading has a link to the SQLAlchemy documentation, where you can find details about these methods. They are listed here just as a...

Alchemical is a thin wrapper around SQLAlchemy. Anything you want to do with SQLAlchemy you can do with Alchemical, just get a session (which is a standard SQLAlchemy session) and...

You can use Alchemical with Flask and Flask-Migrate. There's even two examples that show how: https://github.com/miguelgrinberg/alchemical/tree/main/examples/flask-single-db https://github.com/miguelgrinberg/alchemical/tree/main/examples/flask-multi-db But this isn't async. You may have a misunderstanding with regards to how...

The async support in Flask is not very useful, so I don't intend to support it in Alchemical. I'm not sure if the `aio.Alchemical` class will work with it or...

I believe I have addressed the issues, so this is ready for a retest. Thanks.

Yes, this is my bug. There are some cleanup tasks that occur after the reconnection loop begins. The solution is that I need to wait to begin the reconnection until...

What did you do to trigger this error? Please be very specific to help me reproduce the error here.

I don't understand. You aren't doing anything in your disconnect handler with the `sid` value, so I don't see how this can cause an error. Please provide a complete a...

Unfortunately this isn't runnable code as I asked. I really have no way to reproduce this problem with your code. lease provide a simplified, but complete application (including the client...

The `max_http_buffer_size` parameter controls the largest size a message can have. This is a security feature to prevent your server from being attacked and rendered unusable. The default is (you...