Skip to main content

uproot extension for reading custom classes

Reason this release was yanked:

should be 1.2.0

Project description

uproot-custom

This is a prototype repository of an extension that allows uproot to read custom classes from ROOT files.

uproot can already read some custom classes directly. However, in some cases, custom classes are too complex for uproot to read, such as when their Streamer methods are overridden or some specific data members are not supported by uproot.

This extension privides a Reader interface and allows you to read such custom classes by providing your own Reader. The Reader interface defines how to read the data members of a class from the binary stream.

Design overview

In ROOT, data are stored in a tree structure. For example, when a custom class is defined as:

class TMySubClass : public TObject {
    int m_index;
    float m_x;
};

class TMyClass : public TObject {
    double m_energy;
    std::vector<MySubClass> m_daughters;
};

The data tree is:

graph TD
    A([TMyClass]) --> B(double m_energy)
    A --> C(std::vector&lt;TMySubClass&gt; m_daughters)
    C --> D([TMySubClass])
    D --> E(int m_index)
    D --> F(float m_x)

To handle the tree-like data structure, Reader is introduced. It consists of Python and C++ parts. The Python part is responsible for generating the information tree, constructing C++ readers, and reconstructing data to awkward array. The C++ part is responsible for reading the data members of the class from the binary stream.

Generate information tree

uproot can read these structure information from the ROOT file, but not in tree format. So the first step is to generate an information tree from the ROOT file. The information tree is a nested structure that contains the data members of the class, including types, names and children if any.

Construct C++ readers

According to the information tree, we can instantiate C++ readers and combine them into a tree structure. The top reader drives its sub-readers to read data recursively. After the reading process, readers obtain the results from their sub-readers recursively, then the top reader returns the final result.

Reconstruct data to awkward array

Since embedding arrays together into awkward array in C++ is not straightforward, we left this task to Python. After the C++ reader returns the result, we can reconstruct the data into awkward array according to the information tree.

Predefined readers

uproot-custom provides some predefined readers for common ROOT classes:

Reader Description
BasicTypeReader Reads basic types like int, float, double, etc.
TObjectReader Skip TObject header when reading classes that inherit from TObject.
TStringReader Reads TString
STLSeqReader Reads std::vector, std::array, etc.
STLMapReader Reads std::map, std::unordered_map, etc.
STLStringReader Reads std::string
TArrayReader Reads TArray types like TArrayI, TArrayF, TArrayD, etc.
ObjectReader Reads custom classes that inherit from TObject.
CArrayReader Reads C-style arrays like int[]
EmptyReader A reader that does nothing. Some branches may not have any data, and the information of the corresponding class will not be stored in the ROOT file. In this case, EmptyReader is used to skip the branch.

Implement your own Reader

Full example

A complete example of how to impolement your own readers is available in the example directory. You can also refer to the Python part and C++ part of predefined readers for implementation details.

Pre-requisites

Make sure you have GCC>13.1/Clang>=16.0.0/MSVC>=19.31, cmake installed on your system.

  1. Create a Python project and install uproot-custom:

    mkdir my_reader
    cd my_reader
    python3 -m venv .venv
    source .venv/bin/activate
    pip install uproot-custom
    
  2. Create a pyproject.toml file in the root directory of your project:

    [build-system]
    requires = ["scikit-build-core>=0.11", "pybind11>=2.10.0", "uproot-custom"]
    build-backend = "scikit_build_core.build"
    
    [project]
    name = "my-reader"
    requires-python = ">=3.9"
    dependencies = ["uproot-custom"]
    version = "0.1.0"
    
    [tool.scikit-build]
    wheel.packages = ["my_reader"]
    build-dir = "build/{wheel_tag}"
    cmake.source-dir = "cpp"
    cmake.build-type = "Debug" # Comment for release builds
    
    [tool.black]
    exclude = "/(build|dist|env|.git|.tox|.eggs|.venv)/"
    line-length = 95
    target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
    

    you can change the name, version, and other fields as you like.

    [!WARNING] If you are releasing the project, specify concrete major and minor versions of uproot-custom to ensure the header files are compatible. For example, use uproot-custom~=1.2 instead of uproot-custom>=1.2 (may not be compatible with future versions).

