Metadata-Version: 1.1
Name: saklient
Version: 0.0.4.3
Summary: SAKURA Internet API Client Library
Home-page: http://cloud.sakura.ad.jp/
Author: SAKURA Internet Inc.
Author-email: dev-support-ml@sakura.ad.jp
License: MIT
Description: SAKURA Internet API Client Library for Python
        =============================================
        
        This library gives you an easy interface to control your resources on
        `SAKURA Cloud <https://secure.sakura.ad.jp/cloud/>`__.
        
        Table of Contents
        -----------------
        
        -  `Requirements <#requirements>`__
        -  `How to use this library in your
           project <#how-to-use-this-library-in-your-project>`__
        -  `Examples <#examples>`__
        -  `Copyright and license <#copyright-and-license>`__
        
        Requirements
        ------------
        
        -  Python 2.7 or 3.4
        
        How to use this library in your project
        ---------------------------------------
        
        .. code:: bash
        
            # Install the package
            pip install saklient
        
            # Edit your code
            cd YOUR/PROJECT/ROOT
            vim YOUR-CODE.py
        
        .. code:: python
        
            from saklient.cloud.api import API
        
            api = API.authorize(token, secret, zone)
            # ZONE: "is1a" (Ishikari 1st zone), "is1b" (Ishikari 2nd zone), "tk1v" (Sandbox)
            # "tk1v" is recommended for tests
        
            # ...
        
        Examples
        --------
        
        Code examples are available
        `here <http://sakura-internet.github.io/saklient.doc/>`__.
        
        Copyright and license
        ---------------------
        
        Copyright (C) 2014-2015 SAKURA Internet, Inc.
        
        This library is freely redistributable under `MIT
        license <http://www.opensource.org/licenses/mit-license.php>`__.
        
Keywords: cloud
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
