https://github.com/jbcom/extended-data-library
Extended Data Types
https://github.com/jbcom/extended-data-library
Last synced: 2 months ago
JSON representation
Extended Data Types
- Host: GitHub
- URL: https://github.com/jbcom/extended-data-library
- Owner: jbcom
- License: mit
- Created: 2025-12-16T08:36:22.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-02-24T23:06:17.000Z (4 months ago)
- Last Synced: 2026-02-24T23:10:01.719Z (4 months ago)
- Language: Python
- Size: 5.26 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: .github/SECURITY.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Extended Data Library
A collection of high-performance Python libraries and tools for data processing, configuration management, logging, and cloud integrations.
[](https://github.com/jbcom/extended-data-library/actions/workflows/ci.yml)
[](https://opensource.org/licenses/MIT)
## Packages
| Package | Version | Description |
|---------|---------|-------------|
| [extended-data-types](packages/extended-data-types/) | [](https://pypi.org/project/extended-data-types/) | Typed utilities for YAML, JSON, TOML, HCL, Base64, file paths, strings, lists, and maps |
| [lifecyclelogging](packages/lifecyclelogging/) | [](https://pypi.org/project/lifecyclelogging/) | Lifecycle-aware logging with rich output, verbosity control, and message storage |
| [directed-inputs-class](packages/directed-inputs-class/) | [](https://pypi.org/project/directed-inputs-class/) | Transparent input handling from environment variables, stdin, and config files |
| [vendor-connectors](packages/vendor-connectors/) | [](https://pypi.org/project/vendor-connectors/) | Universal cloud and service connectors (AWS, GitHub, Slack, Vault, Anthropic, Cursor, Meshy) |
| [secretssync](packages/secretssync/) | [](https://github.com/jbcom/extended-data-library/releases) | Enterprise-grade secret synchronization pipeline (Go) |
## Quick Start
```bash
# Python packages
pip install extended-data-types
pip install lifecyclelogging
pip install directed-inputs-class
pip install vendor-connectors
# Python integration for SecretSync workflows
pip install vendor-connectors[secrets]
# SecretSync CLI
go install github.com/jbcom/extended-data-library/packages/secretssync/cmd/secretsync@latest
```
## Monorepo Structure
```
extended-data-library/
packages/
extended-data-types/ Python foundation utilities
lifecyclelogging/ Structured logging library
directed-inputs-class/ Configuration and input handling
vendor-connectors/ Cloud and service connectors
secretssync/ Secret sync pipeline (Go)
docs/ Documentation site (Astro + Sphinx)
tox.ini Test orchestration
justfile Developer task runner
```
## Development
### Prerequisites
- Python 3.10+
- [uv](https://docs.astral.sh/uv/) (package manager)
- Go 1.25+ (only for secretssync)
### Setup
```bash
git clone https://github.com/jbcom/extended-data-library.git
cd extended-data-library
uv sync
```
### GitHub CLI
Use `gh` directly with your existing local authentication context.
```bash
gh auth status
gh pr list
```
### Running Tests
```bash
# All Python packages
tox -e edt,logging,inputs,connectors
# Single package
tox -e edt
# Using just
just test
```
### Linting and Formatting
```bash
tox -e lint
# Or directly
uvx ruff check packages/
uvx ruff format packages/
```
### Commit Conventions
This project uses [Conventional Commits](https://www.conventionalcommits.org/) with scoped types:
```
feat(edt): add new TOML parser # minor bump for extended-data-types
fix(logging): handle empty messages # patch bump for lifecyclelogging
feat!: breaking API change # major bump
```
## Documentation
Full documentation is available at [extended-data.dev](https://extended-data.dev).
## License
[MIT](LICENSE) -- Copyright (c) 2025 Extended Data Library