Metadata-Version: 2.1
Name: bloatier
Version: 0.1.2
Summary: Basic String Bloater/Debloater Algorithm.
Home-page: https://github.com/JohnLesterDev/bloatier
Author: John Lester Dev :>
Author-email: johnlesterincbusiness@gmail.com
License: UNKNOWN
Description: # Bloatier - A String Bloater/Debloater Algorithm
        
        Description: My custom __format__ __algorithm__ with _loosy_ RAM allocation
        and _terribly_ _huge_ time and space complexity that __bloats__ and __debloats__
        string and string-like types.
        
        ---
        
        ## Sample
        
        > Using bloat/debloat for basic stage format:
        
        ```python
        # Importing the package
        from bloatier import bloatier
        
        string_ = "This is a string"  # Our string to be bloated
        bloated_string = bloatier.bloat(string_)  # Bloated string
        
        # Print the bloated string
        print("Bloated String:\n", bloated_string)
        
        # Print the debloated string
        print("Debloated String\n", bloatier.debloat(bloated_string))
        ```
        
        > Note: You can also use bloats/debloats for multi-stage format. (if you have enough RAM :>)
        
        ---
        
        The string being used by the algorithm and the outputs are all stored
        in a dictionary "__obtain__" and can be acquired by using the __acquired__ function.
        
        There is a main __bloatier__ class and __5__ local functions related to the main class.
        
        - __bloatier__ class
            - _bloat_ method
            - _bloats_ method
            - _debloat_ method
            - _debloats_ method
            - _acquire_ method
        - _bloat_ function
        - _bloats_ function
        - _debloat_ function
        - _debloats_ function
        - _acquire_ function
        
        ---
        
Keywords: algorithm,string manipulation,conversion
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
