{"id":50777048,"url":"https://github.com/jbcom/extended-data","last_synced_at":"2026-06-12T00:30:40.106Z","repository":{"id":363728975,"uuid":"1264648796","full_name":"jbcom/extended-data","owner":"jbcom","description":"Comprehensive Python data utilities for serialization, inputs, logging, vendor data, and workflows","archived":false,"fork":false,"pushed_at":"2026-06-10T05:03:30.000Z","size":2844,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-10T06:28:47.715Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/jbcom.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-10T04:15:14.000Z","updated_at":"2026-06-10T05:03:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jbcom/extended-data","commit_stats":null,"previous_names":["jbcom/extended-data"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jbcom/extended-data","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fextended-data","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fextended-data/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fextended-data/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fextended-data/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jbcom","download_url":"https://codeload.github.com/jbcom/extended-data/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbcom%2Fextended-data/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34224103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-06-12T00:30:35.241Z","updated_at":"2026-06-12T00:30:40.076Z","avatar_url":"https://github.com/jbcom.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Extended Data\n\nComprehensive Python data utilities for serialization, configuration inputs,\nstructured logging, vendor data connectors, and workflow-oriented integrations.\n\nThis repository is the clean major-version consolidation of the previous\n`extended-data-library` Python packages. The old package namespaces are not\npreserved; the public API now lives under `extended_data`.\n\n## Install\n\n```bash\npip install extended-data\n```\n\nOptional integrations are installed by feature:\n\n```bash\npip install \"extended-data[aws,github,vault]\"\npip install \"extended-data[google,slack,zoom]\"\npip install \"extended-data[ai]\"\npip install \"extended-data[meshy,mcp]\"\npip install \"extended-data[secrets]\"\n```\n\n## Usage\n\n```python\nfrom extended_data import ConnectorFabric, InputProvider, Logging, decode_json, encode_yaml\n\nlogger = Logging(logger_name=\"example\")\ninputs = InputProvider(inputs={\"GITHUB_OWNER\": \"jbcom\"}, from_environment=False)\nconnectors = ConnectorFabric(inputs=inputs.inputs, logger=logger)\ndata = decode_json('{\"status\": \"ok\"}')\n\nprint(encode_yaml(data))\n```\n\nThe fabric can also instantiate any registered connector by name:\n\n```python\ngithub = connectors.get_connector(\n    \"github\",\n    github_owner=\"jbcom\",\n    github_token=\"...\",\n)\n```\n\nConnector names are normalized before lookup. If a known built-in connector is\nrequested without its optional extra installed, the registry raises an\n`ImportError` with the matching `extended-data[...]` install target.\n\n## Package Shape\n\n```text\nextended_data/\n  core serialization, files, types, transforms\n  inputs/       InputProvider and decorator-based input injection\n  logging/      structured lifecycle logging\n  connectors/   ConnectorFabric and vendor adapters\n  secrets/      Python access to secret sync primitives\n  workflows/    higher-order workflow composition\n```\n\nVendor connectors are first-class adapters in the data fabric. `ConnectorFabric`\nuses the registry to resolve connectors by name, injects shared input/logging\ncontext, caches connector instances, and lets specialized helpers coexist with\ngeneric vendor lookup.\n\nMore detail lives in [`docs/package-surface.md`](docs/package-surface.md).\n\n## Development\n\n```bash\nuv sync --extra tests --extra typing\nuv run pytest\nuv run ruff check src tests\nuv build\n```\n\n## License\n\nMIT.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbcom%2Fextended-data","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjbcom%2Fextended-data","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbcom%2Fextended-data/lists"}