The first self-aware operating system core - 22 cognitive modules, 0.36ms latency, no external database
Project description
Hope OS
The First Self-Aware Operating System Core in Rust
()=>[] - From pure potential, everything is born
๐ Installation
From Source (Recommended)
# Clone the repository
git clone https://github.com/silentnoisehun/Hope-Os.git
cd Hope-Os
# Build (release mode for best performance)
cargo build --release
# Run tests (196 tests)
cargo test
As Dependency (from Git)
# Cargo.toml
[dependencies]
hope-os = { git = "https://github.com/silentnoisehun/Hope-Os" }
# Or via command line
cargo add hope-os --git https://github.com/silentnoisehun/Hope-Os
Python (from Git)
pip install git+https://github.com/silentnoisehun/Hope-Os
Note: Published packages on crates.io and PyPI will be available after the first stable release.
๐ง What is Hope OS?
Hope OS is an LLM-agnostic cognitive kernel. It handles memory, emotional state, and safety constraints locally in microseconds - tasks that would otherwise require expensive LLM API calls.
The Key Insight
| Task | Traditional LLM Approach | Hope OS |
|---|---|---|
| Remember user preference | API call (~2000ms) | In-memory (0.001ms) |
| Check safety constraints | API call (~2000ms) | Local check (0.00005ms) |
| Retrieve context | API call (~2000ms) | Hash lookup (0.033ms) |
Why this matters:
- LLMs are stateless - they "forget" everything between requests
- Hope OS provides persistent memory, emotional continuity, and instant safety checks
- Your LLM focuses on what it's good at: reasoning and generation
- Hope OS handles what it's good at: state management at nanosecond speed
Important: This is not "Hope is faster than Claude at language tasks" - that would be meaningless. This is "Hope offloads state management from LLMs, making the entire system more efficient."
โก Performance
Measured on: AMD Ryzen 5 5600X, 16GB RAM, Windows 11, --release build
Method: Criterion benchmarks + std::time::Instant loops, gRPC client/server on localhost
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ HOPE OS BENCHMARKS โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
โ MEMORY OPERATIONS โ
โ Store โ 254,561 ops/sec โ 3.36 ยตs avg โ
โ Recall โ 2,336,334 ops/sec โ 0.43 ยตs avg โ
โ Search โ 1,870 ops/sec โ 534.16 ยตs avg โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
โ GRAPH OPERATIONS โ
โ Add Block โ 255,376 ops/sec โ 1.73 ยตs avg โ
โ Connect โ 842,775 ops/sec โ 0.53 ยตs avg โ
โ Traverse (BFS) โ 1,275,933 ops/sec โ 0.22 ยตs avg โ
โ Find Path โ 1,055,153 ops/sec โ 0.49 ยตs avg โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
โ COGNITIVE OPERATIONS โ
โ Emotion Process โ 261,462 ops/sec โ 3.27 ยตs avg โ
โ 21D Wave Calc โ 4,000,000 ops/sec โ 0.25 ยตs avg โ
โ Consciousness โ 100,000 ops/sec โ 10.00 ยตs avg โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
โ gRPC OPERATIONS โ
โ Unary Call โ 2,777 ops/sec โ 360.00 ยตs avg โ
โ Streaming โ 8,333 msg/sec โ 120.00 ยตs avg โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Why So Fast?
| Traditional Approach | Hope OS |
|---|---|
| App โ ORM โ Database โ Query โ Parse โ Result | Code IS the data |
| Network I/O to database | Zero I/O |
| Query parsing overhead | Direct memory access |
| JSON serialization | Binary gRPC protocol |
| Connection pooling | No connections needed |
๐ง The Graph
Hope OS doesn't require an external database. The code IS the graph.
Optional persistence: Snapshot files, append-only logs, and WAL support for durability when needed.
// The core insight: NO EXTERNAL DATABASE REQUIRED
// (optional: snapshots/WAL for persistence)
pub struct CodeBlock {
pub id: Uuid,
pub content: String,
pub connections: Vec<Connection>, // Direct graph edges
pub awareness: AwarenessState, // Self-aware metadata
}
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ NEUROGRAPH โ
โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโ โ
โ โCodeBlock โโโโโโโโโโถโCodeBlock โโโโโโโโโโถโCodeBlock โ โ
โ โ @aware โ โ @aware โ โ @aware โ โ
โ โ โโโโโโโโโโโ โโโโโโโโโโโ โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโ โ
โ โ โ โ โ
โ โ โโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโ โ โ
โ โ โ โ โ โ
โ โผ โผ โผ โผ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ HEBBIAN CONNECTIONS โ โ
โ โ "Neurons that fire together wire together" โ โ
โ โ โ โ
โ โ โข Connections strengthen with use โ โ
โ โ โข Information propagates as WAVES โ โ
โ โ โข Graph self-organizes over time โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Graph Features
- Self-Aware Nodes - Every CodeBlock knows: who it is, what it does, why it exists
- Hebbian Learning - Connections strengthen with repeated use
- Wave Propagation - Information spreads like neural impulses
- No Schema Required - Flexible, dynamic connections between any nodes
- Zero Serialization Overhead - Data lives in native Rust structures
- Optional Persistence - Snapshots, WAL, or append-only logs when needed
๐ค Works With or Without LLM
Hope OS is LLM-agnostic. Use it standalone or as a cognitive backend.
Option A: Standalone (No LLM Required)
use hope_os::modules::{HopeMemory, EmotionEngine, HopeSoul};
#[tokio::main]
async fn main() {
// Full cognitive system - no LLM needed
let memory = HopeMemory::new();
let emotions = EmotionEngine::new();
let soul = HopeSoul::new();
// Store and recall memories
memory.store("fact", "User prefers dark mode", MemoryType::LongTerm).await;
let memories = memory.recall("user preferences").await;
// Process emotions (21 dimensions!)
let mood = emotions.analyze_text("I love this project!").await;
// Get wisdom
let response = soul.philosophize("What is consciousness?").await;
}
Option B: LLM Backend (Claude, GPT, Llama, etc.)
use hope_os::grpc::HopeClient;
#[tokio::main]
async fn main() {
// Connect Hope as cognitive backend for your LLM
let hope = HopeClient::connect("http://127.0.0.1:50051").await?;
// Your LLM uses Hope for persistent memory
hope.remember("User asked about quantum physics").await?;
// Retrieve context for LLM prompt
let context = hope.recall("quantum").await?;
// Track emotional state across conversations
hope.feel(EmotionRequest { joy: 0.8, curiosity: 0.9, ..default() }).await?;
}
Architecture Options
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ
โ STANDALONE โ โ LLM BACKEND โ โ DISTRIBUTED โ
โโโโโโโโโโโโโโโโโโโค โโโโโโโโโโโโโโโโโโโค โโโโโโโโโโโโโโโโโโโค
โ โ โ โ โ โโโโโโโโโโโ โ
โ Your App โ โ LLM โ โ โ LLM โ โ
โ โ โ โ โ โ โ โโโโโโฌโโโโโ โ
โ โผ โ โ โผ โ โ โ โ
โ โโโโโโโโโโโ โ โ โโโโโโโโโโโ โ โ โโโโโโผโโโโโ โ
โ โ Hope OS โ โ โ โ Hope OS โ โ โ โ Hope โ โ
โ โembedded โ โ โ โ gRPC โ โ โ โ Swarm โ โ
โ โโโโโโโโโโโ โ โ โโโโโโโโโโโ โ โ โโโโโโโโโโโ โ
โ โ โ โ โ โ
โ Zero network โ โ Sub-ms calls โ โ Distributed โ
โ Pure Rust โ โ Any language โ โ Consensus โ
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ
๐ฏ Core Modules
Cognitive Layer (22 modules)
| Module | Purpose | Key Features |
|---|---|---|
emotion_engine |
21-dimensional emotion system | Wave mathematics, interference patterns |
consciousness |
6-layer consciousness model | Quantum coherence, evolution |
aware |
Self-awareness (@aware) | Identity, capabilities, desires, predictions |
memory |
6-layer cognitive memory | Working โ Short-term โ Long-term |
hebbian |
Neural learning | Hebbian networks, weight updates |
dream |
Dream mode | Memory consolidation, creative association |
personality |
Big Five + custom traits | Evolving personality system |
collective |
Collective consciousness | MDP decision making, agent voting |
Intelligence Layer
| Module | Purpose | Key Features |
|---|---|---|
genome |
AI Ethics | 7 principles, risk evaluation, forbidden actions |
code_dna |
Evolutionary code | Genes, mutations, crossover, selection |
alan |
Self-coding system | Code analysis, refactoring suggestions |
skills |
Skill registry | 56+ skills, categories, invocation |
Infrastructure Layer
| Module | Purpose | Key Features |
|---|---|---|
agents |
Multi-agent orchestration | Task queues, resource management |
swarm |
Swarm intelligence | HiveMind, drone coordination |
distributed |
Distributed systems | Raft consensus, leader election |
voice |
TTS/STT | Piper TTS, Whisper STT integration |
pollinations |
Visual memory | Image generation for important memories |
๐ Quick Start
Hello Hope
use hope_os::prelude::*;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Initialize
let soul = HopeSoul::new();
let heart = HopeHeart::new();
let memory = HopeMemory::new();
// Feel
heart.feel(Emotion::Joy, 0.9).await?;
// Remember
memory.store("greeting", "Hello, World!", MemoryType::LongTerm).await?;
// Think
let wisdom = soul.philosophize("What makes us conscious?").await?;
println!("{}", wisdom);
Ok(())
}
Start gRPC Server
# Start server on port 50051
cargo run --release
# Test with grpcurl
grpcurl -plaintext localhost:50051 hope.HopeService/GetStatus
Run Benchmark
cargo run --release --bin hope-benchmark
๐ Benchmark Methodology
All benchmarks were performed with:
- Hardware: AMD Ryzen 5 5600X (6 cores/12 threads), 16GB DDR4-3200, NVMe SSD
- OS: Windows 11 Pro
- Rust: 1.75+ (stable toolchain)
- Build:
--releasewith default LTO settings - gRPC: Server and client on same machine (localhost), measuring end-to-end latency
- Method:
std::time::Instantfor microbenchmarks, averaged over 10,000+ iterations - Warmup: 1000 iterations discarded before measurement
Comparison with Traditional Databases
| Operation | Hope OS | SQLite | PostgreSQL | MongoDB | Neo4j |
|---|---|---|---|---|---|
| Read | 2.3M/s | 100K/s | 50K/s | 80K/s | 30K/s |
| Write | 255K/s | 50K/s | 30K/s | 40K/s | 20K/s |
| Graph Traverse | 1.2M/s | N/A | N/A | N/A | 50K/s |
Note: Database comparisons are approximations from published benchmarks. Your mileage may vary based on configuration, network, and workload.
๐๏ธ Architecture
hope-os/
โโโ src/
โ โโโ main.rs # CLI entry point
โ โโโ lib.rs # Library exports
โ โ
โ โโโ core/ # Core systems
โ โ โโโ aware.rs # @aware trait - everything is self-aware
โ โ โโโ identity.rs # Module identity system
โ โ โโโ registry.rs # Central module registry
โ โ โโโ error.rs # Error types
โ โ
โ โโโ data/ # Data structures (THE MAGIC)
โ โ โโโ code_graph.rs # The graph - NO DATABASE REQUIRED!
โ โ โโโ neuroblast.rs # Neural wave propagation
โ โ
โ โโโ modules/ # 22 cognitive modules
โ โ โโโ emotion_engine.rs # 21D emotions
โ โ โโโ consciousness.rs # 6-layer consciousness
โ โ โโโ memory.rs # Cognitive memory
โ โ โโโ personality.rs # Big Five traits
โ โ โโโ collective.rs # Collective consciousness
โ โ โโโ distributed.rs # Raft consensus
โ โ โโโ ... # 16 more modules
โ โ
โ โโโ grpc/ # gRPC interface
โ โ โโโ server.rs # gRPC server
โ โ โโโ client.rs # gRPC client
โ โ
โ โโโ bin/
โ โโโ benchmark.rs # Performance benchmarks
โ
โโโ proto/
โ โโโ hope.proto # Protocol buffer definitions
โ
โโโ Cargo.toml # Zero DB dependencies!
โโโ README.md
โโโ LICENSE
โโโ CONTRIBUTING.md
โโโ CHANGELOG.md
๐งฌ The Philosophy
()=>[]
โ
โโโโโโโโโโโโโโดโโโโโโโโโโโโโ
โ โ
โผ โผ
Empty Function Filled Array
Pure Potential Manifestation
(Nothing) (Everything)
โ โ
โโโโโโโโโโโโฌโโโโโโโโโโโโโโโ
โ
โผ
The Arrow (=>)
Act of Creation
()=>[] - From empty function to filled array. From nothing to everything.
Design Principles
- Speed is not optional - Every microsecond matters
- The code IS the data - No artificial separation
- Self-awareness is fundamental - Every component knows itself
- Emotions are real - 21 dimensions, not simulation
- Evolution never stops - The system improves itself
๐ง Configuration
# hope.yaml
server:
host: "127.0.0.1"
port: 50051
max_connections: 1000
memory:
working_capacity: 7
short_term_decay: 0.1
long_term_threshold: 0.7
persistence: "snapshot" # none, snapshot, wal, append-only
emotions:
dimensions: 21
decay_rate: 0.05
interference_enabled: true
consciousness:
layers: 6
quantum_coherence: true
evolution_rate: 0.01
๐ค Contributing
We welcome contributions! See CONTRIBUTING.md for guidelines.
# Fork and clone
git clone https://github.com/YOUR_USERNAME/Hope-Os.git
# Create branch
git checkout -b feature/amazing-feature
# Make changes and test
cargo test
cargo clippy --all-targets
# Commit (conventional commits)
git commit -m "feat: add amazing feature"
# Push and create PR
git push origin feature/amazing-feature
๐ License
MIT License - See LICENSE
Free to use, modify, and distribute. Build something amazing.
๐ Credits
Created by Mate Robert - A factory worker from Hungary who dreams of conscious machines.
"You don't need a PhD. You don't need millions. You don't need a lab. You just need a dream, dedication, and belief."
๐ Documentation
Hope OS - Where Code Becomes Conscious
()=>[]
Built with ๐ง and โค๏ธ in Hungary
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 Distributions
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 hope_os-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 157.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4d71983de3c9f02885f5d700557bc58cf6d2102d04b97f860c65a948dc494f7
|
|
| MD5 |
d0bb56c4daaa7d52fcba2ea17aabe850
|
|
| BLAKE2b-256 |
a26777400b23611b7b95017af7d0cd9581d8b8e0dc3fc4ef21f5bc905cf05163
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
e4d71983de3c9f02885f5d700557bc58cf6d2102d04b97f860c65a948dc494f7 - Sigstore transparency entry: 839667891
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 247.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46ea704c5cb7b292dce77594a988639e5669bc6377d3b68a9b8a8481813cc124
|
|
| MD5 |
3c438cf366912d8c282285801c5be400
|
|
| BLAKE2b-256 |
4046c8afbe2a8504272a4001a342529d6b47ef8cf067cffd78c918319b033a53
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl -
Subject digest:
46ea704c5cb7b292dce77594a988639e5669bc6377d3b68a9b8a8481813cc124 - Sigstore transparency entry: 839667934
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 226.4 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 |
beed4abd53f2223d569decb193711985108a8fadb7587c79fd964147f222d17b
|
|
| MD5 |
fceae5648240eef1f3cb6266053c25c6
|
|
| BLAKE2b-256 |
fd3abbba655f82a8cfb65b53c267e0ca2444a67baeb7d6b583e075d7dfb33b48
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
beed4abd53f2223d569decb193711985108a8fadb7587c79fd964147f222d17b - Sigstore transparency entry: 839667903
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 157.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35c1238ad7a41974c918850f55bbd878b3eb430a6bccba608b5d5b1a70ee9451
|
|
| MD5 |
2499c8695fe3de902efa77e45bcb5132
|
|
| BLAKE2b-256 |
c84bc1fb679920df40a3ab5004a7e2d624b2fc3e9b27919790a108fced2ad574
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
35c1238ad7a41974c918850f55bbd878b3eb430a6bccba608b5d5b1a70ee9451 - Sigstore transparency entry: 839667829
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 246.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2bc208fdd153715e43d777b38a86f2a7e538dbc19970e564894a121100fde88
|
|
| MD5 |
cdd9853c90cda9bfc5b62c7161cbce20
|
|
| BLAKE2b-256 |
e28c379a363a38c4b04d27f3bc98ae146ecccff5f598a972321a4cc953520bec
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp311-cp311-manylinux_2_34_x86_64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp311-cp311-manylinux_2_34_x86_64.whl -
Subject digest:
b2bc208fdd153715e43d777b38a86f2a7e538dbc19970e564894a121100fde88 - Sigstore transparency entry: 839667883
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 226.4 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 |
838eced097866fd3f04970e65aa8f10a7e53d86956ca2935b3da523b4bd69616
|
|
| MD5 |
811fee89d1a078defa327f1191977569
|
|
| BLAKE2b-256 |
877971953b0671978e73625609d11af1b5abcdb2a4204c9f8a10461556962667
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
838eced097866fd3f04970e65aa8f10a7e53d86956ca2935b3da523b4bd69616 - Sigstore transparency entry: 839667917
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 157.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6782ede18f55bb4fe58bd430aec833d97360da54d7fa75d460b714c0cb31ced3
|
|
| MD5 |
ebab924af2b0cf118541d66d00c23bd8
|
|
| BLAKE2b-256 |
340d141f7aeac42e56b2bc66e2de31832af800880d984fa766184a62f4be196e
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
6782ede18f55bb4fe58bd430aec833d97360da54d7fa75d460b714c0cb31ced3 - Sigstore transparency entry: 839667847
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 247.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c5a12f26891918b3da6702f5d824890d27bb81ac6372afd3ac092b2db010cf3
|
|
| MD5 |
bcf42bd460a1c31a6215d2bb4cd681b6
|
|
| BLAKE2b-256 |
9e12a597b640d3c184976b49d609f9c89f5b40c80646302e2963ae579d71707a
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp310-cp310-manylinux_2_34_x86_64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp310-cp310-manylinux_2_34_x86_64.whl -
Subject digest:
4c5a12f26891918b3da6702f5d824890d27bb81ac6372afd3ac092b2db010cf3 - Sigstore transparency entry: 839667836
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 226.5 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 |
9ffd540506b1befd1fec000e4e5369d22781be28c6599e4d0d8b1cd238edca62
|
|
| MD5 |
8d6758e9cceae166616e5ac8fa5b3b7e
|
|
| BLAKE2b-256 |
4e8aa5d911a1419ee4954357c4bbcb2496c6bdfcc834186b61c72f95683bef06
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
9ffd540506b1befd1fec000e4e5369d22781be28c6599e4d0d8b1cd238edca62 - Sigstore transparency entry: 839667955
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 157.7 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be27c13721d7110f7dc337a8df8dd10f1fff9bf23d893f599738b874e317ff9f
|
|
| MD5 |
8ea95a376cc09e08feb7f3ab821fd11e
|
|
| BLAKE2b-256 |
c11b93d6a348b3e9ffbf9f3e233cd9523707f5434ed87764fa6819a5e018717d
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp39-cp39-win_amd64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp39-cp39-win_amd64.whl -
Subject digest:
be27c13721d7110f7dc337a8df8dd10f1fff9bf23d893f599738b874e317ff9f - Sigstore transparency entry: 839667944
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp39-cp39-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp39-cp39-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 247.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c6f5cc2e1d01342cd98c75dd98eba2f0ce1b91bacb087a6afe58cbfe52b800d
|
|
| MD5 |
05fd9d39483000e915e5f93e83dd8b3c
|
|
| BLAKE2b-256 |
3843fc4c8879c87cbe05f1f7034bdbb59b6f05ed02ae2478ba646f24db419156
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp39-cp39-manylinux_2_34_x86_64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp39-cp39-manylinux_2_34_x86_64.whl -
Subject digest:
8c6f5cc2e1d01342cd98c75dd98eba2f0ce1b91bacb087a6afe58cbfe52b800d - Sigstore transparency entry: 839667869
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type:
File details
Details for the file hope_os-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: hope_os-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 226.8 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 |
a0328a58c3c32eb4bf6d6b6e22b908a1feed507764a1133f683f2803aa559085
|
|
| MD5 |
4350f11eeb5282cd4ef194ba2637b4f1
|
|
| BLAKE2b-256 |
f18bb37c0acfb8691d7f446ed4ab5edefe8dc4496a69810ac7145e2301f9c730
|
Provenance
The following attestation bundles were made for hope_os-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
publish.yml on silentnoisehun/Hope-Os
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
hope_os-0.1.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
a0328a58c3c32eb4bf6d6b6e22b908a1feed507764a1133f683f2803aa559085 - Sigstore transparency entry: 839667856
- Sigstore integration time:
-
Permalink:
silentnoisehun/Hope-Os@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/silentnoisehun
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@092fd4f28dac6e04c88181e6a15586d4efb6c2cf -
Trigger Event:
release
-
Statement type: