Skip to content
#

frameworks

A framework is a reusable set of libraries or classes in software. In an effort to help developers focus their work on higher level tasks, a framework provides a functional solution for lower level elements of coding. While a framework might add more code than is necessary, they also provide a reusable pattern to speed up development.

Here are 274 public repositories matching this topic...

actionhero
mfvargo
mfvargo commented Jan 22, 2021

We had an issue where an api user was using the incorrect parameters on an API call. Having this feature would have made the API fail instead of proceeding. The bug would been found earlier.

I can see where this would be a hassle on many cases, But it would be nice for new projects.

I suppose it could be a global config item that could be overridden at the individual action level:

For

pdxjohnny
pdxjohnny commented Feb 20, 2022

Pain Point

Currently when a use modifies dataflow.flow the dataflow is not updated unless dataflow.update() is called.

For example:

https://github.com/intel/dffml/blob/8c87efaf55707bf1c3f72406226de85111fb7681/examples/io/io_usage.py#L11-L49

Proposed Solution

Ideally whenever flow is modified, or any subproperty all the way down the nested objects is modifed. We would aut

Wikipedia
Wikipedia