Metadata-Version: 1.1
Name: pyupyun
Version: 0.1
Summary: Feature complete upyun REST client
Home-page: https://github.com/kols/upyun
Author: Kane Dou
Author-email: douqilong@gmail.com
License: Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Description: pyupyun - Feature complete upyun REST client
        ===
        
        .. code-block:: pycon
        
            >>> import upyun
            >>> client = upyun.UpYun(bucket='bucket', auth=('user', 'pass'), stype=upyun.const.SPACE_TYPE_FILE)
            >>> resp = client.put('/test/test.txt', open('/tmp/test.txt'))
            >>> print resp.success
            True
            >>> print resp.url
            http://bucket.b0.upaiyun.com/test/test.txt
        
        Compatible with [upyun REST API v1.5](http://static.b0.upaiyun.com/upyun_api_doc.pdf)
        
        Installation
        ------------
        
        .. code-block:: bash
        
            $ pip install pyupyun
        
        Documentation
        -------------
        
        https://pyupyun.readthedocs.org
        
        Test
        ----
        
        To run the tests, first install the dependencies
        
        .. code-block:: bash
        
            $ pip install -r requirements.txt
        
        Then fill in all the blank settings(documented) at the beginning part of
        `UpYunTestCase` class, which is inside `test/test_upyun.py`
        
        And run
        
        .. code-block:: bash
        
            $ py.test
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
