Metadata-Version: 2.1
Name: sqlalchemy-imageattach-boto3
Version: 0.1.1
Summary: SQLAlchemy-ImageAttach AWS S3 Store with boto3
Home-page: https://github.com/spoqa/sqlalchemy-imageattach-boto3
License: MIT
Author: Spoqa Creators
Author-email: dev@spoqa.com
Maintainer: rusty
Maintainer-email: rusty@spoqa.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Multimedia :: Graphics
Requires-Dist: SQLAlchemy-ImageAttach (>=1.1.0,<1.2.0)
Requires-Dist: boto3 (>=1.11,<2.0)
Project-URL: Repository, https://github.com/spoqa/sqlalchemy-imageattach-boto3
Description-Content-Type: text/markdown

# SQLAlchemy-ImageAttach-boto3

[![PyPI version badge](https://badgen.net/pypi/v/sqlalchemy-imageattach-boto3)](https://pypi.org/project/sqlalchemy-imageattach-boto3/)
[![PyPI license badge](https://badgen.net/pypi/license/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
```

