Skip to main content

A generic functional middleware infrastructure for Python.

Project description

Formation

A generic functional middleware infrastructure for Python.

Take a look:

from datetime.datetime import now
from hs_formation import wrap
from requests import get

def log(ctx, call):
    print("started")
    ctx = call(ctx)
    print("ended")
    return ctx

def timeit(ctx, call):
    started = now()
    ctx = call(ctx)
    ended = now() - started
    ctx['duration'] = ended
    return ctx

def to_requests(ctx):
    get(ctx['url'])
    return ctx

fancy_get = wrap(to_requests, middleware=[log, timeit])
fancy_get({'url':'https://google.com'})

Quick Start

Install using pip/pipenv/etc. (we recommend poetry for sane dependency management):

$ poetry add formation

Best Practices

A context object is a loose bag of objects. With that freedom comes responsibility and opinion.

For example, this is how Formation models a requests integration, with data flowing inside context:

  • It models a FormationHttpRequest which abstracts the essentials of making an HTTP request (later shipped to requests itself in the way that it likes)
  • It tucks FormationHttpRequest under the fmtn.req key.
  • Additional information regarding such a request is kept alongside fmtn.req. For example a request id is kept in the req.id key. This creates a flat (good thing) dict to probe. The reason additional data does not have the fmtn prefix is that you can always build your own that uses a different prefix (which you cant say about internal Formation inner workings).

added support for async http client via aio_http

You can use this via for_aio_http

Thanks:

To all Contributors - you make this happen, thanks!

Copyright

Copyright (c) 2018 @jondot. See LICENSE for further details.

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

hs-formation-4.2.2.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

hs_formation-4.2.2-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file hs-formation-4.2.2.tar.gz.

File metadata

  • Download URL: hs-formation-4.2.2.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.7.2 Darwin/19.6.0

File hashes

Hashes for hs-formation-4.2.2.tar.gz
Algorithm Hash digest
SHA256 e8588aa57cee4c347e53a51d6a9647f2fd3ee44eb80b06e84d85c9c93dadc79a
MD5 a4711a6a1a6a36f347b1a59c9caf86cf
BLAKE2b-256 c61fca6b5b9455fa5fdfd497690d13b343f1cbe263e3ee51bb928b6cbff8e5c4

See more details on using hashes here.

File details

Details for the file hs_formation-4.2.2-py3-none-any.whl.

File metadata

  • Download URL: hs_formation-4.2.2-py3-none-any.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.7.2 Darwin/19.6.0

File hashes

Hashes for hs_formation-4.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 057327697ae84d15c0503317174812b35ebf80dfb32564bf18493930634d28bc
MD5 5dcf757af8bcb7dd8aeaa056eb9817ef
BLAKE2b-256 db74d21979acb4da4f095e62aa6e0a56895696daa00db6b5a786aa848a28caec

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