sqlalchemy-media
sqlalchemy-media copied to clipboard
Another attachment extension for SqlAlchemy to manage assets which are associated with database models but you don't want to store them into the database
# problem I think the problem is caused by a conflict between `mockssh` and `paramiko`. by default, we don't have [MockSSH](https://pypi.org/project/MockSSH/) installed. (we don't have it on `requirements.txt`). after installing...
Hi! I want to add async APIs to the library. The first step is to move to httpx which is resembled in this PR. Also, I want to make sure,...
Is there any way to store the field as string containing the path of the file only, and not a mutable containing all the properties?
In the following scenario ``` class Icon(SA_Image): __auto_coercion__ = True __max_length__ = 1*MB __min_length__ = 1*KB __pre_processors__ = ( ImageAnalyzer(), ImageValidator( minimum=(16, 16), maximum=(600, 600), min_aspect_ratio=0.9, max_aspect_ratio=1.7777, # 16/9 content_types=('image/png',...
I am trying to store a docx file in S3 and its query metadata in postgres using `sqlalchemy-media`. My S3 provider is **not** AWS. I use Minio for testing and...
Hi @pylover , a nice piece of work! I am trying to make different sizes/widths of thumbnails e.g. width=30 or width=40. For that I am following the basic setup given...
(Currently thumbnails stored on default store)
I would like to generate and store crops of an image from coordinates (ie: there are objects in my images and I would like to retrieve their cropped image from...