{"id":15693243,"url":"https://github.com/guillaume-chevalier/python-conv-lib","last_synced_at":"2025-08-01T11:36:45.023Z","repository":{"id":62564658,"uuid":"131549336","full_name":"guillaume-chevalier/python-conv-lib","owner":"guillaume-chevalier","description":"A lightweight library to do for-loop-styled convolution passes on your iterable objects (e.g.: on a list). Note: this is not a convolution, it is about exposing what would the kernel pass on in the first place in your loops. ","archived":false,"fork":false,"pushed_at":"2019-10-21T03:57:57.000Z","size":14,"stargazers_count":7,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-09T08:38:30.317Z","etag":null,"topics":["convolution","iterator","library","package","python","python-3","python3"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/conv/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/guillaume-chevalier.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-30T02:47:46.000Z","updated_at":"2019-10-21T03:52:43.000Z","dependencies_parsed_at":"2022-11-03T16:00:50.578Z","dependency_job_id":null,"html_url":"https://github.com/guillaume-chevalier/python-conv-lib","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/guillaume-chevalier/python-conv-lib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaume-chevalier%2Fpython-conv-lib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaume-chevalier%2Fpython-conv-lib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaume-chevalier%2Fpython-conv-lib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaume-chevalier%2Fpython-conv-lib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guillaume-chevalier","download_url":"https://codeload.github.com/guillaume-chevalier/python-conv-lib/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaume-chevalier%2Fpython-conv-lib/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265677342,"owners_count":23809949,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["convolution","iterator","library","package","python","python-3","python3"],"created_at":"2024-10-03T18:42:22.795Z","updated_at":"2025-07-17T23:06:39.634Z","avatar_url":"https://github.com/guillaume-chevalier.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"================\nconv\n================\n\n\nDescription\n=============\n\n\nConv is a simple Python \u003e= 3 package, lightweight library to do for-loop-styled convolution passes on your iterable objects (e.g.: on a list).\n\n\nInstallation\n=============\n::\n\n    pip install conv\n\n\nExample Usage\n=============\n::\n\n    from conv import convolved\n\n\n    some_list = [1, 2, 3]\n    for kernel_hover in convolved(some_list, kernel_size=2, stride=1, padding=2, default_value=42):\n        print(kernel_hover)\n\nResult:\n----------\n::\n\n    [42, 42]\n    [42, 1]\n    [1, 2]\n    [2, 3]\n    [3, 42]\n    [42, 42]\n\nUnit Tests:\n-----------\n::\n\n    python setup.py test\n\nA ``convolved_2d`` function also exists. See tests for more examples.\n\n\nNotes\n=============\n\n\nLicense: MIT\n\nAuthor: Guillaume Chevalier\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillaume-chevalier%2Fpython-conv-lib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguillaume-chevalier%2Fpython-conv-lib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillaume-chevalier%2Fpython-conv-lib/lists"}