A forward-oriented programming paradigm for Python.
Project description
Implements
forward-oriented programming
in Python. This shares configuration arguments across multiple components
and determines their values after the main business logic.
Dependencies: makefun
Developer: Emmanouil (Manios) Krasanakis
Contant: maniospas@hotmail.com
Features
- Adapt arguments to usage context
- Argument sharing between methods
- Speed up library development
- Easy adoption with decorators
Quickstart
Enable lazy execution and automatically annotate arguments with defaults as aspects:
from pyfop import lazy, autoaspects
@lazy
@autoaspects
def affine(x, scale=1, offset=0):
return x*scale + offset
Produce results with python code:
GM = (affine(2)*affine(8))**0.5
Set aspect values of previous code:
print(GM(scale=3)) # 12
Advanced features
Internal call of lazy methods while exposing their aspects.
@lazy
@autoaspects
def gm(x, y, affine=affine): # pass the method as an argument
return (affine(x)*affine(y))**0.5
GM = gm(2, 8)
print(GM(scale=3)) # 12
Print list of aspects.
print(GM.get_input_context(scale=3))
# context:
# - scale:
# value: 3,
# priority: Priority.HIGH
# shares: 1
# - offset:
# value: 1,
# priority: Priority.INCREASED
# shares: 4
Aspects are shared between everything contributing to the result.
@lazy
@autoaspects
def square(x, scale=1):
return scale*x*x
print(affine(2)(scale=2)) # 4
print((affine(2)+square(1))(scale=2)) # 5
Priority-based selection between defaults.
@lazy
def logpp(x, offset=Aspect(1, Priority.INCREASED)):
import math
return math.log(x+offset)/math.log(2)
result = affine(2)+log(3)
print(result(scale=2)) # 5+2=7
Toggle caching.
@lazy # automatically performs caching
def inc(x):
print("running")
return x+1
print(inc(2)())
# running
# 3
print(inc(2)())
# 3
print(inc(3)())
# running
# 4
@lazy_no_cache # disables caching
def inc(x):
print("running")
return x+1
print(inc(2)())
# running
# 3
print(inc(2)())
# running
# 3
print(inc(3)())
# running
# 4
Badge
Show usage of pyfop in your projects by adding the following badge to your README.md file:
[](https://github.com/maniospas/pyfop)
This will display the following:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyfop-0.3.5.tar.gz.
File metadata
- Download URL: pyfop-0.3.5.tar.gz
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59f781177284fe2a9050876cbf6f8a087d5e1fdd37340642cacf13f41d7f2098
|
|
| MD5 |
ff092818e08e1a5eaabb47b820d28327
|
|
| BLAKE2b-256 |
2de1a25684123be2a07468bcf08f76ca82f6c32796ef0ab5b988738604f4251a
|
File details
Details for the file pyfop-0.3.5-py3-none-any.whl.
File metadata
- Download URL: pyfop-0.3.5-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17de4ce501555dab04e1cdc971d2faae8d6591ae65754ae34e11433859557c3a
|
|
| MD5 |
74f08aee693829f1ac2c1365e9eb943f
|
|
| BLAKE2b-256 |
daea26033545eac67d92ddb6bd73c486597fd86bd5260f10152acc6a3776e693
|