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