Reader interface

For a custom Reader, a C++ part and a Python part are both required.

For C++ part, the constructor must inherit from IElementReader, and these methods must be implemented:

  • void read(BinaryBuffer& buffer): Read data from the binary buffer.
  • py::object data() const: Return the data as a Python object. You can return anything defined in pybind11, such as py::tuple, py::list, py::array_t, etc.

For Python part, the class must inherit from uproot_custom.BaseReader and implement the following class methods:

  • gen_tree_config: Generate a configuration dictionary for the reader based on the information tree. It should return a dictionary if you want your reader to be used, otherwise return None.
  • get_cpp_reader: Identify the tree configuration and return the C++ reader instance if it matches, otherwise return None.
  • reconstruct_array: Reconstruct the raw data to an awkward array according to the tree configuration.

Implement the C++ reader

  1. Create a cpp directory in the root directory of your project, and create a my_reader.cc file in it.

  2. In my_reader.cc, include the necessary headers and implement your reader class. For example:

    #include "uproot-custom/uproot-custom.hh"
    using namespace uproot;
    
    class MyReader : public IElementReader {
        public:
            // Must at least receive a name
            MyReader( std::string name )
                : IElementReader(name), m_data( std::make_shared<std::vector<int>>() ) {}
    
            // Implement these methods
            void read( BinaryBuffer& buffer ) {
                // Read data from the buffer
                // Implement your reading logic here
            }
    
            py::object data() const {
                // Return the data as a Python object
                return make_array( m_data );
            }
    
        private:
            const std::string m_name;
            std::shared_ptr<std::vector<int>> m_data; // Example data member
    };
    

    then declare the C++ module in the same file:

    PYBIND11_MODULE( my_reader_cpp, m ) {
        register_reader<MyReader>(m, "MyReader");
    }
    

    if the constructor requires more parameters, register it with the constructor signature (except the name):

    // Constructor signature:
    MyReader( std::string name, bool param1, std::vector<IElementReader> sub_readers )
    
    // Register the reader with the constructor signature:
    PYBIND11_MODULE( my_reader_cpp, m ) {
        register_reader<MyReader, bool, std::vector<IElementReader>>(m, "MyReader");
    }
    

[!IMPORTANT] Use std::shared_ptr for data members in your reader class, as uproot-custom will manage the memory of the data members. This is important to avoid memory leaks and ensure proper cleanup.

  1. Create a CMakeLists.txt file in cpp directory:

    cmake_minimum_required(VERSION 3.20)
    
    if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.27)
        cmake_policy(SET CMP0148 NEW)
    endif()
    
    set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
    set(CMAKE_CXX_STANDARD 20)
    
    project(${SKBUILD_PROJECT_NAME}
        VERSION ${SKBUILD_PROJECT_VERSION}
        LANGUAGES CXX
    )
        
    set(PYBIND11_NEWPYTHON ON)
    find_package(pybind11 REQUIRED)
    find_package(uproot-custom REQUIRED)
    
    pybind11_add_module(my_reader_cpp
        my_reader.cc
        # Add other source files here if needed
    )
    
    target_link_libraries(my_reader_cpp PRIVATE uproot-custom)
    
    if(DEFINED SKBUILD_PROJECT_NAME)
        install(
            TARGETS my_reader_cpp
            LIBRARY DESTINATION ${SKBUILD_PROJECT_NAME}
        )
    endif()
    

Implement the Python reader

  1. Create a my_reader directory in the root directory of your project, and create a __init__.py file in it.

  2. In __init__.py, import the C++ module and implement your Python reader class:

    from . import my_reader_cpp as _cpp
    from uproot_custom import BaseReader
    
    
    class MyReader(BaseReader):
        @classmethod
        def gen_tree_config(
            cls,
            top_type_name: str,
            cls_streamer_info: dict,
            all_streamer_info: dict,
            item_path: str = "",
        ) -> dict | None:
            """
            Identify the node in the information tree,
            return the configuration dictionary if the node is matched,
            otherwise return None.
            """
    
        @classmethod
        def get_cpp_reader(cls, tree_config) -> _cpp.MyReader | None:
            """
            Identify the tree_config,
            if it is matched, return the C++ reader instance,
            otherwise return None.
            """
    
        @classmethod
        def reconstruct_array(cls, raw_data, tree_config):
            """
            Reconstruct the raw data to an `awkward` array according to the tree_config.
            """
    

    ![NOTE] The @classmethod is not necesarry, but when a regular member method is used, you should pass the instance of the class to registered_readers.

