Metadata-Version: 2.1
Name: hsl-builder
Version: 0a1
Summary: HSL Builder for creating hsl elements
Home-page: https://github.com/hellohaptik/python-hsl
License: MIT
Description: ## HSL Builder
        
        Python pip package for creating HSL Elements.
        
        #### Usage:
        ```python
        #import hsl builder
        from hsl_builder import Button
        from hsl_builder.Elements import Actionable, ActionableType, URI
        
        # Create a button
        button = Button("Title")
        
        # Create link actionable
        actionable = Actionable("actionable text", ActionableType.APP_ACTION, URI.LINK)
        actionable.payload = {
            'url': 'https://www.haptik.ai'
        }
        # Add actionable to button
        button.actionables.append(actionable)
        
        # generate hsl for our button object
        hsl = button.to_hsl()
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
