Skip to main content

No project description provided

Project description

Build Status

גamla is a functional programming library for python.

pip install gamla

Debugging anonymous compositions

gamla.compose(x, y, z) produces a new function which doesn't have a proper name. If x raises an exception, it is sometimes hard to figure out where this occurred. To overcome this, set the env variable GAMLA_DEBUG_MODE (to anything). This will cause the composition functions to give a name for the anonymous composition. The name would be a concatenation of its constituents' names, e.g. x_of_y_of_z. The name is given in a way that persists to the stack exceptions.

This is turned on only by flag because it incurs significant overhead so things might get slow.

Mixing asynchronous and synchronous code

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:

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.
  2. Download twine and give it your pypi credentials.
  3. Get pypi permissions for the project from its owner.
  4. python setup.py sdist bdist_wheel; twine upload dist/*; rm -rf dist;

Project details


Release history Release notifications | RSS feed

This version

34

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gamla-34.tar.gz (19.4 kB view details)

Uploaded Source

Built Distribution

gamla-34-py3-none-any.whl (89.5 kB view details)

Uploaded Python 3

File details

Details for the file gamla-34.tar.gz.

File metadata

  • Download URL: gamla-34.tar.gz
  • Upload date:
  • Size: 19.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for gamla-34.tar.gz
Algorithm Hash digest
SHA256 010accf450893dedeb30a1c7a7a1224c5f3488f9a83a6bc0c3858dbd06d70254
MD5 ea51f5c12ddf6545642639b33b1a02b4
BLAKE2b-256 14931fb0ff6b61739c4241690672db1a11c4ea194783e18fd141690a10fb2b2c

See more details on using hashes here.

File details

Details for the file gamla-34-py3-none-any.whl.

File metadata

  • Download URL: gamla-34-py3-none-any.whl
  • Upload date:
  • Size: 89.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.5

File hashes

Hashes for gamla-34-py3-none-any.whl
Algorithm Hash digest
SHA256 31980d7d985ed1dbc68842d8e8938cf0b07f59a899bd85ed4f51fc75486c18ba
MD5 779172d84771d19626ae965495328e8e
BLAKE2b-256 4ca34cc00606fdb4b82e8cbf1af52ab865912cdd4addcd578e637649f2b8d17d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page