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

38

Download files

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

Source Distribution

gamla-38.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

gamla-38-py3-none-any.whl (186.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: gamla-38.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.23.0 setuptools/49.3.1 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for gamla-38.tar.gz
Algorithm Hash digest
SHA256 e7911b0cdca725b29733280e30182beb835dd4704af1c7e8edd0ed1ddd615e2d
MD5 df6bb2d507ebecfa14ff66cb83cce11c
BLAKE2b-256 43461c1cd3fb45448152e004ed48bc25b7f80b5af3193f2cf520b9b4b510466b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gamla-38-py3-none-any.whl
  • Upload date:
  • Size: 186.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.4.2 requests/2.23.0 setuptools/49.3.1 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for gamla-38-py3-none-any.whl
Algorithm Hash digest
SHA256 3c72e06a736c49aaea111e9d9d28fa5e0bf5e058632251f75ce3e7274f8c9d7e
MD5 bc8cffa62f0dbf058107233b8c628458
BLAKE2b-256 2a058730172841a65ca1c7bb3d98688628a95d0963e7bf4bc90e60eec259ec5f

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