-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GridFS support #50
Comments
Hello thanks for the feedback 🎉. Basically, I think it should be quite easy to use GridFS externally. I would really like to integrate GridFS Files to odmantic but I think it should come with Lazy loading and maybe streaming capabilities. This will probably be a good time to address this once lazy references will be handled 😉 |
Hi, thanks for your quick answer. Adding object Id(s) to reference files could be a good way to start. Lazy loading is already provided by motor AFAIK and streaming shouldn't be very difficult. I was thinking about a thin layer for searching / getting files and accessing streams, something like (to be consistent with existing API): ...
from fastapi.responses import StreamingResponse
from odmantic import AIOEngine, File
engine = AIOEngine()
@app.get("/filestreams/", name: Optional[str]):
file = await engine.find_one(File, File.name == "myfile.pdf")
return StreamingResponse(await file.open_download_stream(), media_type=file. content_type) so odmantic.File would really be a Model like class with some extras. It seems that the attributes are fixed anyway (name/filename, content_type, length, md5. upload_date, closed, chunksize, metadata) but taking into account AsyncIOMotorGridFSBucket , AsyncIOMotorGridIn, AsyncIOMotorGridOut there are a lot of methods (delete, rename, open_download_stream, open_upload_stream, download_to_stream, upload_from_stream, abort, close, set, write, writelines, read, readline, close). Regards. |
Any news about this? I am really interested in using ODMantic with GridFS support. |
Hello. Thanks for this great piece of software. The docs seems to me quite complete. My congrats.
I considering to use odmantic and I would like to store files in MongoDB. Could you provide an example? What do I have to take into account?
Thanks in advance.
The text was updated successfully, but these errors were encountered: