Metadata-Version: 2.0
Name: url-for-s3
Version: 0.1.2
Summary: Python function that generates a URL to a given S3 resource.
Home-page: https://github.com/Jaza/url-for-s3
Author: Jeremy Epstein
Author-email: jazepstein@gmail.com
License: UNKNOWN
Platform: any
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3

url-for-s3
==========

Python function that generates a URL to a given S3 resource.

Example
-------

.. code:: python

    url_for_s3('static', bucket_name='my-cool-foobar-bucket',
               scheme='https', filename='pics/logo.png')

Will return:
https://my-cool-foobar-bucket.s3.amazonaws.com/static/pics/logo.png

Note: this function assumes that the given resource exists on S3 and is publicly accessible.

Based loosely on Flask-S3's `url_for()`.

For a complete, working Flask app that demonstrates url-for-s3 in action, have a look at `flask-s3-save-example <https://github.com/Jaza/flask-s3-save-example>`_.


