Metadata-Version: 2.1
Name: tryton-filestore-s3
Version: 0.2.0
Summary: Store Tryton files on S3 AWS Storage.
Home-page: https://github.com/gcoop-libre/tryton-filestore-s3
Author: gcoop
Author-email: info@gcoop.coop
License: GPL-3
Keywords: tryton s3 aws storage attachments
Platform: Posix; MacOS X; Windows
Classifier: Framework :: Tryton
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet
License-File: LICENSE

Tryton FileStore S3 AWS Backend
===============================

S3 AWS backend for the Tryton application framework.

In order to configure the S3 Amazon you should modify your trytond
configuration file to include the `tryton_filestore_s3.FileStoreS3` as class
of the database section. Also you need to specify the s3 credentials
with the access_key, secret_key and bucket values.

An example configuration file looks like::

    [database]
    class=tryton_filestore_s3.FileStoreS3
    access_key=access-key-s3
    secret_key=secret-key-s3
    bucket=bucket-id-here

Once you have specified the config file, everything should work out of the
box and you should see your attachments created on the S3 bucket.

Thanks
------
This module was developed by gcoop in association with Gotsho. Thanks
Gotsho for sharing this feature.

This code is based on the tryton-filestore-gs backend implementation.


