D.ata C.ollection F.ramework - Define a data source, run dcf, query the data
Project description
dcf
D.ata C.ollection F.ramework
uvx --from dcf-core dcf init
How it works
- Define a data collector in YAML — source, schema, cadence
- Run it with
dcf run - Query data from your data lake
Quickstart
mkdir my-project && cd my-project
uvx --from dcf-core dcf init
uv sync
uv run dcf run dcf_commits
uv run dcf query 'SELECT * FROM github.dcf_commits'
dcf init creates pyproject.toml, project.yml, .gitignore, collectors/, and an example collector.
Example
dcf collector
name: dcf_commits
namespace: github
source:
type: http
url: https://api.github.com/repos/zephschafer/dcf/commits
method: GET
params:
- name: per_page
type: integer
value: 100
- name: since
type: string
- name: until
type: string
schema:
columns:
- {name: sha, path: sha, type: string}
- {name: author, path: commit.author.name, type: string}
- {name: message, path: commit.message, type: string}
- {name: committed_at, path: commit.author.date, type: timestamp}
cadence:
strategy: incremental
primary_key: sha
iterate:
- type: date_range
params: [since, until]
start: "2024-01-01"
end: today
step: 30 days
deployment:
schedule: "0 8 * * *"
dcf run
uv run dcf run dcf_commits
dcf query
uv run dcf query 'SELECT * FROM github.dcf_commits LIMIT 5'
Contributing
git clone https://github.com/zephschafer/dcf && cd dcf && uv sync
Point a local project at your checkout:
[tool.uv.sources]
dcf-core = { path = "../dcf", editable = true }
To verify changes:
uv run dcf run dcf_commits
uv run dcf query 'SELECT * FROM github.dcf_commits'
Releasing: bump version in pyproject.toml and push to main — GitHub Actions publishes to PyPI automatically.
Package structure
dcf/
├── cli.py Entry point (Typer)
├── config/
│ ├── models.py Pydantic models for collector YAML
│ └── loader.py YAML loading + env var resolution
├── engine/
│ ├── runner.py Outer loop (iterate → fetch → project → write)
│ ├── fetcher.py HTTP and Python source fetchers
│ ├── iterator.py Date range and categorical iteration
│ ├── projector.py Schema projection and path extraction
│ └── transforms.py Column transforms
├── writer/
│ └── iceberg.py Write strategies (incremental / append / full_refresh)
└── gcp/ GCP auth, provisioning, Terraform wrappers
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dcf_core-1.0.2.tar.gz.
File metadata
- Download URL: dcf_core-1.0.2.tar.gz
- Upload date:
- Size: 61.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1a07bb14127ed58486b0a247e714e1a31528e36252e84ec224f049ee607faad
|
|
| MD5 |
4551356af06278116e2cda90622a1ac1
|
|
| BLAKE2b-256 |
50cafbb67e3daf751d45eb16a73c6f83e08b463795f52089c51b14f5c3c1d573
|
File details
Details for the file dcf_core-1.0.2-py3-none-any.whl.
File metadata
- Download URL: dcf_core-1.0.2-py3-none-any.whl
- Upload date:
- Size: 64.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6aa73187a0a919679e222c20f8f5848390b54fb1416845035e52e55e117fbbf0
|
|
| MD5 |
18f8058b1aec87ecbf4e4ea7a49a683a
|
|
| BLAKE2b-256 |
4170f3498302eb7a79bc85ae61d11aa0828bca149cbf327208197f353e5f262f
|