Metadata-Version: 2.1
Name: stringbuilder.py
Version: 1.0.0
Summary: Functional String Building
Home-page: UNKNOWN
Author: Perzan
Author-email: PerzanDevelopment@gmail.com
License: UNKNOWN
Description: Example
        -------
        ```python
        import stringbuilder
        
        @stringbuilder
        def mystring():
            yield "foo"
            yield 1234
            yield '
        '
            yield object()
            yield '
        '
            yield "bar"
        
        print(mystring)
        ## foo1234
        ## <object object at 0xdeadbeefcafe>
        ## bar
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
