OpenSSF Baseline (OSPS v2025.10.10) compliance checks for darnit
Project description
darnit-baseline
OpenSSF Baseline (OSPS v2025.10.10) compliance implementation for the darnit framework — 62 controls across 8 domains and 3 maturity levels (25 L1, 17 L2, 20 L3).
How Controls Are Verified
Each control runs through a sieve pipeline — a sequence of passes that stops at the first conclusive result:
file_exists → exec / pattern → manual
↓ ↓ ↓
File presence Commands (gh api) Human review
checks & regex patterns (fallback)
Pass types:
- file_exists — checks for specific files (README.md, SECURITY.md, LICENSE, etc.)
- exec — runs a command (typically
gh api) and evaluates output with a CEL expression - pattern — searches file contents with regex, optionally evaluates with CEL
- manual — fallback steps for human verification
Conservative by default: A control that hasn't been explicitly verified as passing reports WARN (needs verification). The system never assumes compliance.
Control Reference
Controls gated by platform = "github" require the GitHub CLI (gh). Additional conditions are noted inline.
OSPS-AC — Access Control (6 controls)
| Control | Lvl | What It Checks | How | Auto-Remediation |
|---|---|---|---|---|
| AC-01.01 | 1 | MFA required for org members | exec gh api |
API: enable org MFA |
| AC-02.01 | 1 | Repository allows forking | exec gh api |
API: enable forking |
| AC-03.01 | 1 | PRs required for primary branch | exec gh api |
API: branch protection |
| AC-03.02 | 1 | Primary branch deletion blocked | exec gh api |
API: branch protection |
| AC-04.01 | 2 | Workflows declare permissions: (GitHub Actions) |
pattern workflows |
Manual |
| AC-04.02 | 3 | Permissions scoped to least privilege (GitHub Actions) | pattern workflows |
Manual |
OSPS-BR — Build & Release (11 controls)
| Control | Lvl | What It Checks | How | Auto-Remediation |
|---|---|---|---|---|
| BR-01.01 | 1 | Workflows handle untrusted inputs safely (GitHub Actions) | exec zizmor / pattern |
exec zizmor --fix |
| BR-01.02 | 1 | Branch names handled safely in workflows (GitHub Actions) | pattern workflows |
Manual |
| BR-02.01 | 2 | Unique version IDs per release (if has_releases) | exec gh release list |
Manual |
| BR-02.02 | 3 | Assets clearly linked to release IDs | exec gh release list |
Manual |
| BR-03.01 | 1 | Repository URL uses HTTPS | exec gh api |
— |
| BR-03.02 | 1 | Distribution channels use HTTPS | pattern README, INSTALL.md |
— |
| BR-04.01 | 2 | Releases include change log (if has_releases) | exec gh api / file CHANGELOG |
Manual |
| BR-05.01 | 2 | Uses standard dependency tooling | file package.json, pyproject.toml, etc. |
Manual |
| BR-06.01 | 2 | Releases are cryptographically signed (if has_releases) | pattern workflows, docs |
Creates release-signing.yml |
| BR-07.01 | 1 | Secret files are gitignored | file + pattern .gitignore |
Creates .gitignore |
| BR-07.02 | 3 | Secrets management policy documented | pattern SECURITY.md, docs |
Manual |
OSPS-DO — Documentation (7 controls)
| Control | Lvl | What It Checks | How | Auto-Remediation |
|---|---|---|---|---|
| DO-01.01 | 1 | Repository has a README | file README.md |
Creates README.md |
| DO-02.01 | 1 | Bug reporting process documented | file issue template / pattern |
Creates bug_report.md template |
| DO-03.01 | 3 | Support documentation available | file SUPPORT.md |
Creates SUPPORT.md |
| DO-03.02 | 3 | Release author verification instructions | pattern docs |
Creates RELEASE-VERIFICATION.md |
| DO-04.01 | 3 | Support scope and duration documented | pattern SUPPORT.md, docs |
Creates SUPPORT.md |
| DO-05.01 | 3 | End-of-support policy documented | pattern SUPPORT.md, docs |
Creates SUPPORT.md |
| DO-06.01 | 2 | Dependency management documented | pattern README, docs |
Creates docs/DEPENDENCIES.md |
OSPS-GV — Governance (6 controls)
| Control | Lvl | What It Checks | How | Auto-Remediation |
|---|---|---|---|---|
| GV-01.01 | 2 | Governance documentation exists | file GOVERNANCE.md, MAINTAINERS.md, etc. |
Creates GOVERNANCE.md (needs: maintainers) |
| GV-01.02 | 2 | Roles and responsibilities documented | pattern governance docs |
Creates MAINTAINERS.md (needs: maintainers) |
| GV-02.01 | 1 | Issues or Discussions enabled | exec gh api |
— |
| GV-03.01 | 1 | Contributing guidelines exist | file CONTRIBUTING.md |
Creates CONTRIBUTING.md |
| GV-03.02 | 2 | Contribution requirements documented | pattern CONTRIBUTING.md |
Creates CONTRIBUTING.md |
| GV-04.01 | 3 | Collaborator review policy documented | file CODEOWNERS / pattern |
Creates CODEOWNERS (needs: maintainers) |
OSPS-LE — Legal (5 controls)
| Control | Lvl | What It Checks | How | Auto-Remediation |
|---|---|---|---|---|
| LE-01.01 | 1 | Repository has a license file | file LICENSE |
Creates LICENSE (MIT, Apache-2.0, or BSD-3-Clause via license_type context) |
| LE-02.01 | 1 | License is OSI-approved | exec gh api |
— |
| LE-02.02 | 1 | Releases include license info | exec gh release view |
— |
| LE-03.01 | 1 | License file present in repository root | file LICENSE |
— |
| LE-03.02 | 1 | License included in release archives (if has_releases) | exec gh release view |
— |
OSPS-QA — Quality Assurance (13 controls)
| Control | Lvl | What It Checks | How | Auto-Remediation |
|---|---|---|---|---|
| QA-01.01 | 1 | Repository is publicly accessible | exec gh api |
API: make repo public |
| QA-01.02 | 1 | Commit history is publicly visible | exec gh api |
Manual |
| QA-02.01 | 1 | Dependency manifest exists | file package.json, pyproject.toml, etc. |
Manual |
| QA-02.02 | 3 | SBOM delivered with compiled assets (if has_compiled_assets) | pattern workflows |
Creates sbom.yml |
| QA-03.01 | 2 | Status checks required before merge | exec gh api |
Manual |
| QA-04.01 | 1 | Subprojects are documented (if has_subprojects) | pattern README, docs |
Manual |
| QA-04.02 | 3 | Subprojects enforce equal security (if has_subprojects) | pattern security files |
Manual |
| QA-05.01 | 1 | No generated executables in repo | pattern absence check |
Manual |
| QA-05.02 | 1 | No unreviewable binary artifacts | pattern absence check |
Manual |
| QA-06.01 | 2 | CI includes automated tests | pattern workflows |
Creates ci.yml (ecosystem-aware: Python/Node/Rust/Go) |
| QA-06.02 | 3 | Testing instructions documented | pattern README, docs |
Creates docs/TESTING.md (ecosystem-aware: Python/Node/Rust/Go) |
| QA-06.03 | 3 | Test requirements for contributions | pattern CONTRIBUTING.md |
Manual |
| QA-07.01 | 3 | PRs require approval before merge | exec gh api |
API: require PR reviews |
OSPS-SA — Security Assessment (4 controls)
| Control | Lvl | What It Checks | How | Auto-Remediation |
|---|---|---|---|---|
| SA-01.01 | 2 | Design docs show actions and actors | pattern architecture docs |
Creates ARCHITECTURE.md |
| SA-02.01 | 2 | API/interface documentation available | pattern API docs, README |
— |
| SA-03.01 | 2 | Security assessment before releases (if has_releases) | manual / pattern |
Creates SECURITY-ASSESSMENT.md |
| SA-03.02 | 3 | Threat model documentation available | file THREAT_MODEL.md / pattern |
Creates THREAT_MODEL.md (llm_enhance) |
OSPS-VM — Vulnerability Management (10 controls)
| Control | Lvl | What It Checks | How | Auto-Remediation |
|---|---|---|---|---|
| VM-01.01 | 2 | Security policy includes disclosure process | pattern SECURITY.md |
Manual |
| VM-02.01 | 1 | Repository has a security policy | file SECURITY.md |
Creates SECURITY.md |
| VM-03.01 | 2 | Private vulnerability reporting enabled | exec gh api / pattern |
API: enable private reporting |
| VM-04.01 | 2 | Repository supports security advisories | exec gh api |
Manual |
| VM-04.02 | 3 | VEX policy documented | pattern SECURITY.md, docs |
Creates docs/VEX-POLICY.md |
| VM-05.01 | 3 | SCA remediation policy documented | pattern docs |
Creates docs/SCA-POLICY.md |
| VM-05.02 | 3 | Pre-release SCA workflow configured | pattern workflows |
Creates sca.yml |
| VM-05.03 | 3 | Automated dependency scanning configured | file dependabot.yml, renovate.json |
Creates dependabot.yml (ecosystem-aware: Python/Node/Rust/Go) |
| VM-06.01 | 3 | SAST remediation policy documented | pattern docs |
Creates docs/SAST-POLICY.md |
| VM-06.02 | 3 | Automated SAST in CI pipeline | pattern workflows |
Creates sast.yml |
Project Context
Context values serve two purposes: (1) they gate which controls apply to your project via when clauses, and (2) they populate templates during remediation. Controls gated by context that hasn't been set show as N/A.
Set context via the confirm_project_data MCP tool or by editing .project/project.yaml.
| Key | Type | Auto-Detect | Controls | Usage |
|---|---|---|---|---|
maintainers |
list or path | Yes | GV-01.01, GV-01.02, GV-04.01 | Template variable in GOVERNANCE.md, MAINTAINERS.md, CODEOWNERS. Remediation blocks until provided. |
security_contact |
string | No | VM-01.01, VM-02.01, VM-03.01 | Populates SECURITY.md template |
governance_model |
enum | No | GV-01.01, GV-01.02 | Selects governance template variant |
has_subprojects |
boolean | No | QA-04.01, QA-04.02 | When-clause: controls only run if true |
has_releases |
boolean | Yes | BR-02.01, BR-04.01, BR-06.01, LE-03.02, SA-03.01 | When-clause: controls only run if true |
is_library |
boolean | No | DO-04.01, BR-01.01 | Audit hints for accuracy |
has_compiled_assets |
boolean | No | QA-02.02 | When-clause: control only runs if true |
ci_provider |
enum | Yes | BR-01.01, BR-01.02, AC-04.01, AC-04.02 | When-clause: controls only run if "github" |
Auto-detected without prompting: detected_ecosystem (from manifest files: pyproject.toml → python, package.json → node, Cargo.toml → rust, go.mod → go) and license_type (from LICENSE file content: Apache-2.0, MIT, BSD-3-Clause) are detected automatically by collect_auto_context() and injected into both audit and remediation paths. They never appear in get_pending_context questions.
Remediation Capabilities
The implementation provides 40 automated remediation actions: 31 file creations, 7 GitHub API calls, and 2 exec commands. All file creations are conservative-by-default (overwrite = false) — they never clobber existing files. All file creations support dry-run. Three governance controls (GV-01.01, GV-01.02, GV-04.01) block until project maintainers are confirmed via confirm_project_data. The remaining 15 controls with remediation sections provide manual guidance only, and 7 controls are verification-only with no remediation.
File Creation (31 actions across 28 unique files)
Each action generates a file from a built-in template. Template quality ratings:
- Production-ready — substantive content, follows best practices, minimal customization needed
- Good scaffold — correct structure, needs project-specific content added
- Starter — minimal placeholder, must be customized before use
Five templates have llm_enhance prompts (marked with *) that request LLM-based customization of the generated content.
Root Project Files
| Control | File | Quality | Notes |
|---|---|---|---|
| DO-01.01 | README.md |
Scaffold* | Generic clone/install, usage section is placeholder. llm_enhance, project_update |
| VM-02.01 | SECURITY.md |
Production* | Disclosure process, timelines (48h/7d/90d), VEX section. llm_enhance |
| GV-03.01 | CONTRIBUTING.md |
Scaffold | Fork workflow, PR guidelines; dev setup is placeholder |
| GV-03.02 | CONTRIBUTING.md |
Scaffold | Same template as GV-03.01 (no-op if already created) |
| GV-01.01 | GOVERNANCE.md |
Scaffold* | Roles, decision making. llm_enhance. Needs: maintainers |
| GV-01.02 | MAINTAINERS.md |
Scaffold | Responsibilities, criteria. Needs: maintainers |
| GV-04.01 | CODEOWNERS |
Scaffold | Single global ownership rule. Needs: maintainers |
| LE-01.01 | LICENSE |
Production | MIT (default), Apache-2.0, BSD-3-Clause — selected via license_type context. project_update |
| BR-07.01 | .gitignore |
Production | Covers .env, *.pem, *.key, cloud creds (AWS/GCP/Azure) |
| DO-03.01 | SUPPORT.md |
Production | Getting help, scope table, EOL policy with 30-day notice |
| DO-04.01 | SUPPORT.md |
Production | Support scope variant (no-op if DO-03.01 ran first) |
| DO-05.01 | SUPPORT.md |
Production | End-of-support variant (no-op if DO-03.01 ran first) |
| SA-01.01 | ARCHITECTURE.md |
Scaffold* | Components/actors/data flow — all example data. llm_enhance |
| SA-02.01 | API.md |
Scaffold* | Interface tables, usage examples — all placeholder. llm_enhance |
| SA-03.02 | THREAT_MODEL.md |
Production* | Full STRIDE on Python web services and Go cobra-based CLIs; thin on non-cobra Go CLIs and other library projects. See coverage scope. llm_enhance, project_update |
CI Workflows (.github/workflows/)
| Control | File | Quality | Notes |
|---|---|---|---|
| QA-06.01 | ci.yml |
Production | Ecosystem-aware: Python (pytest), Node (npm test), Rust (cargo test), Go (go test). Auto-detected via detected_ecosystem context |
| VM-05.02 | sca.yml |
Production | Pinned dependency-review-action, fail-on-severity: high |
| VM-06.02 | sast.yml |
Production | Pinned CodeQL init/autobuild/analyze, weekly schedule |
| QA-02.02 | sbom.yml |
Production | Pinned syft SPDX generation + release asset upload |
| BR-06.01 | release-signing.yml |
Scaffold | Pinned attest-build-provenance; subject-path: '.' needs customization |
GitHub Config
| Control | File | Quality | Notes |
|---|---|---|---|
| VM-05.03 | .github/dependabot.yml |
Production | Ecosystem-aware: includes github-actions + detected ecosystem (pip/npm/cargo/gomod). Auto-detected via detected_ecosystem context |
| DO-02.01 | .github/ISSUE_TEMPLATE/bug_report.md |
Production | Standard template: reproduce, expected, actual, environment |
Policy Documentation (docs/)
| Control | File | Quality | Notes |
|---|---|---|---|
| DO-06.01 | docs/DEPENDENCIES.md |
Production | 3-tier update cadence, 4-severity vulnerability response |
| SA-03.01 | docs/SECURITY-ASSESSMENT.md |
Scaffold | 5-item audit checklist, 4-step review process |
| DO-03.02 | docs/RELEASE-VERIFICATION.md |
Scaffold | Git tag, GitHub badge, Sigstore/cosign verification |
| BR-07.02 | docs/SECRETS-POLICY.md |
Production | Rotation (90d), revocation, CI/CD secrets, annual review |
| VM-04.02 | docs/VEX-POLICY.md |
Scaffold | VEX purpose, publication methods, OpenVEX/CISA links |
| VM-05.01 | docs/SCA-POLICY.md |
Production | Scanning frequency, 4-severity thresholds, exception process |
| VM-06.01 | docs/SAST-POLICY.md |
Production | 3 scanning triggers, severity handling, exception process |
| QA-06.02 | docs/TESTING.md |
Production | Ecosystem-aware: Python (pytest/coverage), Node (npm test/jest), Rust (cargo test), Go (go test/race). Auto-detected via detected_ecosystem context |
| QA-06.03 | docs/TEST-REQUIREMENTS.md |
Scaffold | Contribution test requirements; make test placeholder |
API Calls (7 actions)
All target the GitHub REST API via gh. Require authentication with appropriate scopes (repo, admin:org for MFA).
| Control | Endpoint | What It Changes | Safe | Reversible |
|---|---|---|---|---|
| AC-01.01 | PUT /orgs/$OWNER |
Enforce org-wide MFA | No | Hard — may lock out members without MFA |
| AC-02.01 | PATCH /repos/$OWNER/$REPO |
Enable repository forking | Yes | Yes |
| AC-03.01 | PUT .../branches/$BRANCH/protection |
Require PRs for primary branch | Yes | Yes |
| AC-03.02 | PUT .../branches/$BRANCH/protection |
Block primary branch deletion | No | Yes |
| QA-01.01 | PATCH /repos/$OWNER/$REPO |
Make repository public | No | Hard — may expose private code |
| QA-07.01 | PUT .../branches/$BRANCH/protection |
Require PR approval before merge | No | Yes |
| VM-03.01 | PUT .../private-vulnerability-reporting |
Enable private vulnerability reporting | Yes | Yes |
Exec (2 actions)
| Control | Command | Notes |
|---|---|---|
| BR-01.01 | zizmor --fix=all --offline |
Requires external zizmor tool. Applies all fixes including unsafe. GitHub Actions only |
| BR-01.02 | zizmor --fix=all --offline |
Same command, targets branch name injection patterns |
Manual-Only (15 controls)
These controls provide step-by-step guidance but cannot be auto-remediated.
| Control | Why Manual |
|---|---|
| QA-01.02 | Commit history visibility — verification-only, nothing to change programmatically |
| QA-02.01 | Dependency manifest — project-specific; can't generate a real lockfile |
| QA-04.01 | Subproject documentation — requires human knowledge of project structure |
| QA-05.01 | No generated executables — requires human judgment on what to remove |
| QA-05.02 | No binary artifacts — requires human judgment on what to remove |
| AC-04.01 | Workflow permissions: declarations — requires understanding each workflow's needs |
| AC-04.02 | Least-privilege permissions — requires per-workflow security analysis |
| BR-02.01 | Unique version IDs — release versioning process is project-specific |
| BR-04.01 | Changelog in releases — changelog content is project-specific |
| BR-05.01 | Standard dependency tooling — tool adoption is a project-level decision |
| BR-02.02 | Assets linked to release IDs — release artifact process is project-specific |
| QA-03.01 | Required status checks — which checks to require depends on CI setup |
| QA-04.02 | Subproject security parity — requires cross-repo security review |
| VM-01.01 | Disclosure process in SECURITY.md — content verification is judgment-based |
| VM-04.01 | Security advisory support — GitHub platform feature, manual enablement |
No Remediation (7 controls)
Verification-only controls that check conditions which already exist or can't be meaningfully auto-remediated: BR-03.01 (HTTPS repo URL), BR-03.02 (HTTPS distribution), GV-02.01 (Issues/Discussions enabled), LE-02.01 (OSI-approved license), LE-02.02 (License in releases), LE-03.01 (License in root), LE-03.02 (License in release archives).
Template Quality Summary
| Rating | Count | Description |
|---|---|---|
| Production-ready | 19 | Substantive content following best practices — minimal customization needed |
| Good scaffold | 12 | Correct structure — needs project-specific content added |
| Starter | 0 | Minimal placeholder — must be customized before use |
6 templates with llm_enhance prompts: README.md, SECURITY.md, GOVERNANCE.md, ARCHITECTURE.md, API.md, THREAT_MODEL.md — these request LLM-based customization using project context.
Known Limitations
- Templates use
$OWNER,$REPO,$BRANCHvariables resolved from git remote — may be wrong for forks or non-standard remote names security@$OWNER.github.ioin SECURITY.md is a placeholder email — almost always needs customization- LICENSE template auto-detects existing license type; defaults to MIT if no LICENSE file is present
- CI workflows, dependabot, and testing docs auto-detect ecosystem from manifest files — falls back to generic starter if ecosystem is unrecognized
release-signing.ymlusessubject-path: '.'which should be customized to actual release artifactsllm_enhanceprompts are captured in templates but the LLM integration path isn't fully wired in the remediation executor- Three SUPPORT.md controls (DO-03.01, DO-04.01, DO-05.01) each create the same file with different templates — only the first to run takes effect due to
overwrite = false - API call remediations require
ghCLI authentication with appropriate scopes (repo,admin:orgfor MFA enforcement) zizmor --fix=allapplies all fixes including potentially unsafe ones — review changes before committing- Manual-only controls have varying depth of guidance (some have 2 steps, some have 6)
dependabot.ymlauto-detects project ecosystem — falls back togithub-actionsonly if ecosystem is unrecognized- Ecosystem detection maps primary language to ecosystem (python→python, javascript/typescript→node, go→go, rust→rust, java→java, ruby→ruby); unrecognized languages get no ecosystem
- Monorepo limitation: Language and ecosystem auto-detection only checks manifest files at the repository root (e.g.,
pyproject.toml,go.mod,package.json). Nested service directories are not scanned. In a monorepo with multiple languages, only the root-level manifest is detected — check order favors Go and Rust over Python and JavaScript. Useconfirm_project_data(detected_ecosystem="...")to override if the wrong ecosystem is selected
External Tool Dependencies
Some controls use external tools for deeper analysis. These are optional — controls gracefully fall back to built-in pattern matching when a tool is unavailable.
| Tool | Controls | Purpose | Install |
|---|---|---|---|
| zizmor | BR-01.01 | GitHub Actions static analysis (template injection) | cargo install zizmor or brew install zizmor |
| gh | AC-*, BR-02/03/04, LE-02/03, QA-01/03/07, GV-02, VM-03/04 | GitHub API queries | brew install gh |
| jq | — | JSON processing (used internally by some exec passes) | brew install jq |
Org-Wide Audits
Audit every repository in a GitHub organization (or user account) one at a time. The workflow uses two MCP tools: one to discover repos, and another to audit each individually.
Prerequisites: gh CLI installed and authenticated (gh auth login).
Step 1: List repos — list_org_repos
| Parameter | Type | Default | Description |
|---|---|---|---|
owner |
string | (required) | GitHub org or user name |
include_archived |
bool | false |
Include archived repositories |
Returns a JSON object:
{"owner": "my-org", "repos": ["repo-a", "repo-b", "repo-c"], "count": 3}
Step 2: Audit each repo — audit_org
| Parameter | Type | Default | Description |
|---|---|---|---|
owner |
string | (required) | GitHub org or user name |
repo |
string | (required) | Repository name to audit |
level |
int | 3 |
Maximum OSPS maturity level (1, 2, or 3) |
tags |
string or list | null |
Filter controls by tags (e.g., "domain=AC") |
output_format |
string | "markdown" |
"markdown" or "json" |
Clones the repo to a temp directory, runs the full audit pipeline, returns the report, and cleans up.
Example Workflow
# 1. Discover repos
list_org_repos(owner="my-org")
# → {"repos": ["frontend", "backend", "infra"], "count": 3}
# 2. Audit each repo individually
audit_org(owner="my-org", repo="frontend", level=1)
audit_org(owner="my-org", repo="backend", level=1)
audit_org(owner="my-org", repo="infra", level=1)
# JSON output for a single repo
audit_org(owner="my-org", repo="frontend", output_format="json")
Write-Back Routing
When remediating org-wide audit findings, each action is classified as targeting either:
[org]— Shared metadata in the org's.projectrepo (e.g.,security.contact,maintainers,governance). Only classified as org-level when the field exists in the org config.[repo]— Repo-specific artifacts (e.g.,SECURITY.md,CODEOWNERS, CI config). Always repo-level regardless of org config.
This classification appears in the audit report's "Write-back Routing" section to help you decide where to apply fixes.
How It Works
- Enumerate (
list_org_repos) —gh repo list {owner}fetches all repos (filters archived by default) - Clone (
audit_org) — The repo is shallow-cloned (--depth 1) to a temp directory - Audit — Standard
run_sieve_audit()pipeline runs against the clone, including.project/context resolution (org-level.projectrepo metadata is merged automatically) - Return — Single-repo report is returned (fits within MCP response limits)
- Cleanup — Temp directory is removed even on errors
Failures are non-fatal: if a repo fails to clone or audit, the error is returned in the response.
Package Structure
darnit_baseline/
├── attestation/ # In-toto attestation support
├── config/ # Project context configuration
├── formatters/ # Output formatting (Markdown, JSON, SARIF)
├── remediation/ # Remediation orchestration
├── rules/ # SARIF rule definitions (from TOML)
└── threat_model/ # Threat model generation
Installation
pip install darnit-baseline
This automatically installs darnit as a dependency.
License
Apache-2.0
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 darnit_baseline-0.1.0.tar.gz.
File metadata
- Download URL: darnit_baseline-0.1.0.tar.gz
- Upload date:
- Size: 187.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1de84783d58cc55d1275ff4bbe93aab268b00e0b822d0415ae21870be5af8e1d
|
|
| MD5 |
6d57752bea5a16ee1994fd959939e45e
|
|
| BLAKE2b-256 |
be2c183366dcb421e8cae02b17f9c126335b982c15f39a36adeb162b3f5f1dc8
|
File details
Details for the file darnit_baseline-0.1.0-py3-none-any.whl.
File metadata
- Download URL: darnit_baseline-0.1.0-py3-none-any.whl
- Upload date:
- Size: 197.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
424f953c74762e15cb42dbc8b3b1f86b3ebc9fe132aa546346853d7435e0ed8f
|
|
| MD5 |
10da72aa5a79e576f2617090e2d434d0
|
|
| BLAKE2b-256 |
68438ea9fecf21918262006a15ca5a8a67a65b281d89c5b8a360f12cb9d1b4a7
|