Skip to main content

pure effects for Python

Project description

Effect

https://travis-ci.org/python-effect/effect.svg?branch=master https://img.shields.io/pypi/v/effect.svg

Effect is a library for helping you write purely functional code by isolating the effects (that is, IO or state manipulation) in your code. Documentation is available at https://effect.readthedocs.org/, and its PyPI page is https://pypi-hypernode.com/pypi/effect.

It supports Python 2.7, 3.4 and 3.5 as well as PyPy.

You can install it by running pip install effect.

https://radix.github.io/effect/sigh-defects.png

What Is It?

Effect lets you isolate your IO and state-manipulation code.

The benefits of this are many: first, the majority of your code can become purely functional, leading to easier testing and ability to reason about behavior. Also, because it separates the specification of an effect from the performance of the effect, there are two more benefits: testing becomes easier still, and it’s easy to provide alternative implementations of effects.

Effect is somewhat similar to “algebraic effects”, as implemented in various typed functional programming languages. It also has similarities to Twisted’s Deferred objects.

Example

A very quick example of using Effects:

from __future__ import print_function
from effect import sync_perform, sync_performer, Effect, TypeDispatcher

class ReadLine(object):
    def __init__(self, prompt):
        self.prompt = prompt

def get_user_name():
    return Effect(ReadLine("Enter a candy> "))

@sync_performer
def perform_read_line(dispatcher, readline):
    return raw_input(readline.prompt)

def main():
    effect = get_user_name()
    effect = effect.on(
        success=lambda result: print("I like {} too!".format(result)),
        error=lambda e: print("sorry, there was an error. {}".format(e)))

    dispatcher = TypeDispatcher({ReadLine: perform_read_line})
    sync_perform(dispatcher, effect)

if __name__ == '__main__':
    main()

Effect takes what we call an intent, which is any object. The dispatcher argument to sync_perform must have a performer function for your intent.

This has a number of advantages. First, your unit tests for get_user_name become simpler. You don’t need to mock out or parameterize the raw_input function - you just call get_user_name and assert that it returns a ReadLine object with the correct ‘prompt’ value.

Second, you can implement ReadLine in a number of different ways - it’s possible to override the way an intent is performed to do whatever you want.

For more information on how to implement the actual effect-performing code, and other details, see the documentation. There is also a full example of interacting with the user and using an HTTP client to talk to the GitHub API in the effect-examples repository.

Videos

Some talks have been given about Effect.

Thanks

Thanks to Rackspace for allowing me to work on this project, and having an excellent open source employee contribution policy

Authors

Effect was originally written by Christopher Armstrong, but now has contributions from the following people:

IRC

There is a #python-effect IRC channel on irc.freenode.net.

See Also

For integrating Effect with Twisted’s Deferreds, see the txEffect package (pypi, github).

Over the past few years, the ecosystem of libraries to help with functional programming in Python has exploded. Here are some libraries I recommend:

  • pyrsistent - persistent (optimized immutable) data structures in Python

  • toolz - a general library of pure FP functions

  • fn.py - a Scala-inspired set of tools, including a weird lambda syntax, option type, and monads

License

Effect is licensed under the MIT license:

Copyright (C) 2014 Christopher Armstrong

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

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

Source Distribution

effect-0.12.0.tar.gz (34.3 kB view details)

Uploaded Source

Built Distribution

effect-0.12.0-py2.py3-none-any.whl (42.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file effect-0.12.0.tar.gz.

File metadata

  • Download URL: effect-0.12.0.tar.gz
  • Upload date:
  • Size: 34.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for effect-0.12.0.tar.gz
Algorithm Hash digest
SHA256 f43322b269b2dca0c15856f090b9167d8499bf474ec64696c80a508299d51f69
MD5 7360841ee6dce3cb70f3b55daa4c90b9
BLAKE2b-256 e0489b8f44c0ce230cb88abf1addc3efb266c2df02a325c8bf453c7a0de0b374

See more details on using hashes here.

Provenance

File details

Details for the file effect-0.12.0-py2.py3-none-any.whl.

File metadata

  • Download URL: effect-0.12.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for effect-0.12.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8a1ea685ace578eb0acc5321133f17f3bc298d0a64991c1c8068ee48a39d4e41
MD5 1ff210717bcf0272437321f777eb72e7
BLAKE2b-256 b3a799751583f570330e0835b5a0b82c20a6994bce81b82979f2042b0ec01972

See more details on using hashes here.

Provenance

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