Skip to main content

Clean-room Apache-2 Python reader for Autodesk Revit files (.rvt/.rfa/.rte/.rft). No Autodesk SDK required. Verified against 11 Revit releases (2016–2026).

Project description

rvt-rs

The first complete, open documentation and tooling for the Autodesk Revit on-disk format — 395 classes, 13,570 fields, 100% type classification across Revit 2016–2026. No Autodesk software required.

Apache-2.0 licensed. Rust 2024 edition (MSRV 1.85). Reads .rvt, .rfa, .rte, .rft directly from bytes — zero API calls, zero cloud, zero Revit install. Eight CLIs ship (rvt-analyze, rvt-info, rvt-schema, rvt-history, rvt-diff, rvt-corpus, rvt-dump, rvt-doc) plus 30+ reproducible probes under examples/ that back every claim in this README. 75 tests pass (61 unit + 9 integration + 5 doctest), including a CI-enforced regression gate that fails if any field in any of the 11 corpus files decodes to FieldType::Unknown.

Schema-directed instance extraction is an active research frontier — with a working beachhead. The Q6.2 entry-point hypothesis was refuted by Q6.3, then Q6.4–Q6.5 narrowed the stream layout, and as of v0.1.2 the walker in src/walker.rs reads ADocument's root record end-to-end on Revit 2024–2026. Cross-version validated: all three releases produce identical [27, 31, 35] ElementId values for the last three reference fields (owner-family, containing-group, dev-branch). Try it: cargo run --release --bin rvt-doc -- your.rfa. Older releases (2016–2023) need entry-point detection work; fields 2–5 need container element-payload decoding. The full dictionary (Layer 4c) is complete and regression-proofed; expanding the walker's class coverage is where collaborative contributions are most welcome. See docs/rvt-moat-break-reconnaissance.md §Q6 for the full research trail including the documented refutation and subsequent progress.

TL;DR — what's in the box

  • No Autodesk dependency. Reads .rvt / .rfa / .rte / .rft directly from bytes.
  • Every Revit release 2016–2026. 11-year corpus fetched from phi-ag/rvt at build time; CI enforces 100% schema-field classification across every release.
  • Phase D moat proved: class tags from Formats/Latest occur in Global/Latest at ~340× uniform-random rate (AbsCurveGStep = 19,415 hits in 938 KB). Schema IS the live type dictionary.
  • First public RVT tag-drift table — 122 classes × 11 releases, CSV + SVG heatmap.
  • First publicly-documented Revit format-identifier GUID3529342d-e51e-11d4-92d8-0000863f27ad, stable in 98.8% of Global/PartitionTable bytes since 2000.
  • Revit 2021 was a silent format rewrite — Global/Latest grew 27× and Forge Design Data Schema namespaces debuted. No public changelog mentions this.
  • Byte-preserving round-trip writer works today — 13/13 streams identical after read-modify-write.
  • Hands-clean by default. Every CLI has --redact that scrubs usernames, Autodesk-internal paths, and project IDs while preserving path shape so claims remain verifiable. Committed demo output is pre-scrubbed.
  • Fast. rvt-analyze produces the full forensic report in 27 ms on a 400 KB RFA (20 ms/file over the 11-version corpus). Full benchmark table: docs/benchmarks.md.
  • Modifying writer works. writer::write_with_patches reads a file, patches any stream's decompressed bytes, re-compresses with truncated-gzip, and writes a new file. Stream-level patching is end-to-end; field-level patching is unblocked by Q5.2's 100% type coverage and ready for implementation.

Why this exists — the openBIM gap

For over a decade the openBIM community — anchored by buildingSMART International and the IFC standard — has worked to break Autodesk's Revit lock-in. The official answer, Autodesk's revit-ifc exporter, runs inside Revit using the Revit API, so it can only emit what the API chooses to expose. That's why real-world IFC exports from Revit are described, routinely and publicly, as "very limited" (thinkmoult.com), "data loss" (Reddit r/bim), and "out of the box, just crap" (the OSArch Wiki's guide to Revit for openBIM). BIM coordinators have spent years working around lossy IFC exports — private families, complex assemblies, proprietary parameter types, and internal geometric relationships are all dropped by the API-surface exporter.

rvt-rs reads the actual on-disk RVT bytes. That is a strict superset of what Revit's API exposes. An rvt-rs → IFC pipeline built on top of it (exporter scaffolded in src/ifc/; full emission is the natural next milestone now that the schema is fully typed) is the full-fidelity path to IFC that the openBIM movement has been waiting for — and a natural partner for IfcOpenShell, BIMvision, and anyone participating in buildingSMART's annual openBIM Hackathon.