Register the reader

Register branch path

The default interpretation uproot_custom.AsCustom needs to know which branch to read with custom readers. You can export the branch path with:

import uproot
from uproot_custom import regularize_object_path

f = uproot.open("my_file.root")
branch = f["path/to/my_branch"]

print(regularize_object_path(branch.object_path))

This will print the regularized object path like /my_tree:my_branch. Then you can add it to the AsCustom.target_branches set:

from uproot_custom import AsCustom

AsCustom.target_branches.add("your-branch-path")

Register the reader

To let uproot_custom.AsCustom know your reader, you need to register it:

from uproot_custom import registered_readers
from my_reader import MyReader

registered_readers.add(MyReader)

Then you can use uproot to read the custom class as usual.

[!TIP] It is recommended to do the registration in your project __init__.py, so that you can use your custom reader as long as you import your project.

Download files

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

Source Distribution

uproot_custom-1.1.3.tar.gz (70.6 kB view details)

Uploaded Source

Built Distributions

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

uproot_custom-1.1.3-cp313-cp313-win_amd64.whl (135.6 kB view details)

Uploaded CPython 3.13Windows x86-64

uproot_custom-1.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (165.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

uproot_custom-1.1.3-cp313-cp313-macosx_11_0_arm64.whl (136.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

uproot_custom-1.1.3-cp312-cp312-win_amd64.whl (135.6 kB view details)

Uploaded CPython 3.12Windows x86-64

uproot_custom-1.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (165.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

uproot_custom-1.1.3-cp312-cp312-macosx_11_0_arm64.whl (136.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

uproot_custom-1.1.3-cp311-cp311-win_amd64.whl (134.8 kB view details)

Uploaded CPython 3.11Windows x86-64

uproot_custom-1.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (165.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

uproot_custom-1.1.3-cp311-cp311-macosx_11_0_arm64.whl (135.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

uproot_custom-1.1.3-cp310-cp310-win_amd64.whl (134.2 kB view details)

Uploaded CPython 3.10Windows x86-64

uproot_custom-1.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (164.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

uproot_custom-1.1.3-cp310-cp310-macosx_11_0_arm64.whl (134.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

uproot_custom-1.1.3-cp39-cp39-win_amd64.whl (133.9 kB view details)

Uploaded CPython 3.9Windows x86-64

uproot_custom-1.1.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (164.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

uproot_custom-1.1.3-cp39-cp39-macosx_11_0_arm64.whl (134.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file uproot_custom-1.1.3.tar.gz.

File metadata

  • Download URL: uproot_custom-1.1.3.tar.gz
  • Upload date:
  • Size: 70.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for uproot_custom-1.1.3.tar.gz
Algorithm Hash digest
SHA256 98b7cf318c2c4cb3a25cca445ea32f8a1f32a80556566a1b3aeaf0ad60450dc4
MD5 0081faab86b52bd43995971bacbf704f
BLAKE2b-256 eb2dd0107a391ae92f35769a069a68fca1dc0300f679bf126c112cbe58ed7473

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3.tar.gz:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0564885a8c89a0a51413d207362ae9f5fc71f79fbf923b627e6475be2cca9e82
MD5 7df54f9543b6cf40575f7fe43659c1d9
BLAKE2b-256 9480f3282467ac369edca19dce069e0d1938de8e7e52c91fdd963be77b056b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9da248819b97661e5526ad82f39c6dd674359d95bd9058d2120b695e65773938
MD5 4d82d349a004c706683d8b6b53081c8f
BLAKE2b-256 75aa7264c6301fe7944742077db2202c11deec460410c1bbe20d4506c0451876

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5af221cf74b821131b5dcbe0e3ae4491c43c2af14143ad38b6fa5ff86ce322b8
MD5 51665bd00a236e875985852b8a65c285
BLAKE2b-256 2833cf8a052fb56d1ea0bb69f14caa4e93c5d39a401ec289086f759987a803e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 448b92d1bed2fc3a8ecf6e6c4da94a39f612025260e97d7a4cd6d1c83d3f45cf
MD5 b9d9077199319ff9d89fbce8d9ce7fc8
BLAKE2b-256 330ee32435bb933deef5fb6caaade9673e0fc51790c0b872b8435de3d131ca9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 927123d01664f7bc91c33598aeffc4409747920f9f6d1fb895fe992299b228f7
MD5 9acf78af016f27c9fb80f301da2d949f
BLAKE2b-256 d0110120ae4bee3d1d80944ff3f4ac081e04f0fa594dad711eea204c4b5ea6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a207c46591c915dfbf4c7fd48fe1ac205dcb279cd586d19df85fcdaed4df69c
MD5 5918a4471e422707fb5eb9527ed3b315
BLAKE2b-256 fa2a529ba86ba10f8216875c0881c301a5db4096abdc6380a896c38bd6242c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b09bded4ac1c34f90da21680da02a3f15a67196cc0d3be3f4146c44cefcfbbf1
MD5 0afb28310250c215016575dc4a7a5a6b
BLAKE2b-256 f6b68a951fda9a5e35e9be255080a861ed38574d3563b5d33bd2b2ce28d0acb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f6f1bbb81d629b52b424c43602187c57ed4660c62037e79298f592fe6d07ab7
MD5 5fade300423d27ca178dadd3c5ea32cd
BLAKE2b-256 eb2f9700ebeac660de9c91777d297d65b5a05b417162bc27de47d9bfc3fce805

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5913b87b47e5f1a8de74bb946abe2dd780e834a10d0b1c7944be5c0b02d56032
MD5 00e3b39f4e9d1ab9739a6646de8f1ce6
BLAKE2b-256 78f033f2050acd6c22d89566816526136d708c8851b00270bbfa4719ceb9217c

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97389053ce183dfa35a6ec72a41c8aaac0ca9868c59f782420d7d3057de18a3d
MD5 a8f5ac114e9aa36bc512311506f9b803
BLAKE2b-256 1ff03a35c60e80faafa3364d309c9baa4e27a19a69d70a5888da8d1b3b779b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9128351e53a61d09f333dcc3301ab1a255a604f503c7ff85bb2ee036e07e0225
MD5 ffa11d2bd09b3009a7b69d0124cff032
BLAKE2b-256 bd8edc348f2f842a31366e3684bdb2ddad049df9b8bf188d7af7c1e755809e81

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3af809e62dba6c9ff44ee4e9c49f558cbbb9c861fa060938b1473c394a989aec
MD5 d761656b2fc3211b1088ecc9469e8fee
BLAKE2b-256 0b19b93a06ffabe7ed10274bbf7cec0ccccf0b8c54fb939f630b37fe0e61f71d

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b6003db1515024127d64a350366457a1c0adb42756e3a0f03a465747eb24812
MD5 32ba819c1692d23a3827fd5dbdb26bd8
BLAKE2b-256 950c5bc128b7dc2cca69d978f97c8a57118ec4998dc2e872642bda1f4cb1b21b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp39-cp39-win_amd64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df0f543b1350995005836a529bee3c40485749749a077a6587a50155f2861865
MD5 dfe5376e33d293437fc64f7dd3ce5b9a
BLAKE2b-256 268db20e720c6ab4c7f41c2c4cdbf58c6a689ae16d614fe49b392fac1336a6a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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

File details

Details for the file uproot_custom-1.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uproot_custom-1.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3026fd159254bb2efa9858773afd33241b66a29a0a1e74dd5e16bea55cc68e66
MD5 d77691f34faea134d936a7f87b08b5f1
BLAKE2b-256 b2c8ed011e4e6e9b9898b9d8c0bbb58b8ddb575600112614859626999b45305c

See more details on using hashes here.

Provenance

The following attestation bundles were made for uproot_custom-1.1.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on mrzimu/uproot-custom

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