In-memory code graph engine - 10 languages, 7.9M symbols, 0.19ms query
Project description
FCE — Flat Code Engine
In-memory code graph engine built in C++ with Python bindings. Parses 10 languages via tree-sitter, builds a symbol graph, and answers queries in microseconds.
| Codebase | Files | Symbols | Index Time |
|---|---|---|---|
| FastAPI | 1,119 | 12,182 | 12.8s |
| Unreal Engine 5.7 | 57,254 | 10,032,665 | 152s |
| Linux Kernel | 63,451 | 7,960,376 | 85s |
Why FCE?
Most code intelligence tools rely on external databases (SQLite, LanceDB) and pay for serialization + disk I/O on every query. FCE keeps everything in RAM with a Data-Oriented Design:
- Zero disk I/O — SOA arrays in contiguous memory, no DB round-trips
- Zero serialization — POD structs used directly, no JSON/protobuf conversion
- Cache-friendly — sequential memory layout maximizes L1/L2 prefetch hits
- Hash lookup ~50ns vs SQLite SELECT ~50,000ns vs vector search ~500,000ns
Install
Pre-built wheels are available for macOS and Windows (Python 3.9–3.13):
pip3 install flat-code-engine
Linux — build from source (requires CMake 3.25+, C++20 compiler):
pip3 install scikit-build-core pybind11
pip3 install .
Quick Start
import fce
with fce.Engine() as engine:
engine.index_files(["src/main.cpp", "src/utils.hpp"])
result = engine.query("MyClass", bfs_depth=2)
for rel in result.related_symbols:
print(f" {rel.relation}: {rel.name} ({rel.kind})")
Python API
Lifecycle
engine = fce.Engine()
engine.initialize()
# ... use engine ...
engine.release()
Context manager is also supported — initialize() and release() are called automatically.
Indexing
# Index a list of files
engine.index_files(["src/main.cpp", "src/foo.hpp", "lib/utils.py"])
# Re-index specific files (incremental update)
engine.reindex_files(["src/main.cpp"])
# Remove files from the index
engine.remove_files(["src/old.cpp"])
# Get total symbol count
print(engine.symbol_count())
Query
# Direct lookup — O(1) hash, returns symbols with exact name match
symbols = engine.lookup("MyClass")
for sym in symbols:
print(f"{sym.kind} {sym.name} @ {sym.file_path}:{sym.start_line}")
print(f" parent: {sym.parent_class}")
print(f" signature: {sym.signature}")
# BFS traversal — walks the relation graph up to given depth
result = engine.query("MyClass", bfs_depth=2)
# result.symbols: directly matched SymbolEntry list
for sym in result.symbols:
print(f"{sym.kind} {sym.name}")
# result.related_symbols: RelatedSymbol list discovered via BFS
for rel in result.related_symbols:
print(f" {rel.relation} -> {rel.name} ({rel.kind}) depth={rel.depth}")
print(f" {rel.file_path}:{rel.start_line}-{rel.end_line}")
# Filter by relation type — only traverse specific edge types
result = engine.query("MyClass", filter=fce.SEMANTIC_RELATIONS)
# Reverse traversal — find symbols that reference this symbol
result = engine.query("MyClass", reverse=True)
# Combine individual relation bitmasks
mask = fce.relation_bit(fce.RelationKind.Inherits) | fce.relation_bit(fce.RelationKind.MemberOf)
result = engine.query("MyClass", filter=mask)
Smart Query (Density-Aware Auto-Expansion)
# Smart query with default settings
result = engine.smart_query("MyClass")
# Custom density configuration
config = fce.DensityConfig()
config.score_threshold = 5.0 # Weighted score threshold
config.min_edge_types = 3 # Minimum distinct edge types
config.max_expansions = 3 # Maximum expansion rounds
config.goldilocks_min = 10 # Minimum related symbols
config.goldilocks_max = 50 # Maximum related symbols
result = engine.smart_query("MyClass", config)
# Density evaluation result
d = result.density
print(f"score={d.weighted_score}, edge_types={d.edge_type_count}")
print(f"sufficient={d.sufficient}, expansions={d.expansions_used}")
# Query result (same structure as QueryResult)
for sym in result.data.symbols:
print(sym.name)
Introspection
import json
# List all indexed files (JSON)
files = json.loads(engine.get_file_tree())
# List symbols in a specific file (JSON)
symbols = json.loads(engine.get_file_symbols("/path/to/main.cpp"))
for s in symbols:
print(f"{s['kind']} {s['name']} L{s['start_line']}")
# Search symbols by name prefix (JSON)
matches = json.loads(engine.search_symbols("MyC", limit=20))
Pincer Extract (Code Snippet Extraction)
# Extract code around a specific symbol's call site in a file
snippet = fce.Engine.pincer_extract(
file_path="src/main.cpp",
start_line=10,
end_line=50,
target_name="process",
radius=7 # ±7 lines around the call site
)
print(f"{snippet.file_path}:{snippet.start_line}-{snippet.end_line}")
print(snippet.code)
print(f"pincer_applied: {snippet.pincer_applied}")
C Preprocessor (Macro Expansion)
config = fce.PreprocessConfig()
config.enabled = True
config.include_paths = ["/usr/include", "src/"]
config.defines = ["DEBUG=1", "PLATFORM_LINUX"]
config.extra_flags = ["-std=c11"]
config.batch_size = 100 # Files to preprocess per batch
engine.set_preprocess_config(config)
engine.index_files(files) # Runs gcc -E before parsing
Enums
# SymbolKind
fce.SymbolKind.Function # Class, Struct, Enum, Variable, Macro,
# Alias, Include, Namespace, Concept,
# Interface, File, Unknown
# RelationKind
fce.RelationKind.Inherits # DerivedBy, MemberOf, HasMember,
# DefinedIn, Contains, Includes, IncludedBy,
# Calls, CalledBy, Returns, ReturnedBy,
# TypedAs, TypeOf
# Filter constants
fce.ALL_RELATIONS # 0 — include all relations
fce.SEMANTIC_RELATIONS # Excludes structural edges (DefinedIn, Contains, Includes, IncludedBy)
CLI
After pip3 install flat-code-engine, the fce command is available.
Interactive REPL
fce repl src/
Index once, then run multiple queries interactively.
fce> /query MyClass 3
fce> /lookup main
fce> /search MyC
fce> /symbols src/main.cpp
fce> /opencode MyClass
fce> /smart MyClass
fce> /files
fce> /stats
fce> /quit
One-shot Commands
# Index files and print stats
fce index src/
# BFS graph traversal by symbol name
fce query MyClass --depth 3 --path src/
# Direct symbol lookup
fce lookup main --path src/
# Search symbols by name prefix
fce search "MyC" --limit 10 --path src/
# List symbols in a specific file
fce symbols src/main.cpp --path src/
# View source code for a symbol
fce opencode MyClass --path src/
C++ (as a static library)
add_subdirectory(flat-code-engine)
target_link_libraries(my_app PRIVATE flat-code-engine)
#include "Core/FceEngine.hpp"
fce::FceEngine engine;
engine.Initialize();
engine.IndexLocalFiles({"src/main.cpp"});
auto result = engine.Query("MyClass", /*bfs_depth=*/2);
for (auto& sym : result.related)
printf("%s -> %s\n", sym.name.c_str(), sym.filePath.c_str());
engine.Release();
Supported Languages
| Language | Handler | Status |
|---|---|---|
| C | CommonHandlers | Stable |
| C++ | CppHandlers | Stable |
| Python | PythonHandlers | Stable |
| Java | JavaHandlers | Stable |
| JavaScript | JsTsHandlers | Stable |
| TypeScript / TSX | JsTsHandlers | Stable |
| Rust | RustHandlers | Stable |
| Go | GoHandlers | Stable |
| C# | CSharpHandlers | Stable |
Architecture
┌─────────────────────────────────────────────────┐
│ FceEngine │
│ (thread-safe facade, mutex-protected) │
├─────────────┬───────────────┬───────────────────┤
│ BakeSystem │ QuerySystem │ DensityEvaluator │
│ (indexing) │ (BFS/lookup) │ (auto-expansion) │
├─────────────┴───────────────┴───────────────────┤
│ SymbolStore (SOA) │
│ CSymbol[] BakedEdge[] StringPool │
├─────────────────────────────────────────────────┤
│ HandlerSet (per-language) │
│ tree-sitter AST → POD symbols + edges │
└─────────────────────────────────────────────────┘
Data flow: Source files → tree-sitter parse → Language handlers extract symbols/edges → SOA arrays in SymbolStore → Hash-based query
Key design decisions
- IFceObject lifecycle:
Initialize()→Update()→Release()— game-engine style ownership - StringPool interning: all names stored once, referenced by
uint32_tID - BakedSymbol / BakedEdge: fixed-size POD structs, no heap pointers
- HandlerSet dispatch:
TSSymbol→ function pointer table, O(1) per AST node - Preprocessor: optional
gcc -Ebatch preprocessing for macro expansion
Relation Graph
FCE tracks 14 relation types between symbols:
| Relation | Inverse | Example |
|---|---|---|
| Inherits | DerivedBy | class Dog : Animal |
| MemberOf | HasMember | Dog::bark → Dog |
| DefinedIn | Contains | main → main.cpp |
| Includes | IncludedBy | main.cpp → <stdio.h> |
| Calls | CalledBy | main → printf |
| Returns | ReturnedBy | getSize → size_t |
| TypedAs | TypeOf | count → int |
Tech Stack
Core
- C++20 — structured bindings,
std::string_view,/utf-8(MSVC),-Wall -Wextra -Wpedantic(GCC/Clang) - Data-Oriented Design — SOA dense arrays, POD structs (
BakedSymbol28B,BakedEdge16B), zero heap allocation in hot paths - StringPool — contiguous
std::vector<char>buffer, FNV-1a hash,uint32_tinterning, thread-local pools during parsing
Parsing
- tree-sitter — 10 language grammars (C, C++, Python, Java, JS, TS/TSX, Rust, Go, C#)
- Explicit stack DFS — no recursion,
std::vector<BakeFrame>work queue, 2M iteration safety limit - O(1) handler dispatch —
HandleFn table[1024]indexed byTSSymbol, no strcmp chains - Preprocessor —
gcc -Ebatch mode, temp file bundling (~50x process reduction), linemarker parsing for source mapping
Threading
std::threadworker pool —hardware_concurrency()adaptive scaling, chunk distributionstd::atomic<int64_t>— lock-free stats accumulation (memory_order_relaxed)std::mutex— coarse-grained locking at public API boundary only- Thread-local isolation — each worker owns private StringPool + results vector, zero shared mutable state
Query
- Triple hash index —
nameIndex[nameId],fromIndex[nameId],toIndex[nameId]for O(1) lookup + BFS - BFS —
std::queue+std::set<uint32_t>visited, 10K node limit, bitmask relation filter - Prefix search — sorted
(lowercase_name, nameId, symIdx)array,std::lower_bound()O(log N) - Density evaluator — 2-gate system (weighted score matrix 12x14 + edge type diversity), auto-expansion up to 3 rounds
Python Integration
- pybind11 v2.13.6 — C++ to Python bindings, context manager support
- scikit-build-core — CMake-based Python package build
- cibuildwheel v2.21.3 — cross-platform wheel generation (Python 3.9–3.13)
Build & CI
- CMake 3.25+ — FetchContent for all dependencies, zero manual downloads
- nlohmann/json v3.11.3 — JSON serialization for introspection APIs
- GitHub Actions — build matrix (Ubuntu, macOS, Windows), automated testing, PyPI trusted publishing
Profiling
std::chrono::high_resolution_clock— per-stage timing (preprocess, parse, read, remap)BakeStats— atomic counters for preprocessed/raw file counts and millisecond breakdown
Known Limitations
FCE is under active development. There are likely undiscovered edge cases in parsing and symbol extraction. The C/C++ handlers are the most battle-tested; handlers for other languages (Python, Java, JS/TS, Rust, Go, C#) may have more gaps since they haven't been tested as extensively.
If you find any issues or have suggestions, please open a GitHub Issue. All feedback is greatly appreciated. Thank you.
License
MIT
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 flat_code_engine-1.0.0.tar.gz.
File metadata
- Download URL: flat_code_engine-1.0.0.tar.gz
- Upload date:
- Size: 59.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebee78c09902bace360c448a043403b4652921e01500928de587d172cc5c5363
|
|
| MD5 |
74092f08bb00787cfa9fd964b5719040
|
|
| BLAKE2b-256 |
163be5b0e013c5c0f79160c26c3bffdd4dcd40a84405a15bdef3ac4d135740ee
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0.tar.gz:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0.tar.gz -
Subject digest:
ebee78c09902bace360c448a043403b4652921e01500928de587d172cc5c5363 - Sigstore transparency entry: 1066412874
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d02065d965da13084b04ffbc06ae1ca8b33e5cf7388816c3479f309907e3c06
|
|
| MD5 |
c7e4bf6cc155daa0694916f1ea3a5786
|
|
| BLAKE2b-256 |
719fb88cc67a588f3920f80b955a090652435f09668018a2b970cebd865792d6
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp313-cp313-win_amd64.whl -
Subject digest:
3d02065d965da13084b04ffbc06ae1ca8b33e5cf7388816c3479f309907e3c06 - Sigstore transparency entry: 1066412899
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp313-cp313-macosx_15_0_arm64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp313-cp313-macosx_15_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bdee78cbc20e95b2ee301fe411c8cf8208aa03825ac2c2b5b74fc90f1dba385
|
|
| MD5 |
f82eb3d135aa49c256a7d6bac2e0e6ee
|
|
| BLAKE2b-256 |
d752e0c73c933694c257f712d1f46300f9284fcf4aaa01676d1b7f1647ddd351
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp313-cp313-macosx_15_0_arm64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp313-cp313-macosx_15_0_arm64.whl -
Subject digest:
0bdee78cbc20e95b2ee301fe411c8cf8208aa03825ac2c2b5b74fc90f1dba385 - Sigstore transparency entry: 1066412894
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- 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 |
4140d1a35dc7596f2b4e6f2b2d87d4798a408ecad01ae0f782de6f374bd97593
|
|
| MD5 |
24445b02e821b4b78dccbbca3088eae1
|
|
| BLAKE2b-256 |
0011b88c2f45c71735684a5f714c488fe05e5fe3797ce1624ec4a76393ab283d
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp312-cp312-win_amd64.whl -
Subject digest:
4140d1a35dc7596f2b4e6f2b2d87d4798a408ecad01ae0f782de6f374bd97593 - Sigstore transparency entry: 1066412882
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp312-cp312-macosx_15_0_arm64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp312-cp312-macosx_15_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8037c8892dd5089f06b32b084321fb1652b57e8f4328a3548f1ee1c4b392783a
|
|
| MD5 |
cd7b361ead3371a5c6671c9a5a69ad39
|
|
| BLAKE2b-256 |
082e3efc6794e595d5e467417e9dee6910bfe25858481425564e9194981fbbc2
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp312-cp312-macosx_15_0_arm64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp312-cp312-macosx_15_0_arm64.whl -
Subject digest:
8037c8892dd5089f06b32b084321fb1652b57e8f4328a3548f1ee1c4b392783a - Sigstore transparency entry: 1066412906
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- 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 |
6af1132915b16db979ff8d72b8086720521d049f185563facb7824d22460c426
|
|
| MD5 |
f3a1518914e55576911b496a6908cd18
|
|
| BLAKE2b-256 |
4d5685f0b94649ba0df8a8764b7cae3fe713106ae88dd528fdf9c38b88efbe24
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp311-cp311-win_amd64.whl -
Subject digest:
6af1132915b16db979ff8d72b8086720521d049f185563facb7824d22460c426 - Sigstore transparency entry: 1066412919
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp311-cp311-macosx_15_0_arm64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp311-cp311-macosx_15_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75850fac7563e65e135aafb34c8d4a519c22d0ca2331044fe7d0fb7c9cdc5aae
|
|
| MD5 |
dc3a393046dd508b43172d253af1c3bf
|
|
| BLAKE2b-256 |
ce324af9c234c205ad6d4c6ee7bcab488de42691709c23d72691b5f5000fd1a9
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp311-cp311-macosx_15_0_arm64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp311-cp311-macosx_15_0_arm64.whl -
Subject digest:
75850fac7563e65e135aafb34c8d4a519c22d0ca2331044fe7d0fb7c9cdc5aae - Sigstore transparency entry: 1066412885
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- 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 |
f8509d332a6a0a59ccb97f80506f2ad96435985319e228ce045b731583206e4e
|
|
| MD5 |
96559e7a9397e6c53a5ade542b58b1a1
|
|
| BLAKE2b-256 |
db981cf91378811ec6be759772aa1a7b08a72b17854698cf69607726fcc70c76
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp310-cp310-win_amd64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp310-cp310-win_amd64.whl -
Subject digest:
f8509d332a6a0a59ccb97f80506f2ad96435985319e228ce045b731583206e4e - Sigstore transparency entry: 1066412913
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp310-cp310-macosx_15_0_arm64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp310-cp310-macosx_15_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9156c937bfb038a32f10a26a80d3264cdd9c2293dfec97daa4e536b2a67a60d
|
|
| MD5 |
84889f1a93d98a70a5b49b7d83b71620
|
|
| BLAKE2b-256 |
88b319a1968d54a22d1137b4974a8e55a9552c5ce18e88064dbb88f455e515cb
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp310-cp310-macosx_15_0_arm64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp310-cp310-macosx_15_0_arm64.whl -
Subject digest:
b9156c937bfb038a32f10a26a80d3264cdd9c2293dfec97daa4e536b2a67a60d - Sigstore transparency entry: 1066412915
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- 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 |
2965acb915c856ac3424d7dc6671465a86a8a5a0fd75203b1658fc653c06440b
|
|
| MD5 |
6f9ac2e5382076535e5b4b5dc8aaeba3
|
|
| BLAKE2b-256 |
ebabc06f0188d2c1d39bb35c637f3ef2701b26bd52fccb13261bd3da827827b7
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp39-cp39-win_amd64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp39-cp39-win_amd64.whl -
Subject digest:
2965acb915c856ac3424d7dc6671465a86a8a5a0fd75203b1658fc653c06440b - Sigstore transparency entry: 1066412890
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type:
File details
Details for the file flat_code_engine-1.0.0-cp39-cp39-macosx_15_0_arm64.whl.
File metadata
- Download URL: flat_code_engine-1.0.0-cp39-cp39-macosx_15_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b6cce1134199193a7b83ea8c75376e6def3f72bae5c7a7fa6db10b090f2f67e
|
|
| MD5 |
0dc08a5ee9603a8db16c809285ff1bb4
|
|
| BLAKE2b-256 |
34113dc6852aa14e4aeca41c42ab4d4b2ef763dda5f27a9b3dba7ab4dc518417
|
Provenance
The following attestation bundles were made for flat_code_engine-1.0.0-cp39-cp39-macosx_15_0_arm64.whl:
Publisher:
wheels.yml on leejongha45-beep/flat-code-engine
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
flat_code_engine-1.0.0-cp39-cp39-macosx_15_0_arm64.whl -
Subject digest:
2b6cce1134199193a7b83ea8c75376e6def3f72bae5c7a7fa6db10b090f2f67e - Sigstore transparency entry: 1066412911
- Sigstore integration time:
-
Permalink:
leejongha45-beep/flat-code-engine@4309bf64e57c60e99821f14620d029a83135a4be -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/leejongha45-beep
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4309bf64e57c60e99821f14620d029a83135a4be -
Trigger Event:
release
-
Statement type: