{"id":45571931,"url":"https://github.com/maet3608/nuts-flow","last_synced_at":"2026-02-23T08:07:14.242Z","repository":{"id":57447385,"uuid":"80673435","full_name":"maet3608/nuts-flow","owner":"maet3608","description":"A simple dataflow framework in Python","archived":false,"fork":false,"pushed_at":"2021-03-04T05:37:31.000Z","size":9121,"stargazers_count":18,"open_issues_count":4,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-22T10:29:53.725Z","etag":null,"topics":["flow-based-programming","flowframework","functional-programming","iterators","itertools","python"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maet3608.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-01T23:00:28.000Z","updated_at":"2025-05-07T17:45:51.000Z","dependencies_parsed_at":"2022-09-05T05:10:36.899Z","dependency_job_id":null,"html_url":"https://github.com/maet3608/nuts-flow","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/maet3608/nuts-flow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maet3608%2Fnuts-flow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maet3608%2Fnuts-flow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maet3608%2Fnuts-flow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maet3608%2Fnuts-flow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maet3608","download_url":"https://codeload.github.com/maet3608/nuts-flow/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maet3608%2Fnuts-flow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29739807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flow-based-programming","flowframework","functional-programming","iterators","itertools","python"],"created_at":"2026-02-23T08:07:10.835Z","updated_at":"2026-02-23T08:07:14.233Z","avatar_url":"https://github.com/maet3608.png","language":"Python","readme":"\n\n\n.. image:: pics/nutsflow_logo.gif\n   :align: center\n\n- `Introduction \u003chttps://maet3608.github.io/nuts-flow/introduction.html\u003e`_\n- `Installation \u003chttps://maet3608.github.io/nuts-flow/installation.html\u003e`_\n- `Tutorial \u003chttps://maet3608.github.io/nuts-flow/tutorial/introduction.html\u003e`_\n- `Documentation \u003chttps://maet3608.github.io/nuts-flow/\u003e`_\n- `Github \u003chttps://github.com/maet3608/nuts-flow\u003e`_\n\n**nuts-flow** is largely a thin wrapper around Python's *itertools* that allows\nthe chaining of iterators using the ``\u003e\u003e`` operator. This leads to more\nreadable code that highlights the flow of data. The following example shows\ntwo implementations of a simple data processing pipeline; the first based on\n*itertools* and the second using **nuts-flow**:\n\n  \u003e\u003e\u003e from itertools import islice\n  \u003e\u003e\u003e list(islice(filter(lambda x: x \u003e 5, xrange(10)), 3))\n  [6, 7, 8]\n\n\n  \u003e\u003e\u003e from nutsflow import Range, Filter, Take, Collect, _\n  \u003e\u003e\u003e Range(10) \u003e\u003e Filter(_ \u003e 5) \u003e\u003e Take(3) \u003e\u003e Collect()\n  [6, 7, 8]\n\nBoth examples extract the first three numbers within range [0, 9]\nthat are greater than five. However, the **nuts-flow** pipeline\nis easier to understand than the nested *itertools* code.\n\n**nuts-flow** is the base for `nuts-ml \u003chttps://github.com/maet3608/nuts-ml\u003e`_, \nwhich is described `here \u003chttps://maet3608.github.io/nuts-ml/\u003e`_ .\n\n\n.. image:: https://badge.fury.io/py/nutsflow.svg\n   :target: https://badge.fury.io/py/nutsflow\n\n.. image:: https://img.shields.io/pypi/pyversions/nutsflow.svg\n   :target: https://pypi.python.org/pypi/nutsflow/\n\n.. image:: https://travis-ci.org/maet3608/nuts-flow.svg?branch=master\n   :target: https://travis-ci.org/maet3608/nuts-flow\n\n.. image:: https://coveralls.io/repos/github/maet3608/nuts-flow/badge.svg?branch=master\n   :target: https://coveralls.io/github/maet3608/nuts-flow?branch=master\n\n.. image:: https://img.shields.io/github/issues/maet3608/nuts-flow.svg\n   :target: https://github.com/maet3608/nuts-flow/issues\n\n.. image:: https://img.shields.io/badge/license-Apache%202-blue.svg\n   :target: https://github.com/maet3608/nuts-ml/blob/master/LICENSE\n\n\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaet3608%2Fnuts-flow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaet3608%2Fnuts-flow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaet3608%2Fnuts-flow/lists"}