Metadata-Version: 1.1
Name: Flask-Slack
Version: 0.1.2
Summary: Slack extension for Flask.
Home-page: https://github.com/verycb/flask-slack
Author: VeryCB
Author-email: imcaibin@gmail.com
License: BSD
Description: Flask-Slack
        ============
        
        Flask-Slack is a Flask extension which makes it easy to interact with Slack slash commands.
        
        
        Installation
        ------------
        
        You can install Flask-Slack with pip::
        
            $ pip install flask-slack
        
        Or, with setuptools easy_install in case you didn't have pip::
        
            $ easy_install flask-slack
        
        
        Usage
        -----
        ::
        
            from flask_slack import Slack
        
        
            slack = Slack(app)
            app.add_url_rule('/', view_func=slack.dispatch)
        
        
            @slack.command('your_command', token='your_token',
                           team_id='your_team_id', methods=['POST'])
            def your_method(**kwargs):
                text = kwargs.get('text')
                return slack.response(text)
        
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
