Metadata-Version: 2.1
Name: WsseHeaders
Version: 0.0.7
Summary: A package to generate WSSE Headers
Home-page: https://github.com/light-bringer/wsse-headers
Author: Debapriya Das
Author-email: yodebu@gmail.com
License: MIT
Description: WsseHeaders: WSSE for Python™
        ==========================
        
        
        WsseHeaders is the only WSSE Token generation library for Python, safe for human
        consumption.
        
        
        ``` {.sourceCode .python}
        >>> import WsseHeaders
        >>> r = WsseHeaders.WsseToken(username="yodebu", orgName="yodebu", token="base64tokenstring")
        >>> r.generateHeaders()
        UsernameToken Username="yodebu", PasswordDigest="EU4mrjk9tD3AVl3N1oJ6Yc+PA4k=", Nonce="e52165a00ae24d62bd44adb96f7c95dd", Created="2018-10-16T19:51:43+00:00", Organization="EXAMPLE_ORG"
        ```
        
        optional parameter: ``` pad ``` which is defaulted to ``` False``` and takes only Boolean values.
        
        ``` {.sourceCode .python}
        >>> import WsseHeaders
        >>> r = WsseHeaders.WsseToken(username="yodebu", orgName="yodebu", token="base64tokenstring", pad=True)
        >>> r.generateHeaders()
        UsernameToken Username="yodebu", PasswordDigest="EU4mrjk9tD3AVl3N1oJ6Yc+PA4k=", Nonce="e52165a00ae24d62bd44adb96f7c95dd", Created="2018-10-16T19:51:43+00:00", Organization="EXAMPLE_ORG"
        ```
        
        
        WsseHeaders officially supports Python 3.0 and above.
        
        Installation
        ------------
        
        To install WsseHeaders, simply use [pipenv](http://pipenv.org/) (or pip, of
        course):
        
        ``` {.sourceCode .bash}
        $ pipenv install WsseHeaders
        ✨🍰✨
        ```
        
        
        Documentation
        -------------
        
        Fantastic documentation to be available shortly at
        <http://docs.python.org/>, for a limited time only.
        
        How to Contribute
        -----------------
        
        1.  Check for open issues or open a fresh issue to start a discussion
            around a feature idea or a bug. 
        2.  Fork [the repository](https://github.com/light-bringer/wsse-headers) on
            GitHub to start making your changes to the **master** branch (or
            branch off of it).
        3.  Write a test which shows that the bug was fixed or that the feature
            works as expected.
        4.  Send a pull request and bug the maintainer until it gets merged and
            published. :) Make sure to add yourself to
            [AUTHORS](https://github.com/light-bringer/wsse-headers/blob/master/AUTHORS.rst).
        
Keywords: WSSE Headers generation
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0, <4
Description-Content-Type: text/markdown
