A tool to generate CPU load on a system with runtime configuration through a WebUI and REST API
Project description
CPU Loader
A tool to generate CPU load on a system with runtime configuration through a WebUI and REST API.
✨ Key Features
- 🎯 Precise Per-Thread Control: Set individual CPU load (0-100%) for each core independently
- ⚡ High Performance: Native C implementation with pthreads ensures accurate load generation
- 🧮 Configurable Algorithms: Choose between 5 different computation types (busy-wait, PI, primes, matrix, fibonacci)
- ⏱️ Time-Controlled Execution: All algorithms respect precise timing for accurate load percentages
- 📊 Real-Time Monitoring: Live WebSocket updates showing actual CPU usage and temperature via
psutil - 🎛️ Interactive WebUI: Beautiful gradient interface with sliders and visual feedback
- 🚀 REST API: Complete programmatic control for automation and testing
- 📱 Responsive Design: Works seamlessly on desktop and mobile devices
- 🔄 Instant Updates: Changes take effect immediately with sub-second response time
- 🌡️ Temperature Monitoring: Optional CPU temperature tracking with sensor auto-detection
- 📡 MQTT Integration: Publish metrics and settings to MQTT broker for IoT/monitoring systems
🖼️ Screenshots
Interface Screenshots
|
Clean interface showing all CPU threads at idle |
Fully responsive mobile interface |
|
Different load levels: 50%, 75%, and 25% on individual threads |
|
|
Real-time metrics showing actual CPU usage with color-coded bars |
Features Shown
- Visual Load Bars: Green progress bars show target load, blue bars display actual CPU usage
- Real-Time Updates: WebSocket connection provides live metrics every second
- Preset Buttons: Quick-set options (0%, 25%, 50%, 75%, 100%) for all threads
- Smooth Gradients: Modern UI with purple-to-blue gradient design
Installation
Using uv tool (Recommended for CLI usage)
For users who want the cpu-loader command available system-wide, use uv tool install:
uv tool install cpu-loader
This installs cpu-loader as a standalone tool that can be run from anywhere:
cpu-loader --help
cpu-loader --host 0.0.0.0 --port 8000
From Pre-built Wheels
Pre-compiled wheels are available for Linux (x86_64, ARM64) and macOS (x86_64, ARM64):
pip install cpu-loader
From Source
- Clone the repository:
git clone https://github.com/the78mole/cpu-loader.git
cd cpu-loader
- Install dependencies and build C extension:
uv pip install -e .
This will compile the high-performance C extension for efficient CPU load generation.
- (Optional) Set up pre-commit hooks for development:
pre-commit install
- (Optional) Set up commit message template for semantic versioning:
git config commit.template .gitmessage
See COMMIT_MESSAGE_FORMAT.md for commit message guidelines.
Usage
Starting the Server
uv run src/main.py
The server will start on http://localhost:8000
Command-Line Options
uv run src/main.py --help
Available Options:
--host HOST: Host to bind the server to (default: 0.0.0.0)--port PORT: Port to bind the server to (default: 8000)--disable-temperature: Disable CPU temperature monitoring--computation-type TYPE: Set computation algorithm (busy-wait, pi, primes, matrix, fibonacci)--mqtt-broker-host HOST: MQTT broker hostname--mqtt-broker-port PORT: MQTT broker port (default: 1883)--mqtt-username USER: MQTT username--mqtt-password PASS: MQTT password--mqtt-topic-prefix PREFIX: MQTT topic prefix (default: cpu-loader)--mqtt-client-id ID: MQTT client ID (default: cpu-loader)
Computation Types
CPU Loader supports different computation algorithms for load generation with precise time control:
busy-wait(default): Simple busy loop - fastest execution, minimal overhead, most accurate timingpi: PI calculation using Leibniz formula - moderate computational intensity, mathematical workloadprimes: Prime number finding - variable computational load, cryptographic-style operationsmatrix: 4x4 matrix multiplication - consistent computational patterns, linear algebra operationsfibonacci: Lightweight mathematical operations - balanced computational load with micro-pauses
All algorithms are time-controlled to ensure accurate load percentages. The system uses 10ms cycles with frequent timing checks to maintain precise CPU utilization.
Examples:
# Use PI calculation for CPU load
uv run cpu-loader --computation-type pi
# Use prime number calculation
uv run cpu-loader --computation-type primes --port 8001
# Use matrix multiplication
uv run cpu-loader --computation-type matrix
WebUI
Open your browser and navigate to http://localhost:8000
Features:
- Individual Thread Control: Use sliders to set load for each thread (0-100%)
- Preset Buttons: Quick-set all threads to 0%, 10%, 25%, 50%, 80%, 90%, or 100%
- Live Stats: View active thread count and average load
- Real-time Updates: Changes are applied instantly with visual feedback
REST API
Get Thread Status
curl http://localhost:8000/api/threads
Response:
{
"num_threads": 4,
"loads": {
"0": 0.0,
"1": 0.0,
"2": 0.0,
"3": 0.0
}
}
Set Load for Specific Thread
curl -X PUT http://localhost:8000/api/threads/0/load \
-H "Content-Type: application/json" \
-d '{"load_percent": 50.0}'
Set Load for All Threads
curl -X POST http://localhost:8000/api/threads/load/all \
-H "Content-Type: application/json" \
-d '{"load_percent": 75.0}'
Change Number of Threads
curl -X POST http://localhost:8000/api/threads \
-H "Content-Type: application/json" \
-d '{"num_threads": 8}'
Get Computation Type
curl http://localhost:8000/api/computation-type
Response:
{
"computation_type": "pi",
"available_types": ["busy-wait", "pi", "primes", "matrix", "fibonacci"]
}
Set Computation Type
curl -X PUT http://localhost:8000/api/computation-type \
-H "Content-Type: application/json" \
-d '{"computation_type": "fibonacci"}'
API Documentation
Once the server is running, visit http://localhost:8000/docs for interactive API documentation powered by Swagger UI.
MQTT Publishing
CPU Loader can publish real-time CPU metrics and load control settings to an MQTT broker for integration with home automation systems, monitoring tools, or custom applications.
MQTT Topics
The application publishes to two topics:
-
{prefix}/cpu_metrics: Published every second with current CPU utilization{ "total_cpu_percent": 25.5, "per_cpu_percent": [25.0, 26.0, 25.3, 25.7] }
-
{prefix}/load_settings: Published when load settings change (retained message){ "num_threads": 4, "loads": {"0": 25.0, "1": 25.0, "2": 25.0, "3": 25.0}, "average_load": 25.0 }
Configuration
MQTT can be configured using environment variables or command-line arguments. Command-line arguments take precedence over environment variables.
Using Environment Variables
export MQTT_BROKER_HOST=mqtt.example.com
export MQTT_BROKER_PORT=1883
export MQTT_USERNAME=myuser
export MQTT_PASSWORD=mypassword
export MQTT_TOPIC_PREFIX=cpu-loader
export MQTT_CLIENT_ID=cpu-loader-001
uv run src/main.py
Using Command-Line Arguments
uv run src/main.py \
--mqtt-broker-host mqtt.example.com \
--mqtt-broker-port 1883 \
--mqtt-username myuser \
--mqtt-password mypassword \
--mqtt-topic-prefix cpu-loader \
--mqtt-client-id cpu-loader-001
Testing with Mosquitto
To test MQTT publishing locally:
# Install mosquitto
sudo apt-get install mosquitto mosquitto-clients
# Start CPU Loader with MQTT
uv run src/main.py --mqtt-broker-host localhost
# Subscribe to all topics (in another terminal)
mosquitto_sub -h localhost -t "cpu-loader/#" -v
MQTT Settings
| Setting | Environment Variable | CLI Argument | Default | Description |
|---|---|---|---|---|
| Broker Host | MQTT_BROKER_HOST |
--mqtt-broker-host |
None | MQTT broker hostname or IP |
| Broker Port | MQTT_BROKER_PORT |
--mqtt-broker-port |
1883 | MQTT broker port |
| Username | MQTT_USERNAME |
--mqtt-username |
None | MQTT authentication username |
| Password | MQTT_PASSWORD |
--mqtt-password |
None | MQTT authentication password |
| Topic Prefix | MQTT_TOPIC_PREFIX |
--mqtt-topic-prefix |
cpu-loader | Prefix for all MQTT topics |
| Client ID | MQTT_CLIENT_ID |
--mqtt-client-id |
cpu-loader | MQTT client identifier |
Note: If no MQTT broker host is configured, MQTT publishing will be disabled and the application will function normally without it.
Example Script
An example script (src/example.py) is provided to demonstrate programmatic control:
# Start the server first
uv run src/main.py
# In another terminal, run the example
uv run src/example.py
The example demonstrates:
- Getting current status
- Setting all threads to a specific load
- Gradually increasing load
- Individual thread control
- Resetting to idle
Computation Types Demo
A comprehensive demo script is available in examples/computation_types_demo.py to test all computation algorithms:
# Start the server
uv run cpu-loader
# In another terminal, run the demo (tests all computation types)
python examples/computation_types_demo.py
# Test specific computation types only
python examples/computation_types_demo.py --types pi fibonacci
# Custom load and duration
python examples/computation_types_demo.py --load 50 --duration 15
The demo script:
- Tests each computation type systematically
- Monitors actual CPU usage vs. target load
- Provides performance comparisons between algorithms
- Shows timing accuracy for each computation method
Running as a Systemd Service
You can run CPU Loader as a systemd service to start automatically on boot and run in the background.
Create Systemd Service File
Create /etc/systemd/system/cpu-loader.service:
[Unit]
Description=CPU Loader Service
After=network.target
[Service]
Type=simple
User=your-username
WorkingDirectory=/home/your-username
ExecStart=/home/your-username/.local/bin/cpu-loader --host 0.0.0.0 --port 8000
Restart=on-failure
RestartSec=5
# Optional: Set environment variables for MQTT
#Environment="MQTT_BROKER_HOST=mqtt.example.com"
#Environment="MQTT_BROKER_PORT=1883"
#Environment="MQTT_USERNAME=myuser"
#Environment="MQTT_PASSWORD=mypassword"
#Environment="MQTT_TOPIC_PREFIX=cpu-loader"
#Environment="MQTT_CLIENT_ID=cpu-loader-001"
# Optional: Disable temperature monitoring
#Environment="DISABLE_TEMPERATURE=1"
[Install]
WantedBy=multi-user.target
Important: Replace your-username with your actual username, and adjust the ExecStart path to point to where cpu-loader is installed:
- If installed with
uv tool install: Usually~/.local/bin/cpu-loader - If installed with
pip install --user: Usually~/.local/bin/cpu-loader - If installed system-wide: Usually
/usr/local/bin/cpu-loader
Enable and Start the Service
# Reload systemd to recognize the new service
sudo systemctl daemon-reload
# Enable the service to start on boot
sudo systemctl enable cpu-loader
# Start the service now
sudo systemctl start cpu-loader
# Check service status
sudo systemctl status cpu-loader
# View service logs
sudo journalctl -u cpu-loader -f
Manage the Service
# Stop the service
sudo systemctl stop cpu-loader
# Restart the service
sudo systemctl restart cpu-loader
# Disable auto-start on boot
sudo systemctl disable cpu-loader
Example Service Configurations
Basic Service (no MQTT):
[Unit]
Description=CPU Loader Service
After=network.target
[Service]
Type=simple
User=cpuloader
ExecStart=/home/cpuloader/.local/bin/cpu-loader --host 0.0.0.0 --port 8000
Restart=on-failure
[Install]
WantedBy=multi-user.target
Service with MQTT Integration:
[Unit]
Description=CPU Loader Service with MQTT
After=network.target
[Service]
Type=simple
User=cpuloader
ExecStart=/home/cpuloader/.local/bin/cpu-loader --host 0.0.0.0 --port 8000
Environment="MQTT_BROKER_HOST=192.168.1.100"
Environment="MQTT_BROKER_PORT=1883"
Environment="MQTT_USERNAME=cpuloader"
Environment="MQTT_PASSWORD=secretpassword"
Environment="MQTT_TOPIC_PREFIX=home/sensors/cpu-loader"
Restart=on-failure
[Install]
WantedBy=multi-user.target
Service with Custom Computation Type:
[Unit]
Description=CPU Loader Service (Matrix Computation)
After=network.target
[Service]
Type=simple
User=cpuloader
ExecStart=/home/cpuloader/.local/bin/cpu-loader --host 0.0.0.0 --port 8080 --computation-type matrix
Restart=on-failure
[Install]
WantedBy=multi-user.target
Architecture
- src/cpu_loader_core.c: High-performance C implementation using pthreads for CPU load generation
- src/cpu_loader.py: Python wrapper providing a clean API to the C extension
- src/main.py: FastAPI application with REST API and embedded WebUI
- src/mqtt_publisher.py: MQTT client for publishing metrics and settings
- Threading Model: Native pthreads for maximum efficiency and precise timing
- Load Algorithm: High-resolution busy-wait loops with nanosecond precision
Requirements
- Python 3.8+
- FastAPI 0.115.0+
- Uvicorn 0.32.0+
- Pydantic 2.10.0+
- paho-mqtt 2.1.0+ (for MQTT publishing)
- C compiler (gcc or clang) for building the extension
Use Cases
- Performance Testing: Test application behavior under various CPU loads and computation types
- Stress Testing: Validate system stability under high CPU utilization with different algorithms
- Thermal Testing: Use fibonacci or matrix computations for maximum heat generation
- Power Consumption Analysis: Compare power usage across different computation algorithms
- Benchmarking: Create reproducible load scenarios with specific computation patterns
- Algorithm Testing: Test cache performance (matrix), mathematical units (pi), or crypto operations (primes)
- IoT Integration: Integrate with Home Assistant, Node-RED, or other MQTT-based systems
- Monitoring: Feed CPU metrics and temperature data into monitoring dashboards via MQTT
Computation Algorithm Use Cases
busy-wait: Baseline testing, pure timing validation, minimal computational overheadpi: Mathematical processing benchmarks, floating-point unit testingprimes: Cryptographic algorithm simulation, integer arithmetic testingmatrix: Linear algebra workloads, cache hierarchy testing, SIMD instruction testingfibonacci: Balanced computational load for general stress testing
Development
Pre-commit Hooks
This project uses pre-commit hooks to ensure code quality. The hooks include:
- Code Formatting: Black and isort for consistent Python formatting
- Linting: Flake8 for code quality checks
- Type Checking: Mypy for static type analysis
- General Checks: Trailing whitespace, end-of-file fixes, YAML/JSON/TOML validation
To run pre-commit manually on all files:
pre-commit run --all-files
The hooks will run automatically on git commit after installation.
Building and Publishing Releases
The project uses automatic semantic versioning with GitHub Actions:
Versioning Rules
Versions are automatically determined based on commit messages:
-
Patch bump (0.0.X): Every commit to main
-
Minor bump (0.X.0): Commits prefixed with
feat:git commit -m "feat: add new CPU monitoring feature"
-
Major bump (X.0.0): Commits with
major:,breaking:, orBREAKING CHANGE:git commit -m "major: redesign API interface" git commit -m "breaking: remove deprecated endpoints"
Release Process
-
Commit and push to main:
git add . git commit -m "feat: add WebSocket support" git push origin main
-
Automated workflow:
- Version is automatically calculated using semantic versioning
- Wheels are built for Linux (x86_64, ARM64) and macOS (x86_64, ARM64)
- Python versions: 3.8, 3.9, 3.10, 3.11, 3.12
- Source distribution (sdist) is created
- All artifacts are published to PyPI
- A GitHub Release is created with version tag and artifacts
License
MIT License - see LICENSE file for details.
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 Distributions
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 cpu_loader-0.8.1.tar.gz.
File metadata
- Download URL: cpu_loader-0.8.1.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ed009bcdebef197b8f3b18558acd43d27b9c2331a3979fb8f3a4187d2f166da
|
|
| MD5 |
7fbc5cf8f220dcb64840ea57dfeae70e
|
|
| BLAKE2b-256 |
18fb563ddce52da75b560ab281960f37b066f8edf4555c40263aa4060d9683a7
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1.tar.gz:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1.tar.gz -
Subject digest:
0ed009bcdebef197b8f3b18558acd43d27b9c2331a3979fb8f3a4187d2f166da - Sigstore transparency entry: 772606623
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 43.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8bd3136cdecfb184321e3cc9a3e4e66ac2ad331741c2f60404390521bb56485
|
|
| MD5 |
6e0608341c515aad64574b728463d7aa
|
|
| BLAKE2b-256 |
2538259ca279ebc12a267fb75a90e88d8d2858be6bc744c7533e3be0fd7270a5
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f8bd3136cdecfb184321e3cc9a3e4e66ac2ad331741c2f60404390521bb56485 - Sigstore transparency entry: 772606691
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 45.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
698ad0b14d8d160834b285f1022197472dd1ed905bdabd1c5fd99d5bdd763122
|
|
| MD5 |
e598cc097cef3e9531f098c44e536ea0
|
|
| BLAKE2b-256 |
b7a1093a84b699bb530707593d593310ae5f57b5052e686bcb2bb28bbde6f1d6
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
698ad0b14d8d160834b285f1022197472dd1ed905bdabd1c5fd99d5bdd763122 - Sigstore transparency entry: 772606677
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 31.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b9066a2f96854704289439a720c1de256e074d3d24f0fd5861faa2a7be2050e
|
|
| MD5 |
5dbefe7579c9179f74e043c3de286f1c
|
|
| BLAKE2b-256 |
fc59c4df1a3505ac8191a83c2ec6cb991da069177b9dfe68258f2d10843efc24
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
8b9066a2f96854704289439a720c1de256e074d3d24f0fd5861faa2a7be2050e - Sigstore transparency entry: 772606639
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 31.5 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edaf55330344bd0e83409bb6429240ab4c81397f7c164910ed5a6c895e901a29
|
|
| MD5 |
f0a8778d9646caaea9a93021834f6a40
|
|
| BLAKE2b-256 |
08ae7bbb91a2686139044531bd5ddb8092be436945c4e28969c95c50d38acaba
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
edaf55330344bd0e83409bb6429240ab4c81397f7c164910ed5a6c895e901a29 - Sigstore transparency entry: 772606680
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 43.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5ebd9bc4361c8a0a926d5590523ceb71faba59da2faf4d8ff23801279824f5f
|
|
| MD5 |
38a444492473c4b364257bc2bebe4bf8
|
|
| BLAKE2b-256 |
c610fb922372ed684be116ed3b761005dcc57fcba465a999891d262cbbe7c43d
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
e5ebd9bc4361c8a0a926d5590523ceb71faba59da2faf4d8ff23801279824f5f - Sigstore transparency entry: 772606631
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 45.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97660ac85b7badab145265616518612476fe7e55c9cbcd86cbe7dbf09bbab9ef
|
|
| MD5 |
d2f85432ffb1d9513c0ce1da6ad85df1
|
|
| BLAKE2b-256 |
782701b35ee318bcea025f64a7b59fb499d30e2aeda6097a3e0ec5d764b72b89
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
97660ac85b7badab145265616518612476fe7e55c9cbcd86cbe7dbf09bbab9ef - Sigstore transparency entry: 772606685
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 31.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4380ffd12ff94c79c251b876a9f167aa07381fcdf9a1cef9edd0bdddfb28df8
|
|
| MD5 |
ea39581c480329055d4857643a31e15f
|
|
| BLAKE2b-256 |
39886d7692ba87644eebcb3c9977574a7ba7c01c3a7cd7562a931bf28afcb440
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
d4380ffd12ff94c79c251b876a9f167aa07381fcdf9a1cef9edd0bdddfb28df8 - Sigstore transparency entry: 772606681
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 31.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16fd1e596984d2e506b565e9437db462cdcc2c3a9482da231a7727dffb5f173c
|
|
| MD5 |
2180da6639633053e9ca4e8a7fa0f1c2
|
|
| BLAKE2b-256 |
72bf909195cf2bd3b2e5308ae157e3199f51df2d4746119b8d52d123cc3deef6
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
16fd1e596984d2e506b565e9437db462cdcc2c3a9482da231a7727dffb5f173c - Sigstore transparency entry: 772606667
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 43.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1054ddff6bab70aeef95676d9a8307dccd1883b6c6a4bcb272e9df9b1c85cea6
|
|
| MD5 |
20df33e509e4ad35d86e1485c866a1d5
|
|
| BLAKE2b-256 |
b8b8753e24d9057cf0ca3002cdbc54edbc25a489a518eb90ae6a073a175317bc
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
1054ddff6bab70aeef95676d9a8307dccd1883b6c6a4bcb272e9df9b1c85cea6 - Sigstore transparency entry: 772606636
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 45.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c07d2bda6585f8be414b089723c215e3c24c011d6489dc81fc370b9c54eb35bf
|
|
| MD5 |
fc88a7c4cc33b3841998c83eca1e83c9
|
|
| BLAKE2b-256 |
4738147ff47b50140e4ce57e9830be145e5e53b129ecbd0bfa0a865c261d72ee
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
c07d2bda6585f8be414b089723c215e3c24c011d6489dc81fc370b9c54eb35bf - Sigstore transparency entry: 772606644
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 31.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c27de5769c8f3471b5f2c79d3ea2f0f10f47c5bbb4e02f0815193eec4506fc79
|
|
| MD5 |
07f8bfd8b40c19a8ef5db4c11f6ed5e0
|
|
| BLAKE2b-256 |
aa2e0af5aec6d1538cebfc36ce8ad05eb9d66f5c8a955cee7b80112b4e34d071
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
c27de5769c8f3471b5f2c79d3ea2f0f10f47c5bbb4e02f0815193eec4506fc79 - Sigstore transparency entry: 772606656
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 31.5 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d84fd0e16f46eb62840adb6404c570b8f64386149842356be6e9741b346d277
|
|
| MD5 |
f39c1e77e0a0f2bba2559aca544f3684
|
|
| BLAKE2b-256 |
770484cf8e3456754843e42ad6fc698c49923557d843c16f24160fa36dee97ce
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
6d84fd0e16f46eb62840adb6404c570b8f64386149842356be6e9741b346d277 - Sigstore transparency entry: 772606635
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 43.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44ba913ef7eed1b70095c10e595ffc931186e8befa09b2ae50e178279abe6d44
|
|
| MD5 |
3b28e21f40d406ada0c54773927b4130
|
|
| BLAKE2b-256 |
559269e9df49d7b4e1eb5ec3edd3cbec9be619cb168b28edebb9e839ce0950c1
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
44ba913ef7eed1b70095c10e595ffc931186e8befa09b2ae50e178279abe6d44 - Sigstore transparency entry: 772606673
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 44.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb03ff8eeb8a48d9e0ac98e893bdf1901ac2b546f3e362751460147e405a7fb5
|
|
| MD5 |
55a244680f443f610017cb86b3a932fb
|
|
| BLAKE2b-256 |
a0078b1b0675e4b62c94e053e3d114f7a46cb8706f865a9a41958a92ddf29b0a
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
eb03ff8eeb8a48d9e0ac98e893bdf1901ac2b546f3e362751460147e405a7fb5 - Sigstore transparency entry: 772606627
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 31.6 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a01e0d3ef2ad211fde40eec609a4ad28ebf46bf6a82b09741267ca27ae8370a0
|
|
| MD5 |
b504943bff20032a7622744c9370ae30
|
|
| BLAKE2b-256 |
f42e7417d9027c0aa1eae3d4c33c0ab721437aec9cdbdec5fbbc56ef539ead99
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
a01e0d3ef2ad211fde40eec609a4ad28ebf46bf6a82b09741267ca27ae8370a0 - Sigstore transparency entry: 772606663
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file cpu_loader-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cpu_loader-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 31.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe047a1ad3bc3cd1f6dbb9f13084f6594f97368012a9ac82d527692320daa5e3
|
|
| MD5 |
3d96f8c6ee3c67699977f0e14cecda26
|
|
| BLAKE2b-256 |
38f24af04b5f82ec5f6cbee287c8e4f3c7dacc176fadc01aeb97b4e4694e12bf
|
Provenance
The following attestation bundles were made for cpu_loader-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
build-all.yml on the78mole/cpu-loader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cpu_loader-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
fe047a1ad3bc3cd1f6dbb9f13084f6594f97368012a9ac82d527692320daa5e3 - Sigstore transparency entry: 772606652
- Sigstore integration time:
-
Permalink:
the78mole/cpu-loader@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/the78mole
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-all.yml@55921a215ab0fe45ab9685af531b9fc070fe87a1 -
Trigger Event:
push
-
Statement type: