Multi-Cloud Infrastructure as Code and PaaS Management Suite (BETA - Feature Complete)
Project description
YamlForge
Universal Infrastructure as Code Across All Clouds
Write your infrastructure once in elegant YAML syntax and deploy it seamlessly across AWS, Azure, GCP, OCI, Alibaba Cloud, IBM Cloud, and VMware. YamlForge eliminates cloud lock-in by providing a universal interface that generates production-ready Terraform configurations with built-in AI assistance.
The Vision
Universal infrastructure that works everywhere.
YamlForge breaks down the barriers between cloud providers. Define your infrastructure once using intuitive YAML syntax, and watch it materialize across any cloud environment. Whether you're deploying OpenShift clusters, Kubernetes workloads, or custom applications, YamlForge provides the abstraction layer that makes multi-cloud a reality.
Why YamlForge?
- Universal Cloud Support: Deploy to any major cloud provider with identical syntax
- Intelligent Assistance: AI-powered configuration generation from natural language
- Enterprise Patterns: Pre-built templates for OpenShift, Kubernetes, and production workloads
- Zero Lock-in: Migrate between clouds without rewriting your infrastructure code
- Production Hardened: Built-in security, compliance, and operational best practices
- Developer Experience: Intuitive YAML syntax that abstracts away cloud complexity
⚠️ BETA SOFTWARE WARNING ⚠️
This is v1.0 BETA - Feature Complete with Testing Needed
This software is feature complete but requires thorough testing in various environments.
Use with caution in production. Extensive testing recommended before critical deployments.
Quick Start
Installation
git clone https://github.com/rut31337/YamlForge.git
cd YamlForge
pip install -r requirements.txt
# Verify Terraform v1.12.0+ is installed
terraform version # Should show v1.12.0 or newer
Requirement: Terraform v1.12.0+ required for OpenShift/ROSA support
DemoBuilder - AI-Powered Configuration Assistant
Interactive chatbot for YamlForge configuration generation:
DemoBuilder is a conversational AI assistant that helps you create YamlForge configurations through natural language. Simply describe your infrastructure needs, and DemoBuilder will generate, validate, and analyze configurations in real-time.
Features:
- Natural language infrastructure generation
- Real-time cost analysis across cloud providers
- Interactive configuration refinement
- Schema validation and auto-correction
- Provider selection and filtering
Deploy DemoBuilder to OpenShift:
export ANTHROPIC_API_KEY="your-api-key"
./demobuilder/deployment/openshift/deploy-s2i.sh
📖 Full DemoBuilder Deployment Guide
Define Once, Deploy Everywhere
# infrastructure.yaml
guid: "demo1"
yamlforge:
cloud_workspace:
name: "multi-cloud-demo-{guid}"
description: "Multi-cloud deployment demonstration"
# Deploy instances across multiple clouds using universal locations
# us-east maps to: AWS us-east-1, Azure East US, GCP us-east1, IBM VPC us-east
instances:
- name: "web-aws-{guid}"
provider: "aws"
region: "us-east"
flavor: "medium"
image: "RHEL9-latest"
count: 3 # Deploy 3 identical instances
- name: "web-azure-{guid}"
provider: "azure"
region: "us-east"
flavor: "medium"
image: "RHEL9-latest"
count: 2 # Deploy 2 identical instances
- name: "web-gcp-{guid}"
provider: "gcp"
region: "us-east"
flavor: "medium"
image: "RHEL9-latest"
# count: 1 (default - single instance)
# Deploy OpenShift clusters using universal locations
# us-east maps to: AWS us-east-1, Azure East US, GCP us-east1, IBM VPC us-east
openshift_clusters:
- name: "aws-rosa-{guid}"
type: "rosa-classic"
region: "us-east"
version: "4.18.19"
size: "medium"
- name: "azure-aro-{guid}"
type: "aro"
region: "us-east"
version: "latest"
size: "medium"
# Security configuration
security_groups:
- name: "web-access-{guid}"
description: "Allow web traffic"
rules:
- direction: "ingress"
protocol: "tcp"
port_range: "80"
source: "0.0.0.0/0"
- direction: "ingress"
protocol: "tcp"
port_range: "443"
source: "0.0.0.0/0"
CNV Example: Virtual Machines on Kubernetes/OpenShift
# cnv-infrastructure.yaml
guid: "cnv1"
yamlforge:
cloud_workspace:
name: "cnv-workspace-{guid}"
description: "CNV virtual machines on OpenShift"
instances:
- name: "cnv-vm-{guid}"
provider: "cnv"
flavor: "small" # 1 vCPU, 1GB RAM
image: "rhel-9.6" # Dynamic discovery from DataVolumes
ssh_key: "~/.ssh/id_rsa.pub"
Environment Setup:
# Set OpenShift cluster credentials
export OPENSHIFT_CLUSTER_URL="https://api.cluster.example.com:6443"
export OPENSHIFT_CLUSTER_TOKEN="your_openshift_token"
# Deploy CNV VM
python yamlforge.py cnv-infrastructure.yaml -d output/ --auto-deploy
Deploy with Confidence
# Set up environment variables (copy and customize the template)
cp envvars.example.sh envvars.sh
# Edit envvars.sh with your credentials, then:
source envvars.sh
# See Command Line Options section for deployment commands
Configurable Default Username
YamlForge provides a configurable default username across all cloud providers for consistent SSH access:
Default Behavior: All instances use cloud-user as the default SSH username
Customization: Override in defaults/core.yaml or per-instance
# defaults/core.yaml - Organization-wide setting
security:
default_username: "cloud-user" # Change to your preferred username
# Or override per instance
yamlforge:
instances:
- name: "my-vm"
provider: "aws"
username: "my-custom-user" # Instance-specific override
Provider Support:
- AWS/Azure: Automatically creates the user via user data scripts
- GCP/OCI/IBM: Native support, no additional scripts needed
- All Providers: Consistent SSH commands and outputs
See Core Configuration Documentation for complete details.
Command Line Options
# Analyze configuration without generating Terraform
python yamlforge.py config.yaml --analyze
# Generate Terraform files
python yamlforge.py config.yaml -d output/
# Generate and deploy automatically
python yamlforge.py config.yaml -d output/ --auto-deploy
# Generate with verbose output (shows generated files, detailed AMI search info)
python yamlforge.py config.yaml -d output/ --verbose
# Generate without cloud credentials (uses placeholders, skips dynamic lookups, mainly for testing/development)
python yamlforge.py config.yaml -d output/ --no-credentials
Available Flags:
--analyze: Analyze configuration and show provider selections, cost analysis, and mappings without generating Terraform-d, --output-dir: Specify output directory for generated Terraform files (required unless using--analyze)--auto-deploy: Automatically deploy infrastructure after generating Terraform (cannot be used with--analyze)--verbose: Show detailed output including generated files and dynamic lookups--no-credentials: Skip cloud credential validation and use placeholders (mainly for testing/development, may result in unusable Terraform)
Configuration Analysis
Explore options without generating Terraform: Perfect for AI chatbots and exploring configurations:
# Analyze what providers would be selected and their costs
python yamlforge.py my-config.yaml --analyze
Example Analysis Output:
================================================================================
YAMLFORGE CLOUD ANALYSIS
================================================================================
Global provider exclusions: vmware, alibaba (excluded from cost comparison)
Global unexcluded providers: aws, azure, gcp, ibm_vpc, ibm_classic, oci
INSTANCES (2 found):
----------------------------------------
1. web-server-test1:
Provider: cheapest (aws)
Region: us-east (us-east1)
Size: medium (t3.medium)
Image: RHEL9-latest (RHEL-9.*)
Cost analysis for instance 'web-server-test1':
aws: $0.0416/hour → $0.0312/hour (25.0% discount) (t3.medium, 2 vCPU, 4GB) ← SELECTED
gcp: $0.0335/hour (e2-medium, 1 vCPU, 4GB)
azure: $0.0752/hour (Standard_B4ms, 4 vCPU, 16GB)
2. gpu-worker-test1:
Provider: cheapest-gpu (gcp)
Region: us-east (us-east1)
GPU Count: 1
GPU Type: NVIDIA T4
GPU Flavor: n1-standard-4-t4
Image: RHEL9-latest (rhel-cloud/rhel-9)
GPU-optimized cost analysis for instance 'gpu-worker-test1':
gcp: $0.3500/hour (n1-standard-4-t4, 4 vCPU, 15GB, 1x NVIDIA T4) ← SELECTED
aws: $0.5260/hour → $0.3945/hour (25.0% discount) (g4dn.xlarge, 4 vCPU, 16GB, 1x NVIDIA T4)
REQUIRED PROVIDERS:
----------------------------------------
• aws
• gcp
Perfect for AI Chatbots:
- "What's the cheapest GPU instance?"
- "What would a medium server cost on different clouds?"
- "What providers do I need for this configuration?"
- "Show me the mapped regions and flavors for this configuration"
AI-Assisted Configuration
DemoBuilder - Conversational Infrastructure Assistant: YamlForge includes DemoBuilder, a Streamlit-based conversational AI that transforms natural language into YamlForge configurations with advanced context-aware modification capabilities:
# Run the interactive AI assistant
cd demobuilder
streamlit run app.py
Example Conversations:
- "I need 3 RHEL VMs on AWS with SSH access"
- "Deploy a small ROSA cluster for development"
- "Create the cheapest GPU instance for machine learning"
- "Add an OpenShift HCP cluster to my existing infrastructure"
- "Add a bastion host to my current setup"
- "Change all instances to use the cheapest provider"
- "Remove one VM and add monitoring infrastructure"
Advanced Features:
- Pure AI-Driven Modifications: Context-aware configuration changes without static keyword matching
- Natural Language Processing: Describe infrastructure in plain English with intelligent intent recognition
- Real-time Schema Validation: Auto-validates and fixes configurations against YamlForge schema
- Live Cost Analysis: Direct integration with YamlForge
--analyzemode for instant cost feedback - Interactive Refinement: Seamlessly modify existing configurations through conversation
- Multi-cloud Support: All 11 YamlForge providers with intelligent cost optimization
- Preservation Logic: Maintains existing infrastructure while adding only requested changes
- Smart Instance Naming: Automatically generates meaningful names based on context (bastion-host, web-server, database, etc.)
Configuration Modification Examples:
Initial: "Deploy a ROSA HCP cluster"
→ Creates ROSA HCP cluster configuration
Follow-up: "Add a bastion host"
→ Preserves existing cluster, adds bastion-host instance with appropriate configuration
Follow-up: "Add monitoring and a database server"
→ Preserves cluster and bastion, adds monitoring-server and database instances
Follow-up: "Make everything use the cheapest providers"
→ Updates all components to use cost-optimized providers while maintaining functionality
Training AI to Use YamlForge:
Provide the AI with our JSON schema (docs/yamlforge-schema.json) and real examples from the examples/ directory. Emphasize the required 5-character GUID, valid provider names, and exact field structure. See AI Training Guide for comprehensive training materials.
Use AI assistants to generate YamlForge configurations from natural language:
# Ask your AI assistant:
"Create a YamlForge YAML configuration for:
'Production OpenShift cluster on AWS with monitoring and a sample web application'"
# AI generates valid YAML following our [schema](docs/yamlforge-schema.json)
# Save the output and analyze/deploy with YamlForge
python yamlforge.py ai-generated-config.yaml --analyze # See what it will do
python yamlforge.py ai-generated-config.yaml -d output/ --auto-deploy # Deploy it
## Real-World Scenarios
### Multi-Cloud Strategy
Deploy identical infrastructure across multiple clouds for redundancy and compliance:
```yaml
guid: "prod1"
yamlforge:
cloud_workspace:
name: "production-multi-cloud-{guid}"
description: "Production deployment across multiple clouds"
instances:
- name: "app-aws-{guid}"
provider: "aws"
region: "us-east"
flavor: "large"
image: "RHEL9-latest"
- name: "app-azure-{guid}"
provider: "azure"
region: "us-east"
flavor: "large"
image: "RHEL9-latest"
- name: "app-gcp-{guid}"
provider: "gcp"
region: "us-east"
flavor: "large"
image: "RHEL9-latest"
Cloud Migration
Seamlessly migrate workloads between cloud providers:
guid: "mig1"
yamlforge:
cloud_workspace:
name: "migration-to-aws-{guid}"
description: "Migrating from Azure to AWS"
instances:
- name: "migrated-app-{guid}"
provider: "aws" # Migrate from Azure to AWS
region: "us-east"
flavor: "medium"
image: "RHEL9-latest"
Flavor Mapping
No need to memorize provider-specific instance types! YamlForge automatically maps your CPU and memory requirements to the appropriate instance type for each cloud:
guid: "flav1"
yamlforge:
cloud_workspace:
name: "flavor-mapping-{guid}"
description: "Demonstrating CPU/memory to flavor mapping"
instances:
- name: "web-server-{guid}"
provider: "aws"
region: "us-east"
cores: 2
memory: 4096 # MB - YamlForge selects t3.medium automatically
image: "RHEL9-latest"
- name: "app-server-{guid}"
provider: "azure"
region: "us-east"
cores: 4
memory: 8192 # MB - YamlForge selects Standard_D2s_v3 automatically
image: "RHEL9-latest"
- name: "database-{guid}"
provider: "gcp"
region: "us-east"
cores: 8
memory: 16384 # MB - YamlForge selects e2-standard-8 automatically
image: "RHEL9-latest"
Instead of learning:
- AWS: t3.micro, t3.small, t3.medium, m5.large, c5.xlarge...
- Azure: Standard_B1s, Standard_D2s_v3, Standard_E4s_v3...
- GCP: e2-micro, e2-small, e2-standard-8, n2-standard-4...
Just specify: cores: 4, memory: 8192 and YamlForge handles the rest!
Or use simple t-shirt sizing:
guid: "size1"
yamlforge:
cloud_workspace:
name: "t-shirt-sizing-{guid}"
description: "Using generic small/medium/large sizing"
instances:
- name: "web-server-{guid}"
provider: "aws"
region: "us-east"
flavor: "small" # Generic size - works on all clouds
image: "RHEL9-latest"
- name: "app-server-{guid}"
provider: "azure"
region: "us-east"
flavor: "medium" # Generic size - works on all clouds
image: "RHEL9-latest"
- name: "database-{guid}"
provider: "gcp"
region: "us-east"
flavor: "large" # Generic size - works on all clouds
image: "RHEL9-latest"
Available sizes: nano, micro, small, medium, large, xlarge, 2xlarge, 4xlarge, 8xlarge, 16xlarge
Instance Count and Scaling
Deploy multiple identical instances using the count field:
guid: "scale1"
yamlforge:
cloud_workspace:
name: "scaling-demo-{guid}"
description: "Instance scaling demonstration"
instances:
- name: "web-server-{guid}"
provider: "aws"
region: "us-east"
flavor: "medium"
image: "RHEL9-latest"
count: 5 # Deploy 5 identical web servers
- name: "worker-{guid}"
provider: "gcp"
region: "us-east"
cores: 4
memory: 8192
image: "RHEL9-latest"
count: 3 # Deploy 3 identical worker nodes
Instance Naming: When count > 1, instances are automatically named with suffixes:
web-server-scale1-1,web-server-scale1-2,web-server-scale1-3, etc.- Each instance gets identical configuration but unique names and resources
Cost Analysis: YamlForge automatically calculates total costs:
- Shows per-instance cost and total cost across all instances
- Includes count multipliers in cost summaries and analysis
Provider Discounts
YamlForge supports configurable provider-specific discounts for accurate cost analysis in enterprise environments:
Configuration Options:
# defaults/core.yaml - Organization-wide discounts
cost_analysis:
provider_discounts:
"aws": 10 # 10% enterprise agreement discount
"azure": 20 # 20% EA discount
"gcp": 10 # 10% committed use discount
"oci": 25 # 25% promotional discount
Environment Variable Overrides:
# Environment variables take precedence over core configuration
export YAMLFORGE_DISCOUNT_AWS=15 # 15% AWS discount
export YAMLFORGE_DISCOUNT_AZURE=20 # 20% Azure discount
export YAMLFORGE_DISCOUNT_GCP=10 # 10% GCP discount
export YAMLFORGE_DISCOUNT_OCI=25 # 25% OCI discount
export YAMLFORGE_DISCOUNT_IBM_VPC=18 # 18% IBM VPC discount
export YAMLFORGE_DISCOUNT_IBM_CLASSIC=12 # 12% IBM Classic discount
export YAMLFORGE_DISCOUNT_ALIBABA=30 # 30% Alibaba discount
export YAMLFORGE_DISCOUNT_VMWARE=5 # 5% VMware discount
Features:
- Percentage-based: Discounts specified as 0-100%
- Environment precedence: Environment variables override core configuration
- Cost analysis integration: Applied to all cost displays and cheapest provider selection
- Input validation: Invalid values show warnings and default to 0%
- Clear display: Shows both original and discounted prices:
$0.0416/hour → $0.0312/hour (25.0% discount)
Cost Optimization
YamlForge offers two intelligent cost optimization providers:
cheapest - General cost optimization for balanced workloads:
guid: "cost1"
yamlforge:
cloud_workspace:
name: "cost-optimized-{guid}"
description: "Automatically select cheapest provider"
instances:
- name: "api-server-{guid}"
provider: "cheapest" # Finds cheapest instance meeting CPU/memory requirements
region: "us-east"
flavor: "medium" # Must specify size or cores/memory
image: "RHEL9-latest"
- name: "database-server-{guid}"
provider: "cheapest" # CPU/memory only - no GPU needed
region: "us-east"
cores: 4
memory: 8192 # MB
image: "RHEL9-latest"
- name: "ml-training-{guid}"
provider: "cheapest" # Can also optimize GPU workloads with specs
region: "us-east"
cores: 8
memory: 16384 # MB
gpu_type: "NVIDIA V100"
gpu_count: 1
image: "RHEL9-latest"
- name: "app-server-{guid}"
provider: "cheapest" # Combines t-shirt sizing with cost optimization
region: "us-east"
flavor: "large" # Generic size - YamlForge finds cheapest "large" across all clouds
image: "RHEL9-latest"
cheapest-gpu - Specialized GPU cost optimization:
guid: "gpu1"
yamlforge:
cloud_workspace:
name: "gpu-optimized-{guid}"
description: "Cheapest GPU instances across all clouds"
instances:
- name: "gpu-worker-{guid}"
provider: "cheapest-gpu" # Focuses purely on GPU cost, ignores CPU/memory
region: "us-east"
gpu_type: "NVIDIA T4" # Only GPU requirements needed
gpu_count: 1
image: "RHEL9-latest"
Key Differences:
cheapest: Requiressizeorcores/memory, optimizes for overall costcheapest-gpu: Only needsgpu_type/gpu_count, finds cheapest GPU regardless of CPU/memory
Enterprise OpenShift
Deploy OpenShift clusters optimized for each cloud's native capabilities:
guid: "ocp1"
yamlforge:
cloud_workspace:
name: "enterprise-openshift-{guid}"
description: "Enterprise OpenShift across clouds"
openshift_clusters:
- name: "aws-rosa-{guid}"
type: "rosa-classic"
region: "us-east"
version: "4.18.19"
size: "large" # Cluster size (not instance size)
- name: "azure-aro-{guid}"
type: "aro"
region: "us-east"
version: "latest"
size: "large" # Cluster size (not instance size)
Generic Images
Use the same image names across all cloud providers:
guid: "img1"
yamlforge:
cloud_workspace:
name: "multi-os-deployment-{guid}"
description: "Deploying different operating systems across clouds"
instances:
- name: "web-server-{guid}"
provider: "aws"
region: "us-east"
flavor: "medium"
image: "RHEL9-latest" # Generic name - maps to provider-specific images
- name: "app-server-{guid}"
provider: "azure"
region: "us-east"
flavor: "medium"
image: "Ubuntu2204-latest" # Ubuntu 22.04 LTS - works on all clouds
- name: "db-server-{guid}"
provider: "gcp"
region: "us-east"
flavor: "medium"
image: "Fedora-latest" # Fedora (latest stable) - works on all clouds
- name: "monitoring-{guid}"
provider: "oci"
region: "us-east"
flavor: "medium"
image: "OracleLinux9-latest" # Oracle Linux 9 - works on all clouds
Generic Locations
Use simple region names that work across all cloud providers:
# Instead of learning provider-specific regions:
# AWS: us-east-1, Azure: East US, GCP: us-east1, OCI: us-ashburn-1...
# Just use: "us-east" - YamlForge maps to the correct region for each provider
region: "us-east" # Works on all clouds
Universal Mappings
YamlForge uses generic names that work across all clouds. All mappings are customizable:
Customizable Mappings:
All mappings can be customized in the mappings/ directory:
mappings/images.yaml- Customize image mappingsmappings/locations.yaml- Customize region mappingsmappings/flavors/- Customize instance type mappingsmappings/flavors_openshift/- Customize OpenShift-specific mappings
Unbiased and Transparent:
YamlForge is not biased toward any specific operating system image or cloud provider. We only use information freely available on the internet to determine costs and make recommendations. Users can add their own operating system images in the mappings/images.yaml file to customize the available options for their deployments.
Supported Platforms
Cloud Providers
- AWS - Native EC2, VPC, Security Groups, ROSA clusters
- Azure - Virtual Machines, VNets, Network Security Groups, ARO clusters
- GCP - Compute Engine with dynamic image discovery
- IBM Cloud - VPC Gen 2 and Classic Infrastructure (Configuration)
- Oracle Cloud (OCI) - Compute instances and networking
- Alibaba Cloud - ECS instances and VPC
- VMware vSphere - Virtual machines and networking
- CNV - Container Native Virtualization (KubeVirt) for Kubernetes and OpenShift clusters with automatic operator validation
OpenShift Platforms
- ROSA (Classic & HCP) - Red Hat OpenShift Service on AWS
- ARO - Azure Red Hat OpenShift
- OpenShift Dedicated - Managed OpenShift clusters
- Self-Managed - Custom OpenShift deployments
- HyperShift - Hosted control planes
Container Native Virtualization (CNV)
- Kubernetes KubeVirt - Upstream KubeVirt operator support
- OpenShift CNV - Red Hat CNV operator with enhanced features
- Automatic Validation - Kubernetes API-based operator validation
- Environment Variables - Direct cluster access via
OPENSHIFT_CLUSTER_URLandOPENSHIFT_CLUSTER_TOKEN - Namespace Management - Automatic namespace creation and CNV enablement
- DataVolume Support - Dynamic image discovery from DataVolumes
- Cost Optimization - Minimal cost since VMs use local cluster resources
Key Features
- Universal Cloud Support: Deploy to any major cloud provider with identical syntax
- Intelligent Assistance: AI-powered configuration generation from natural language
- Enterprise Patterns: Pre-built templates for OpenShift, Kubernetes, and production workloads
- Zero Lock-in: Migrate between clouds without rewriting your infrastructure code
- Production Hardened: Built-in security, compliance, and operational best practices
- Developer Experience: Intuitive YAML syntax that abstracts away cloud complexity
- Cost Optimization: Automatic cheapest provider selection
- GPU Support: Complete GPU instance support with cost analysis
- GUID-Based: Unique deployment identification (5-char required)
- Auto-Discovery: Automatic flavor recommendation
- Enterprise Security: Red Hat Cloud Access, service accounts
- Smart Detection: Only includes Terraform providers you use
- Unified Deployment: Single command deploys infrastructure and OpenShift clusters
- ROSA Integration: Automated ROSA account role creation via CLI
- CNV Integration: Kubernetes API-based validation and deployment for virtual machines
How It Works
Your Vision → YAML Definition → Universal Processing → Provider-Specific Terraform → Multi-Cloud Deployment
YamlForge acts as the intelligent translation layer between your infrastructure vision and the reality of multi-cloud deployment.
Documentation
- Getting Started
- DemoBuilder AI Assistant - Conversational infrastructure configuration
- Configuration Reference
- AI Training Guide
- Multi-Cloud Examples
- OpenShift Deployment
- CNV Provider
Contributing
Help us build the future of universal infrastructure. See our Contributing Guide.
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Author
Patrick T. Rutledge III
Project Link: https://github.com/rut31337/YamlForge
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 yamlforge_infra-1.0.0b2.tar.gz.
File metadata
- Download URL: yamlforge_infra-1.0.0b2.tar.gz
- Upload date:
- Size: 238.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0d3c25bdf9cb3595de3dc38d94d3d1968aa8838fbc182ecf1d7c47dc56983ed
|
|
| MD5 |
d7ff8d2fe847667c70d49c1b7c22eb09
|
|
| BLAKE2b-256 |
bffa83f3c12fd320325a9aad9b7a4a43c45ff6e4910772aa5906e7753b12184a
|
File details
Details for the file yamlforge_infra-1.0.0b2-py3-none-any.whl.
File metadata
- Download URL: yamlforge_infra-1.0.0b2-py3-none-any.whl
- Upload date:
- Size: 220.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09e02fc27098773436cb8b0c3063b689f0d0d30fc5c0269c13431dc4e1b87b37
|
|
| MD5 |
1579092158351c774fcd049068b21b03
|
|
| BLAKE2b-256 |
57895bcbd9189e7c73e8d8a562e9f188383a81a8dc2cbc2f8e8cad8750b4fa0a
|