django app using amazon aws s3 storage in stead of DB?
- by farble1670
new to python here so bear with me ...
i'm looking at django for a rapid prototype to a photo sharing app with an amazon aws s3 storage back end.
however, as far as i can tell, django is tailored toward the typical database MVC type of pattern. is there a way to for example provide a custom django model implementation that talks to s3 in stead of a DB? a custom DB engine? would either of these be practical, or am i looking in the wrong direction?
thanks.