Metadata-Version: 1.1
Name: SwampDragon-auth
Version: 0.1.0
Summary: Access signed in django users in routers
Home-page: https://github.com/jonashagstedt/swampdragon-auth
Author: Jonas Hagstedt
Author-email: hagstedt@gmail.com
License: BSD
Description: Swamp Dragon auth
        =================
        
        # Installation
        ```pip install swampdragon-auth```
        
        
        # Django settings.py file
        Add the following code to your settings file:
        
            SOCKJS_CLASSES = (
                ('swampdragon_auth.socketconnection.HttpDataConnection', '/data'),
            )
        
        
        To access a signed in user in your router:
        
            self.connection.get_user()
            
        or alternatively
        
            self.connection.user
            
        The results are the same.
        
Keywords: SwampDragon,SwampDragon-auth,auth,authentication
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
