sqlalchemy-imageattach
sqlalchemy-imageattach copied to clipboard
SQLAlchemy extension for attaching images to entities.
I see this test failure when running them against sqlalchemy 1.4.18: ``` sqlalchemy_imageattach/migration.py:5: in from sqlalchemy.ext.declarative.api import DeclarativeMeta E ModuleNotFoundError: No module named 'sqlalchemy.ext.declarative.api' ``` https://docs.sqlalchemy.org/en/14/orm/extensions/declarative/api.html
Relationships defined by `image_attachment()` cannot be gathered using `joinedload()`. We seem to need to work something on attribute instrumental implementation.
I am trying to use `imageattach`, and I do not really understand how it should work, how dis/similar it is to just a normal `relationship`. Below is a snippet of...
I was interested in using this repository, but it seems to be no longer maintained and hasn't been touched in roughly 2 years. Is this correct? Also has anyone found...
When using Multiple Image Sets generate_thumbnail() only create a thumbnail to the first image. This is happening because generate_thumbnail() thinks a thumbnail was already generated and return the thumbnail of...
I might not use the library as expected, but I could not find a way to use the `find_thumbnail` method on a `ImageSubset` object (returned by `get_image_set`). I get the...
Faced an issue that session state be corrupted due to `BaseImageQuery._stored_images` and `._deleted_images` are accessed via class level when we use gevent-based WSGI container and it gets high workload. To...
Getting unique path for image changing is useful, but missing feature (though it is able to be implemented in user side) This patch includes breaking changes: - Any user customized...
I would like to have a general idea of the work required to replace the dependency of `wand` by something else? My project already requires `cv2` and I would like...