Metadata-Version: 1.1
Name: autoslack
Version: 0.0.1.dev1
Summary: AutoSlack is a simple module designed to automate some tasks for http://slack.com.
Home-page: https://github.com/pythonjamaica/autoslack
Author: David Bain
Author-email: pigeonflight@gmail.com
License: MIT
Description: AutoSlack
        ============
        
        AutoSlack is a simple module designed to automate some tasks for http://slack.com.
        Currently it includes an invite method for automatically inviting persons
        to a Slack community.
        
        Installation
        --------------
        ::
        
          pip install autoslack
        
        (you could also simply add autoslack to your requirements.txt, setup.py or buildout file)
        
        Usage
        ---------
        To use this you will need to generate a token by visiting https://api.slack.com/web#authentication, the token is passed to the autoslack.invite() method.
        
        .. image:: https://github.com/PythonJamaica/autoslack/raw/master/slacktoken.png
         
        The invite() method returns feedback from the Slack API in json format
        ::
        
            import autoslack
            output = autoslack.invite(group="SLACKCOMMUNITYNAME",
                            token="XXXXXXX",
                            firstname="XXXXXXXX",
                            lastname="XXXXXXX",
                            emailaddress="XXXXXXX",
                            channels=['XXXXX','XXXXX']
                            )
            print(output)
        
        .. note:: The `channels` argument is optional.
        
        A script like the one above would give output similar to this
        ::  
        
            {u'ok': True}
        
Keywords: slack inviter automator
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
