{"id":18678323,"url":"https://github.com/vitalibo/pyxis","last_synced_at":"2025-10-25T12:03:30.655Z","repository":{"id":101159617,"uuid":"594907634","full_name":"vitalibo/pyxis","owner":"vitalibo","description":"An essential Python toolkit for peak productivity","archived":false,"fork":false,"pushed_at":"2024-06-22T10:03:12.000Z","size":176,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-12-27T21:21:48.183Z","etag":null,"topics":["config","enum","monad","python3","stream-api"],"latest_commit_sha":null,"homepage":"","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/vitalibo.png","metadata":{"files":{"readme":"readme.md","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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-30T01:01:52.000Z","updated_at":"2024-06-22T09:40:51.000Z","dependencies_parsed_at":"2024-11-07T09:39:14.853Z","dependency_job_id":"5aaf0457-6931-4044-b235-23a7c61e0350","html_url":"https://github.com/vitalibo/pyxis","commit_stats":null,"previous_names":["vitalibo/pyxis"],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vitalibo%2Fpyxis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vitalibo%2Fpyxis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vitalibo%2Fpyxis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vitalibo%2Fpyxis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vitalibo","download_url":"https://codeload.github.com/vitalibo/pyxis/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239525735,"owners_count":19653385,"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":["config","enum","monad","python3","stream-api"],"created_at":"2024-11-07T09:37:13.268Z","updated_at":"2025-10-25T12:03:30.607Z","avatar_url":"https://github.com/vitalibo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PyXIS\n\n![status](https://github.com/vitalibo/pyxis/actions/workflows/ci.yaml/badge.svg)\n\nPyxis is a comprehensive Python toolkit designed to enhance developer productivity.\nIt offers a suite of tools and classes that streamline various aspects of software development.\nFrom data stream processing to advanced configuration management, Pyxis provides an array of functionalities\nto tackle complex challenges efficiently.\n\n### Installation\n\n```bash\npip install 'git+https://github.com/vitalibo/pyxis.git@0.2.1'\n```\n\n### Usage\n\n```python\nfrom dataclasses import dataclass\nfrom pyxis.dataclasses import reference\nfrom pyxis.streams import Stream\n\n\n@reference\n@dataclass\nclass User:\n    name: str\n    age: int\n\n\nusers = Stream \\\n    .of(User('foo', 25), User('bar', 22), User('baz', 30)) \\\n    .key_by(lambda user: user.age // 10) \\\n    .group_by_key(User.name) \\\n    .to_dict()\n\nprint(users)\n```\n\nOutput\n```text\n{2: ('foo', 'bar'), 3: ('baz',)}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvitalibo%2Fpyxis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvitalibo%2Fpyxis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvitalibo%2Fpyxis/lists"}