https://github.com/spoqa/sqlalchemy-imageattach-boto3
SQLAlchemy-ImageAttach AWS S3 Store with boto3
https://github.com/spoqa/sqlalchemy-imageattach-boto3
Last synced: 21 days ago
JSON representation
SQLAlchemy-ImageAttach AWS S3 Store with boto3
- Host: GitHub
- URL: https://github.com/spoqa/sqlalchemy-imageattach-boto3
- Owner: spoqa
- License: mit
- Created: 2020-03-09T06:18:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-13T02:08:55.000Z (over 6 years ago)
- Last Synced: 2025-02-23T11:03:04.761Z (over 1 year ago)
- Language: Python
- Size: 10.7 KB
- Stars: 2
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SQLAlchemy-ImageAttach-boto3
[](https://pypi.org/project/sqlalchemy-imageattach-boto3/)
[](LICENSE)
SQLAlchemy-ImageAttach AWS S3 Store with boto3
Since the `S3Store` of [SQLAlchemy-ImageAttach](https://github.com/dahlia/sqlalchemy-imageattach)
uses HTTP API and AWS Signature Version 4 to get/put images to S3, AWS access
key and secret key is required. But if an application does not have access key
(i.e. given access by AWS IAM Role), the application cannot use `S3Store`. So
SQLAlchemy-ImageAttach-boto3 offers `Boto3S3Store`, reimplemented `S3Store` with
[boto3](https://github.com/boto/boto3), so that the application can use various
credential sources that boto3 offers.
## Installation
Available on [PyPI](https://pypi.org/project/sqlalchemy-imageattach-boto3/):
```sh
$ pip install SQLAlchemy-ImageAttach-boto3
```