Metadata-Version: 1.1
Name: dadard_apis_common_pack
Version: 1.7
Summary: package to interact with the Main API of dadard.fr
Home-page: http://dadard.fr:8010/dadard/DadardApisCommonPack.git
Author: Florian Charpentier
Author-email: florian.charpentier@epita.fr
License: WTFPL
Description: DARARD.FR COMMON API PACK
        -------------------------
        
        This package is used by the APIs deployed on ``dadard.fr``.
        
        It calls the Main API to check the subscriptions and the profiles' key.
        
        Install it this way : ``pip install dadard-apis-common-pack``
        
        You can import the package in your code this way :
        
        .. code:: python
        
            from CommonPack import CommonCaller
        
            profile_key = 'some_private_key'
        
            # check if the key is associated to a valid user
            CommonCaller.check_profile_key(profile_key)
        
            # check if the api given has been subscribed by this key
            CommonCaller.check_is_subscribed(profile_key, api_name)
        
            # check if the api given has not been subscribed by this key
            CommonCaller.check_is_not_subscribed(profile_key, api_name)
        
        
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: Freeware
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