Quick demo

One command produces the full forensic picture — identity, upgrade history, format anchors, schema table, Phase D link histogram, content metadata, and a disclosure scan:

cargo build --release
./target/release/rvt-analyze --redact path/to/your.rfa

From Python

import rvt

f = rvt.RevitFile("my-project.rfa")
print(f.version, f.part_atom_title)      # 2024 "0610 x 0915mm"
print(f.read_adocument()["fields"][-1])  # {name: m_devBranchInfo, kind: element_id, tag: 0, id: 35}
open("out.ifc", "w").write(f.write_ifc())

Install: pip install rvt (once #52e PyPI publish ships) or build from source with maturin build --release --features python. Full API + Jupyter notebook walkthrough: docs/python.md and docs/rvt-python-quickstart.ipynb.

Sample output (all pre-scrubbed with --redact, committed for review):

The --redact flag (on by default in every committed artifact) scrubs Windows usernames, Autodesk-internal paths, and project-ID folder names to <redacted> markers while preserving path shape so claims remain verifiable. Omit the flag when running privately against your own files.

Results at a glance

Running the shipped CLIs against one 400 KB RFA fixture:

  • Metadata: version, build tag, creator path, file GUID, locale (rvt-info)
  • Atom XML: title, OmniClass code, taxonomies (rvt-info parses PartAtom)
  • Preview: clean PNG thumbnail, 300-byte Revit wrapper stripped (rvt-info --extract-preview)
  • Schema: 395 classes + 1,114 fields + per-field typed encoding (rvt-schema)
  • History: every Revit release that ever saved this file (rvt-history)
  • Bulk strings: 3,746 length-prefixed UTF-16LE records from Partitions/NN — Autodesk unit/spec/parameter-group identifiers, OmniClass + Uniformat codes, Revit category labels, localized format strings (rvt-history --partitions)

Every class and field name that rvt-schema extracts was cross-checked against the public RevitAPI.dll NuGet package's exported C++ symbol list. All top-level tagged class names we've inspected (ADocument, DBView, HostObj, LoadBCBase, Symbol, APIAppInfo, APropertyDouble3, ElementId, and the rest) appear in that export with their decorated signatures (e.g. __cdecl NotNull<class ADocument *,void>::NotNull(class ADocument *)), confirming the on-disk schema names match the compiled symbols one-to-one.

A build-server path also appears in C++ assertion strings inside the same DLL; it is mentioned in the recon report for completeness and does not represent anything the reader extracts from .rvt / .rfa files.

Phase D findings (what makes this project different)

Six reproducible discoveries, all documented in docs/rvt-moat-break-reconnaissance.md and reproducible from examples/:

  1. The schema indexes the data. Class names do not appear as ASCII in Global/Latest; class tags from Formats/Latest (u16 after class name, with 0x8000 flag set) occur ~340× the uniform-random rate. The top tag, AbsCurveGStep, appears 19,415 times in 938 KB of decompressed Global/Latest. [examples/link_schema.rs]

  2. Tags drift across releases but are stable-sort-assigned. ADocWarnings = 0x001b 2016→2026 because no class sorted alphabetically before it has ever been added. AbsCurveGStep shifted 0x0053 → 0x0066 across the decade as 19 new A-class entries were inserted. Full 122-class × 11-release drift table: docs/data/tag-drift-2016-2026.csv, visualised in docs/data/tag-drift-heatmap.svg. First publicly-available version of this data. [examples/tag_drift.rs]

  3. Revit 2021 was a major undocumented format transition. Global/Latest grew 27× (~26 KB → ~715 KB) while simultaneously the Forge Design Data Schema namespaces (autodesk.unit.*, autodesk.spec.*) debuted in Partitions/NN. Two symptoms, one event. Any reader built for 2016-2020 silently drops 30× more data when pointed at 2021+.

  4. Parameter-group namespace shipped separately in Revit 2024. autodesk.parameter.group.* identifiers appear in 2024+ only — three releases after units/specs. Dating the Forge schema rollout from on-disk bytes: examples/tag_drift.rs, src/object_graph.rs.

  5. The stable Revit format-identifier GUID. Global/PartitionTable is 167 bytes decompressed, and 165 of those bytes are byte-for-byte identical across every Revit release 2016-2026 (98.8% invariant). The invariant region contains a never-before-published UUIDv1: 3529342d-e51e-11d4-92d8-0000863f27ad. The MAC suffix 0000863f27ad matches a known Autodesk-dev-workstation signature from circa 2000. Useful as a magic number for file-type sniffers that can't distinguish RVT from other CFB containers. [examples/partition_full.rs]

  6. Tagged class record structure decoded. Every class declaration in Formats/Latest carries an explicit tag (u16 with 0x8000 flag), optional parent class, and declared field count, followed by N field records each with name + C++ type encoding. HostObjAttr now resolves to {tag=107, parent=Symbol, declared_field_count=3} with all three field names (m_symbolInfo, m_renderStyleId, m_previewElemId) extracted byte-for-byte. [examples/record_framing.rs, src/formats.rs]

Three unintended disclosure patterns also surfaced in Autodesk's shipped reference content — the specific values are withheld from this README to avoid re-broadcasting them; they are documented in docs/rvt-moat-break-reconnaissance.md for security-research reproducibility:

  • A customer-facing OneDrive path that leaks the directory structure of an Autodesk employee's personal sample-authoring workflow.
  • A build-server path baked into C++ assertion strings inside the public RevitAPI.dll.
  • A creator-name field inside the Contents stream that travels with every copy of the sample family, preserving the name of one of Revit's original 1997 developers.

Downstream safety: the rvt-analyze CLI ships with a --redact flag (on by default for any of the committed demo output in this repo) that rewrites creator paths, Autodesk-internal paths, and build-server paths to <redacted> markers while preserving the surrounding structure. Any tool consuming rvt-rs output and displaying it publicly should do the same.


What works today

Library surface (all modules compile; see src/ for type docs):

Module What it does
reader Open any Revit file, enumerate every OLE stream, fetch raw stream bytes
compression Truncated-gzip decode (inflate_at) + multi-chunk (inflate_all_chunks)
basic_file_info Version, build tag, GUID, creator path, locale
part_atom Atom XML with Autodesk partatom namespace — title, OmniClass, taxonomies
formats Parse Formats/Latest into {name, offset, fields, tag, parent, declared_field_count}
object_graph DocumentHistory, string-record extractor for Global/Latest + Partitions/NN
class_index Quick class-name inventory (BTreeSet)
corpus Cross-version byte-delta classifier
elem_table Global/ElemTable header parser + rough record enumeration
partitions Partitions/NN 44-byte header decoder + gzip-chunk splitter
writer Byte-preserving round-trip copy_file through the OLE container
ifc IFC export scaffold: IfcModel, Exporter trait, NullExporter, mapping plan
streams Named constants for every invariant OLE stream in a Revit file
error Structured error type (Error / Result)

Runtime capabilities:

  • Open any Revit file from disk (magic D0 CF 11 E0 A1 B1 1A E1)
  • Enumerate every OLE stream; find the version-specific Partitions/NN
  • Decompress any stream (truncated-gzip format — standard gzip header, no trailing CRC/ISIZE)
  • Parse BasicFileInfo, PartAtom, extract preview PNG
  • Extract 395 class records from Formats/Latest with tag + parent + ancestor-tag + declared field count for every tagged class
  • Decode the 167-byte Global/PartitionTable structure including the stable Revit format-identifier GUID
  • Decode the 307-byte Contents stream including the embedded UTF-16LE metadata chunk
  • Produce a byte-for-byte round-trip copy of any .rfa / .rvt file
  • Run across the full 11-release corpus in < 500 ms per file (release build)

Seven CLIs ship in the box:

cargo build --release

# One-shot forensic analysis — all subsystems in one report
./target/release/rvt-analyze --redact my-project.rvt
./target/release/rvt-analyze --redact --json my-project.rvt > report.json

# Quick metadata + schema summary
./target/release/rvt-info --show-classes my-project.rvt

# Machine-readable (JSON)
./target/release/rvt-info -f json my-project.rvt > meta.json

# Pull the embedded thumbnail
./target/release/rvt-info --extract-preview preview.png my-project.rvt

# Compare two versions of the same file (cross-version byte diff)
./target/release/rvt-diff --decompress 2018.rfa 2024.rfa

# Dump the full class schema (395 classes, 1,114 fields)
./target/release/rvt-schema my-project.rvt

# Document upgrade history (which Revit releases have opened this file)
./target/release/rvt-history my-project.rvt

# Pull every UTF-16LE string record out of Partitions/NN
# (categories, OmniClass, Uniformat, Autodesk unit identifiers, …)
./target/release/rvt-history --partitions my-project.rvt

# Hex-dump any decompressed stream (for Phase D work)
./target/release/rvt-dump my-project.rvt --stream Global/Latest

Fourteen reproducible probes live in examples/ — one per FACT in the recon report:

cargo build --release --examples

# --- schema ↔ data linkage (Phase D) ---
./target/release/examples/probe_link              <file>           # null-hypothesis: class names absent from Global/Latest
./target/release/examples/tag_bytes               <file>           # hex around known class names in Formats/Latest
./target/release/examples/tag_dump                <file>           # statistical sweep of post-name u16 patterns
./target/release/examples/link_schema             <file>           # tag-frequency histogram in Global/Latest (340× non-uniformity)
./target/release/examples/tag_drift               <sample-dir> <out.csv>   # per-class drift table 2016-2026
./target/release/examples/tag_drift_svg           <in.csv> <out.svg>       # render drift table as colour-coded SVG heatmap

# --- record framing (Phase 4c) ---
./target/release/examples/record_framing          <file>           # dump bytes at tagged-class defs + first tag occurrence
./target/release/examples/elem_table_probe        <sample-dir>     # Global/ElemTable structural sweep across releases
./target/release/examples/partitions_header_probe <sample-dir>     # 44-byte Partitions/NN header + chunk offsets
./target/release/examples/contents_probe          <file>           # Contents stream decoder (creator name + build tag)

# --- stable anchors ---
./target/release/examples/partition_invariant     <sample-dir>     # find 165-byte invariant in Global/PartitionTable
./target/release/examples/partition_diff          <sample-dir>     # show the 2 varying bytes per release
./target/release/examples/partition_full          <file>           # full annotated hex dump + UUID decode

# --- write path (Phase 6) ---
./target/release/examples/roundtrip                                # copy 2024 sample, verify all 13 streams identical

Format overview

Every Revit file is a Microsoft Compound File Binary (OLE2) container with this stream layout (constant across 11 years of Revit releases):

<root>
├── BasicFileInfo                 UTF-16LE metadata
├── Contents                      custom 4-byte header + DEFLATE body
├── Formats/Latest                DEFLATE — class schema inventory
├── Global/
│   ├── ContentDocuments          tiny document list
│   ├── DocumentIncrementTable    DEFLATE — change tracking
│   ├── ElemTable                 DEFLATE — element ID index
│   ├── History                   DEFLATE — edit history (GUIDs)
│   ├── Latest                    DEFLATE — current object state (17:1 ratio)
│   └── PartitionTable            DEFLATE — partition metadata
├── PartAtom                      plain XML (Atom + Autodesk partatom namespace)
├── Partitions/NN                 bulk data: 5-10 concatenated DEFLATE segments
│                                 NN = 58, 60-69 for Revit 2016-2026
├── RevitPreview4.0               custom header + PNG thumbnail
└── TransmissionData              UTF-16LE transmission metadata

All compressed streams use a "truncated gzip" format — the standard 10-byte gzip header (magic 1F 8B 08 ...) followed by raw DEFLATE, but without the trailing 8-byte CRC32 + ISIZE that conforming gzip writers produce. Python's gzip.GzipFile and Rust's flate2::read::GzDecoder both refuse these streams. The fix is to skip the 10-byte header manually and use flate2::read::DeflateDecoder on the raw body.

Reverse engineering state

Layer Description Status
1 · Container OLE2 / Microsoft Compound File ([MS-CFB]) Done
2 · Compression Truncated gzip → raw DEFLATE Done
3 · Stream framing Per-stream custom headers, Partitions/NN chunk layout, Contents / Preview / PartitionTable wrappers Done — 165/167 bytes of PartitionTable invariant; 44-byte Partitions/NN header decoded; 62 19 22 05 wrapper magic confirmed on Contents + RevitPreview4.0
4a · Schema table Class names + fields + C++ type signatures from Formats/Latest; per-class tag + parent + declared field count; cross-release tag-drift map Done
4b · Schema→data link Tags from Formats/Latest occur at ~340× the noise rate in Global/Latest; schema IS the live type dictionary for the object graph Done
4c.1 · Record framing Tagged class records in Formats/Latest parse into structured records: {tag, parent, ancestor_tag, declared_field_count}; HostObjAttr → {tag=107, parent=Symbol, ancestor_tag=0x0025 → APIVSTAMacroElem, declared_field_count=3} Done
4c.2 · Field-body decoding FieldType enum classifies 100% of schema fields across 8 variants (Primitive, String, Guid, ElementId, ElementIdRef, Pointer, Vector, Container). 11 discriminator bytes mapped, including generalized scalar-base Vector/Container ({kind} 0x10 ... / {kind} 0x50 ...) and the 0x0d point-type base. Done (100.00% on 13,570 fields across the 11-version corpus; zero Unknown)
4d · ElemTable Global/ElemTable header parser + rough record enumeration; record semantics TBD (blocked on per-element schema lookup) Partial
5 · IFC export IfcModel, Exporter trait, NullExporter, full Revit→IFC mapping plan; emission unblocked by Q5.2 (100% field typing) Scaffolded (IFC emission the next frontier)
6 · Write path Byte-preserving read-modify-write round-trip (13/13 streams identical); stream-level write_with_patches works end-to-end — patch a stream, re-compress with truncated-gzip, re-embed. Field-level patching gated on 4c.2. Partial (stream-level done)

All 5 original P0 research questions (Q4-Q7) are now resolved. Layer 4c.2 reaches 100.00% field-type classification on the 11-version reference corpus (13,570 total schema fields, zero Unknown). The remaining single-session moat work is emitting IFC from the now-fully-typed schema graph. Every decoding question has an answer documented in the recon report.

Key findings from this phase:

  • Q4 The u16 "flag" word in each tagged-class preamble is a class-tag reference (ancestor / mixin / protocol). 9/9 non-zero values resolve to named classes in the same schema.
  • Q5 Each field's type_encoding is [byte category][u16 sub_type][optional body]. 9 category bytes mapped (0x01 bool, 0x02 u16, 0x04/0x05 u32, 0x06 f32, 0x07 f64, 0x08 string, 0x09 GUID, 0x0b u64, 0x0e reference/container).
  • Q5.1 Coverage extended to 84% of fields.
  • Q5.2 Coverage reaches 100% of fields (13,570 across 11 releases). Generalized {scalar_base} 0x10 ... / {scalar_base} 0x50 ... as vector/container modifiers; added 0x0d point-type base; added 0x08 0x60 ... alternate string encoding; added ElementIdRef { referenced_tag, sub } for references that carry a specific target-class tag; added deprecated 0x03 i32-alias seen only in 2016–2018. See docs/rvt-moat-break-reconnaissance.md §Q5.2.
  • Q6 Global/Latest is not an index + heap — it's a flat TLV stream.
  • Q6.1 Instance data is schema-directed (tag-less, protobuf-style). Decoding requires schema-first sequential walk from a known entry point.
  • Q7 Partitions/NN trailer u32 fields are not per-chunk offsets. Gzip-magic scan remains correct.

The full analysis narrative with 12 dated addenda lives in docs/rvt-moat-break-reconnaissance.md. Session-length synthesis in docs/rvt-phase4c-session-2026-04-19.md.

Sample corpus

Integration tests run against 11 versions of Autodesk's public rac_basic_sample_family RFA fixture (one per Revit release from 2016 through 2026). These are distributed via Git LFS in the phi-ag/rvt repository. To pull them:

cd /path/to/rvt-recon/samples
git clone https://github.com/phi-ag/rvt.git _phiag
cd _phiag && git lfs pull
cd .. && cp _phiag/examples/Autodesk/*.rfa .

The integration tests in tests/samples.rs skip any year whose RFA file is absent, so partial corpora are okay — you'll just see skipping 2024: sample not present messages.

Design choices

  • cfb crate over custom OLE parser — the cfb crate is mature, tested against Office documents, and handles both short and regular sectors. Faster than writing our own.
  • flate2 over miniz_oxide directflate2 wraps both miniz_oxide (pure Rust) and libz backends. We pick the default pure-Rust build to avoid a C toolchain dependency.
  • quick-xml over xml-rs — ~3x faster, zero-copy friendly, and the .from_str + event-loop pattern is closer to what Go/Python parsers do.
  • encoding_rs over stdlib — Revit's UTF-16LE streams sometimes have malformed pairs at boundaries (single-byte markers get interleaved). encoding_rs recovers gracefully where stdlib panics.
  • BTreeSet for class names — deterministic ordering in output (plus sorted JSON) matters for diffable CLI output.

Running the tests

cargo test --release

Expected output:

test result: ok. 43 passed; 0 failed   (unit tests, in-tree)
test result: ok.  8 passed; 0 failed   (integration tests, 11-version corpus)

Integration tests are skipped if the sample RFAs are absent.

License and trademarks

  • Code: Apache License 2.0. See LICENSE for the full text and NOTICE for attribution detail.
  • Trademarks: "Autodesk" and "Revit" are registered trademarks of Autodesk, Inc. This project is not affiliated with, endorsed by, or sponsored by Autodesk. References to "Autodesk" and "Revit" in this project identify the file format this reader parses and are nominative fair use.
  • Interoperability basis: reverse engineering for the purpose of creating an independently-developed interoperable program is recognised as lawful fair use under Sega Enterprises v. Accolade, 977 F.2d 1510 (9th Cir. 1992) and Sony Computer Entertainment v. Connectix, 203 F.3d 596 (9th Cir. 2000) in the United States, and under Article 6 of the EU Software Directive 2009/24/EC in the European Union. File formats themselves are not copyrightable subject matter (Baker v. Selden, 101 U.S. 99 (1879); Lotus Development v. Borland, 516 U.S. 233 (1996)).
  • No Autodesk proprietary code is used, referenced, or redistributed by this project. All file-format observations were made by inspecting the bytes of publicly-shipped Autodesk sample content and by parsing the public RevitAPI.dll NuGet package's exported symbol list. See NOTICE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rvt-0.1.2.tar.gz (222.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rvt-0.1.2-cp38-abi3-win_amd64.whl (420.5 kB view details)

Uploaded CPython 3.8+Windows x86-64

rvt-0.1.2-cp38-abi3-manylinux_2_34_x86_64.whl (495.8 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.34+ x86-64

rvt-0.1.2-cp38-abi3-macosx_11_0_arm64.whl (474.1 kB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

File details

Details for the file rvt-0.1.2.tar.gz.

File metadata

  • Download URL: rvt-0.1.2.tar.gz
  • Upload date:
  • Size: 222.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rvt-0.1.2.tar.gz
Algorithm Hash digest
SHA256 c058cb5cdd639e09f6ac06ca18804df24d9ecfa082a1ef127fb43ddc616ace08
MD5 340445e22704dc134e7e3300ead416ab
BLAKE2b-256 82a98d96b257ec77ef1a6a355d11b4616a065a02bbfc9ba89d0b894087cf67b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rvt-0.1.2.tar.gz:

Publisher: publish.yml on DrunkOnJava/rvt-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rvt-0.1.2-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: rvt-0.1.2-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 420.5 kB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rvt-0.1.2-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4caa62b4c3dad34c73fa25c4773b4096ef389fd47db6f6d2cec7ff0c52178f4f
MD5 09e8039cd8fb734291cee8c3758120b5
BLAKE2b-256 38aeb03b0f74840386e4c86fed15baa89040300ac6a9a25f90a0ca034a3660f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rvt-0.1.2-cp38-abi3-win_amd64.whl:

Publisher: publish.yml on DrunkOnJava/rvt-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rvt-0.1.2-cp38-abi3-manylinux_2_34_x86_64.whl.

File metadata

  • Download URL: rvt-0.1.2-cp38-abi3-manylinux_2_34_x86_64.whl
  • Upload date:
  • Size: 495.8 kB
  • Tags: CPython 3.8+, manylinux: glibc 2.34+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rvt-0.1.2-cp38-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 573d6ace0c84bdb58eaf7224ec756ad5d95ccea78288162dbdfa513858feea06
MD5 e2d41f81489827a027669d3036b5f149
BLAKE2b-256 e5fa05e98032026af05cbc208cc63a0b8e3826fd79a2051abe4ca0abc086cf48

See more details on using hashes here.

Provenance

The following attestation bundles were made for rvt-0.1.2-cp38-abi3-manylinux_2_34_x86_64.whl:

Publisher: publish.yml on DrunkOnJava/rvt-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rvt-0.1.2-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rvt-0.1.2-cp38-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 474.1 kB
  • Tags: CPython 3.8+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rvt-0.1.2-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 792f0f1b9e3a00d9493bad1bb1bcf43b8d768d5b4d67d903dcd98cae18530a8f
MD5 ef37fdfc6a3e6f2c4dd338a16c14ebb2
BLAKE2b-256 9a59c7d897107f66d712a58805d8e04d02020221a9d976f79d61d1bb36627431

See more details on using hashes here.

Provenance

The following attestation bundles were made for rvt-0.1.2-cp38-abi3-macosx_11_0_arm64.whl:

Publisher: publish.yml on DrunkOnJava/rvt-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page