Metadata-Version: 2.1
Name: stringbuilder.py
Version: 1.0.1
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 '\n'
            yield object()
            yield '\n'
            yield "bar"
        
        print(mystring)
        ## foo1234
        ## <object object at 0xdeadbeefcafe>
        ## bar
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
