Metadata-Version: 1.1
Name: teambition
Version: 0.1.0
Summary: Teambition Python API
Home-page: https://github.com/messense/teambition-api
Author: messense
Author-email: messense@icloud.com
License: UNKNOWN
Description: teambition-api
        ==============
        
        Teambition Python API
        
        阅读文档：\ http://teambition-api.readthedocs.org/zh_CN/latest/
        
        安装与升级
        ==========
        
        推荐使用 pip 进行安装:
        
        ::
        
            pip install teambition
        
        升级版本：
        
        ::
        
            pip install -U teambition
        
        基本用法
        ========
        
        .. code:: python
        
            # -*- coding: utf-8 -*-
            from __future__ import absolute_import, unicode_literals
            from teambition import Teambition
        
            client_key = 'Your client key'
            client_secret = 'You client secret'
            redirect_uri = 'http://localhost'
        
        
            tb = Teambition(client_key, client_secret)
        
            # 获取授权地址
            url = tb.oauth.get_authorize_url(redirect_uri)
        
            # 通过 code 获取 access_token
        
            tb.oauth.fetch_access_token('Your code')
        
            # 其它操作
        
        License
        -------
        
        The MIT License (MIT)
        
        Copyright (c) 2015 messense
        
        Permission is hereby granted, free of charge, to any person obtaining a
        copy of this software and associated documentation files (the
        "Software"), to deal in the Software without restriction, including
        without limitation the rights to use, copy, modify, merge, publish,
        distribute, sublicense, and/or sell copies of the Software, and to
        permit persons to whom the Software is furnished to do so, subject to
        the following conditions:
        
        The above copyright notice and this permission notice shall be included
        in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
        OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
        CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
        TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
        SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Keywords: Teambition,SDK
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
