Metadata-Version: 2.1
Name: emarsysauthenticator
Version: 0.0.1
Summary: Python helper to easily create X-WSSE header for Authentication with Emarsys RESTful API
Home-page: https://github.com/datapip/emarsysauthenticator
Author: Philipp Jaeckle
Author-email: p.a.jaeckle@gmail.com
License: UNKNOWN
Description: # emarsysauthenticator
        Python helper to easily create X-WSSE header for Authentication with Emarsys RESTful API
        
        ## Usage
        ```python
        import emarsysauthenticator as ea
        
        # For authentication with Emarsys RESTful API the user name and secret is needed
        user_name = 'account_name001'
        user_secret = 'abc123def456'
        
        # Create X_WSSE header
        xwsse_header = ea.create_xwsse_header(user_name, user_secret)
        
        # Make request
        response = requests.request('GET', 'https://api.emarsys.net/api/v2/email', headers=xwsse_header)
        ```
        
        ## Contribution
        I am thankful for any feedback and improvements.
        
        ## License
        This project is licensed under MIT License - see the [LICENSE.md](https://github.com/datapip/emarsysauthenticator/blob/master/LICENSE) file for details 
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
