sqlalchemy-file icon indicating copy to clipboard operation
sqlalchemy-file copied to clipboard

SQLAlchemy-file is a SQLAlchemy extension for attaching files to SQLAlchemy model and uploading them to various storage such as Local Storage, Amazon S3, Rackspace CloudFiles, Google...

Results 28 sqlalchemy-file issues
Sort by recently updated
recently updated
newest added

Good day. Encountered a weird behaviour while using SeaweedFS S3 API, specifically - SignatureDoesNotMatch error while setting host to localhost and port to 8333 (s3 port). At the same time,...

First of all, many thanks for creating and maintaining this library. It's my first opportunity to contribute to it, so I want to let you know that I appreciate your...

_File_ wrapper automatically adds extra content_type meta, which causes exception during file upload: `libcloud.common.types.InvalidCredsError: 'SignatureDoesNotMatchtx00000c4ed9d9304551ffa-0066c37cf0-dcdddbd4-kz-ala-1dcdddbd4-kz-ala-1-kz-ala-1' ` [Extra content_type meta is added inside _File_ wrapper, on line 113](https://github.com/jowilf/sqlalchemy-file/blob/main/sqlalchemy_file/file.py) ``` extra["meta_data"].update( {"filename":...

Hi and thanks for a great library! I've tried running the FastAPI example as-is, and I get the following error: _pydantic.errors.PydanticSchemaGenerationError: Unable to generate pydantic-core schema for . Set `arbitrary_types_allowed=True`...

Hello, I am working with this library and I have a profile_picture column with an "ImageField" type. I retrieved the S3 bucket and add it to the StoreManager. The loading...

from sqlalchemy_file import FileField class A(Base): file: Mapped[dict] = mapped_column(FileField, nullable=True) files = relationship( "B", back_populates="homework", passive_deletes=True, lazy="joined" ) class B(Base): a_id:Mapped[int] file: Mapped[dict] = mapped_column(FileField, nullable=True) a = relationship("A",...