Metadata-Version: 2.1
Name: TextJustify
Version: 0.0.5
Summary: A text justify package
Home-page: https://github.com/mhhabib/TextJustify
Author: MH Habib
Author-email: mhrahman7096@gmail.com
License: MIT
Description: # A text alignment justification package.
        
        
        The text alignment justifies package will provide you four types of alignment.
        
        - Left (Default)
        - Right
        - Center
        - Justify both
        
        When you use the above three justification then maybe have a blank space and that space you can also fill the empty place with your own identifiers like `*` `#` or anything.
        
        ### Setup `TextJustify`
        
        
        ```bash
        pip install TextJustify
        ```
        
        # Usage
        
        
        ```python
        import TextJustify
        
        justify_text=TextJustify.justify_text(sample_text, width, align, fill)
        print(justify_text)
        ```
        
        Here `fill` is an optional value. If you don't pass any special symbol or identifier then it will use the default space.
        
        ```python
        
        sample_text = "Your text that you want to justify"
        width = 50 # Here 50 is an example value and it will be integer
        align =  "left" # Default is "left". Rest of the alignment are "right", "center", "justify"
        fill = " " # Default is a space. You can use your own like "*", "#" etc.
        
        ```
        
        
        CHANGE LOG
        -----------
        
        0.0.5 (February 9, 2021)
        ------------------------
        - Added documentations
Keywords: justify
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
