fastapi-storages icon indicating copy to clipboard operation
fastapi-storages copied to clipboard

FastAPI backend storages and ORM extensions

Results 10 fastapi-storages issues
Sort by recently updated
recently updated
newest added

Hello guys, I haven't found any info about this error in web, so writing here... Some days ago I tried to make a query in SQLAlchemy and filter FileType field...

https://docs.djangoproject.com/en/4.2/ref/models/fields/#filefield

Hi! I am newbee at FastApi and s3, but when i send file (from fastapi Swagger) to my endpoint, i have next traceback: ``` ... File "/usr/local/Cellar/[email protected]/3.9.19/Frameworks/Python.framework/Versions/3.9/lib/python3.9/email/message.py", line 459, in...

Some S3 storage requires using different signature versions. Boto3 defines this as a configuration item. https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html Some examples are: - EMC ECS - Vast Object Storage

Hi, how is the same file name supperted? as I tried it did not check if a file with the same name exists and just over writed it. can you...

[fastapi_storages.zip](https://github.com/user-attachments/files/18191145/fastapi_storages.zip) sorry, i not have enough time to create PR

currently, I need to specify both like this: ```py class CustomS3Storage(S3Storage): AWS_S3_BUCKET_NAME: str = os.environ.get("AWS_S3_BUCKET_NAME", "") AWS_S3_ENDPOINT_URL: str = os.environ.get("AWS_S3_ENDPOINT_URL", "") AWS_S3_USE_SSL: bool = not settings.DEBUG AWS_DEFAULT_ACL: str = "public-read"...

changes: - [X] removed `boto3` from main dependencies to reduce base install footprint for non-S3 users - [X] added `[project.optional-dependencies.s3]` section with updated `boto3` version - [X] changed test import...

Hello, I've customized this project a bit and would consider submitting patches here. Would you be interested in: - AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY should default to None and not get passed...