Metadata-Version: 2.1
Name: gamla
Version: 31
Summary: UNKNOWN
Home-page: UNKNOWN
License: UNKNOWN
Description: [![Build Status](https://travis-ci.com/hyroai/gamla.svg?branch=master)](https://travis-ci.com/hyroai/gamla)
        
        גamla is a functional programming library for python.
        
        `pip install gamla`
        
        ## `async` just works
        
        Most functions in this lib will work seamlessly with `async` and regular functions, and allow the developer to focus on the logic instead of deciding where to place an `await`.
        
        For example:
        
        ```python
        import asyncio
        
        import gamla
        
        
        def increment(i):
            return i + 1
        
        
        async def increment_async(i):
            asyncio.sleep(1)
            return i + 1
        
        
        async def run():
            mixed_composition = gamla.compose_left(increment, increment_async, increment)
            return await mixed_composition(0)  # returns 3!
        ```
        
        ## Releasing a new  version
        
        1. Create a pypi account.
        1. Download twine and give it your pypi credentials.
        1. Get pypi permissions for the project from its owner.
        1. `python setup.py sdist bdist_wheel; twine upload dist/*; rm -rf dist;`
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
