Metadata-Version: 2.0
Name: fynd-tornado-alohomora
Version: 0.5.0
Summary: Fynd Centralized auth system.
Home-page: https://gofynd.com/
Author: Om Prakash
Author-email: omprakash@gofynd.com
License: MIT
Keywords: Fynd Auth Integrator
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: redis
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

Fynd Alohomora Package
======================

A python package for Fynd Alohomora connector.
Fynd alohomora is the centralized Authentication system for several applications of Fynd.


Usage
=====
**Import the module

from alohomora import check_if_authenticated

** Use it as a decorator

check_if_authenticated(state='some_state', permission='some_permission')
def some_method()
    """
    Your code
    """
    return something

