Metadata-Version: 2.0
Name: django-selectel-storage
Version: 0.1
Summary: This application allows you easily save media and static files into selectel cloud storage
Home-page: UNKNOWN
Author: Mikhail Porokhovnichenko
Author-email: marazmiki@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Requires-Dist: requests
Requires-Dist: selectel-api

=======================
django-selectel-storage
=======================


.. image:: https://badge.fury.io/py/django-selectel-storage.png
    :target: http://badge.fury.io/py/django-selectel-storage

.. image:: https://travis-ci.org/marazmiki/django-selectel-storage.png?branch=master
    :target: https://travis-ci.org/marazmiki/django-selectel-storage

.. image:: https://coveralls.io/repos/marazmiki/django-selectel-storage/badge.png?branch=master
    :target: https://coveralls.io/r/marazmiki/django-selectel-storage?branch=master

.. image:: https://pypip.in/d/django-selectel-storage/badge.png
    :target: https://pypi.python.org/pypi/django-selectel-storage


This application allows you easily save media and static files into Selectel cloud storage.

Dependencies
------------

* `requests <http://docs.python-requests.org/en/latest/>`_ library
* `selectel-api <https://pypi.python.org/pypi/selectel-api>`_ by Kirill Goldshtein

Installation
------------

1. Install the package

.. code:: bash

    pip install django-selectel-storage


2. Add to your settings module:

.. code:: python

    DEFAULT_STORAGE = 'django_selectel_storage.storage.SelectelStorage'
    SELECTEL_CONTAINER_NAME = 'container_name'
    SELECTEL_PASSWORD = 'container_password'
    SELECTEL_CONTAINER_URL = ''


Caveats
-------

* In python 3.x ``ContentFile`` with text mode content (not binary one) will causes ``TypeError`` due ``requests`` restrictions



