Skip to main content

Ebi - a process mining tool

Ebi is a process mining software suite, maintained by the BPM group of RWTH Aachen University, Germany. It contains several algorithms and techniques that perform analyses on event logs and process models. Ebi can be used as a command-line utility, from a browser and in ProM. Furthermore, Ebi can be called from Rust, Python, Java and Javascript.

Ebi provides process mining and stochastic process mining algorithms, and supports exact arithmetic for most of these algorithms.

More information on its use can be found in its PDF manual.

Using Ebi

Use Ebi from a browser

Most commands of Ebi can be used directly from the browser on the commands page.

This will run fully on your computer, is limited to 4GB of RAM, and does not upload files.

Use Ebi as a command line utility

  1. Download Ebi CLI for Windows or for Linux.
  2. In Linux, give the file execution permissions.
  3. Open a command prompt and run the executable. Installation is not necessary, and Ebi does not require internet access.
  4. For an overview of the commands, refer to the commands page or the PDF manual.

Ebi runs on Mac OS X and many other platforms by self-compilation; please see below.

A good way to get started is to try ebi info followed by a file name, which will parse the file and print some information about it.

Use Ebi in ProM

Ebi is also available in the ProM framework on Windows and Linux. In the ProM Package Manager, install Ebi. Then, several Ebi commands can be used like any other ProM plug-in. As Ebi is extremely flexible in its inputs and outputs, please ensure you choose the correct input and output plug-in (there are many).

The PDF manual indicates which commands are available in ProM.

Call Ebi from Python

Ebi can be used as a Python package, which integrates with PM4Py.

  1. Install the Ebi-pm package using pip:

     pip install ebi-pm
    
  2. Then, one can use Ebi as follows:

     import pm4py
     import ebi
     # Load a log using PM4Py
     log = pm4py.read_xes("myLog.xes", return_legacy_log_object=True)
     # Load a model as a string
     with open('mymodel.slpn', 'r') as file:
         model = file.read()
     # Call the Ebi function
     result = ebi.conformance_earth_movers_sample(
         log,
         model,
         1000
     )
     print(result)
    

The names of the Ebi functions can be found on the commands page or in the PDF manual.

Some PM4Py objects, such as event logs, are read directly by Ebi, but most are passed as strings. If Ebi returns an exact fraction, it is returned as an array consisting of 1) a floating-point approximation, 2) the full numerator, and 3) the full denominator.

Call Ebi from Rust

Ebi can be used as a Rust crate, available from crates.io.

  1. Add the following to the Cargo.toml file:

     [dependencies]
     ebi = "*"
    
  2. Then, one can use Ebi as follows:

     use ebi::ebi_objects::FiniteStochasticLanguage;
     use ebi::{
         ebi_traits::ebi_trait_finite_stochastic_language::EbiTraitFiniteStochasticLanguage,
         techniques::earth_movers_stochastic_conformance::EarthMoversStochasticConformance,
     };
     use ebi_objects::ebi_arithmetic::{Fraction, One};
     use std::fs;
     // Read the first file and box it
     let fin1 = fs::read_to_string("testfiles/empty_trace.slang").unwrap();
     let slang1 = fin1.parse::<FiniteStochasticLanguage>().unwrap();
     let mut object1: Box<dyn EbiTraitFiniteStochasticLanguage> = Box::new(slang1);
     // Read the second file and box it
     let fin2 = fs::read_to_string("testfiles/empty_trace.slang").unwrap();
     let slang2 = fin2.parse::<FiniteStochasticLanguage>().unwrap();
     let mut object2: Box<dyn EbiTraitFiniteStochasticLanguage> = Box::new(slang2);
     // Compute EMSC
     let emsc = object1
         .earth_movers_stochastic_conformance(object2.as_mut())
         .unwrap();
     assert_eq!(emsc, Fraction::one());
    

Call Ebi from Java

To use Ebi from Java:

  1. Download the Ebi library for Windows or Linux and put it in a folder that is accessible to the Path of your program.

  2. Add the following static declarations:

    static native String call_ebi_internal(String command_name, String output_format, String[] inputs);
    static {
        try {
            System.loadLibrary("ebi");
            System.out.println("Ebi library loaded");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
  3. Then, Ebi can be called through the native function, for instance:

    String log = Files.readString("log.xes", StandardCharsets.UTF_8);
    String result = call_ebi_internal("Ebi analyse completeness", ".frac", new String[] {log});
    

The commands page indicates the commands that can be called from Java.

Call Ebi from Javascript

Ebi is available as an NPM library.

Feedback & Development

Got a feature request? Found a bug? Please use our Github issue page.

Ebi is hosted on Github. To get started with development, or to compile for Mac OS X:

  1. Install Rustup
  2. Log out and in again
  3. Install Visual Studio Code
  4. In Visual Studio Code, install the extension rust-analyzer
  5. With a browser, go to the project on Github, choose "Clone", "Visual Studio Code (SSH)", and clone it in Visual Studio Code.
  6. To run Ebi, use the terminal of Visual Studio Code to give the command "cargo run --" instead of "ebi". Everything else is equivalent to the commands mentioned in the manual.
  7. To compile Ebi, give the command "cargo build --release". The binary is then placed in the project folder, in the "build/release" sub-folder.

Information on the architecture of Ebi, including its sub-crates, can be found in the PDF manual.

We welcome pull requests on Github. Before opening a pull request, please ensure that the test batch file src/tests/test.sh finishes without errors (on Windows, rename it to .bat and remove the first three lines). This file may take up to an hour to run, depending on your machine.

License

Ebi has a dual MIT and GPL license.

Download files

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

Source Distribution

ebi_pm-0.3.14.tar.gz (334.1 kB view details)

Uploaded Source

Built Distributions

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

ebi_pm-0.3.14-cp314-cp314t-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

ebi_pm-0.3.14-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl (7.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.12+ i686

ebi_pm-0.3.14-cp314-cp314t-macosx_11_0_arm64.whl (5.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ebi_pm-0.3.14-cp314-cp314t-macosx_10_12_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

ebi_pm-0.3.14-cp37-abi3-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.7+Windows x86-64

ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ x86-64

ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ i686

ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARMv7l

ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARM64

ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ x86-64

ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.6 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390x

ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64le

ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7l

ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64

ebi_pm-0.3.14-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (7.3 MB view details)

Uploaded CPython 3.7+manylinux: glibc 2.12+ i686

ebi_pm-0.3.14-cp37-abi3-macosx_11_0_arm64.whl (5.8 MB view details)

Uploaded CPython 3.7+macOS 11.0+ ARM64

ebi_pm-0.3.14-cp37-abi3-macosx_10_12_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.7+macOS 10.12+ x86-64

File details

Details for the file ebi_pm-0.3.14.tar.gz.

File metadata

  • Download URL: ebi_pm-0.3.14.tar.gz
  • Upload date:
  • Size: 334.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for ebi_pm-0.3.14.tar.gz
Algorithm Hash digest
SHA256 a71a2319d58a4f9beacb325dbddf7f6f1958db82b0d634d3d945e589236ed5d3
MD5 6d2bdab1465c634d5e12b99b53892518
BLAKE2b-256 f09b6d42f82f44886ed95de5af0575f9f01d62b0e649a786a9f43e5f20e8761d

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c2133f0c75a50e97db4ebe194875fb4263f10d9a4ec1f3823d1418b85d1f1459
MD5 8015df07048ae2be02d7d45c287c3b6c
BLAKE2b-256 98e96d47db8d6f6402bcc9971eee8fde549c82b0eca6acd290668524269b918e

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa001f16914bc1188d0cc85ff89a9bf5d5994901bc97da8763596a1990989353
MD5 05d06f99a3bdc781a8b6886f3b931d38
BLAKE2b-256 fe7def2e2a8a65f11ca72389cdf92f68689e4f43e633fe03f37eba84e94e59e0

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 386f5af3e6462cf21ce7c0c01d9c5f342f0142910b8fe08e05923ab0ccbd5319
MD5 0eea0c810e3e069459c003c52209e186
BLAKE2b-256 8815597120a5e5b785f9a026a1845f252e094e6e241a80a065d2859f5a89dcb6

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86a5395697d40f5e7e5e51e97bac7e994ab1f0da15e5818ef664f2539c5da08e
MD5 787ef72afdea09180b60a1583bcf039b
BLAKE2b-256 3f81871e43458061b6298383cd6e7627c066f2639cf4db45ae4d6119c28dd22a

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b19226acc0bf5385c3dddbfde126eadaa959a7b6916b7548ce4e4bb9468ba395
MD5 7638af68c4ca7d9916130a43db8281ce
BLAKE2b-256 9b7dd56a972f9e0d272e57c1807a5cb3a76583c8d94c30be653dade7418d9aef

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d34ec024247a069f9aaad7624da39649d7d9484618d9f709d134be364316344
MD5 de3233902416f8a58d25affe7f7bdc2c
BLAKE2b-256 137084f23b6c81c717b912d6063d4ca05190c83769cc67b15fe341394f1fc2f3

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 edb8166e52efde39b81bb4d7d55219d4f4ea3de8fd74d59ee140b87c26e05aa0
MD5 6db0433fed52c768c086cf796d5182e8
BLAKE2b-256 d6ff9825f361cc2066f65efcca5c1a9e749d8b9e738691237451a7330fd391d7

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e7f42e35b379bb8851d6f03672b67defb67080cff586a9f9641780a8ca61605
MD5 69dcdd026711c80a9bea69ffa8c78bf6
BLAKE2b-256 dbde0a47203c2eeeaea2450553531853eed55949243918a8c1d9052cf2be882b

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94cbfe67dfc3d47dcaea07cf80d3a99be82fa6b124a6531194b9a112ebcfeaea
MD5 ca0da3c344a8ee1bc33124692dc3c7d9
BLAKE2b-256 24d2fcfcbda3984bcb3313d7541cc56a9512cdb33cafe7e6ecb0e0efd705db12

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5737dae0bbf9afc38ee59fb4859b9555ece3b544adde007ff343812c7f3c81d
MD5 7b76fe80332793e476f1a649c7b2c635
BLAKE2b-256 059ebf62082699f8c829a462f6c5ab8998f838958677387eab8d0985a8cf3463

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6ee12c63340a2c5526df86f8fbb668ee2d516703b6f435bf724d28bf542e7b34
MD5 cabd15bd616e927df3ca9412c7d21a80
BLAKE2b-256 4e3bd8212ba865a40433c122e3849f17a2af36a73c9ea380cd8c18a517f46c9a

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e83cd39b8ca57e80d6a03ec77efecbf379c6a0669961d3728ac5d0401aa7e9d9
MD5 8120c1eaa742986c80c6418ef315deee
BLAKE2b-256 93f1d742f6bfd3231c876802264b151fedecd4f47cced23dafbbe4899b10f604

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a8d9ecf08d31e22330e018d2cdaa45b6f3eff270e6df16b67b3e96c4d27c01c
MD5 eef238ed52a762eaade255bb48f5e2ad
BLAKE2b-256 1d312569e64847adfd101bce3727f9c219c427321f29a772a2919997e0591adf

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-win_amd64.whl.

File metadata

  • Download URL: ebi_pm-0.3.14-cp37-abi3-win_amd64.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.7+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 d04e13ca6a77fcd0c572925669b8ca09a5c479997ae4ff120dace8276472deba
MD5 b46a8c2b1c3800760ed898426b267458
BLAKE2b-256 158944cb6403b93e51d4991799156a4ee50b1bf36992f3a21526b442a6036eb4

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aa9c13700183d79fd0cf20f956173232b93239ad66687af8c8f5df1c7dd51df
MD5 8d0c446ec1607d2d6dee8b4267b92c32
BLAKE2b-256 bb58bcdf0665de833ba8f09fee8d26c69ee32fd981e3a303d608ec1321fd807e

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d688a985e45fb0b579f608643d348022f89dc35a12b62b10b780821cc18ae55
MD5 ad98293f0d79a584cb41c3215fc5d24a
BLAKE2b-256 ad3943645bbe9636a22d365861357026ab534aa1d6790538c6b0ea9a56a9697d

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03d2dff8bf04391cd268b989e5eb440e68067f861c9ae5e38294c76b784f284e
MD5 b28492f904ca4e696708d351fa189fd7
BLAKE2b-256 bc6f9c6ee4716c4c46af8fec17d2d0ae6095b989bdba73be46d99c8e63aa25e8

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9ce1d9968b92539f7221eb1bf7aa1d4a9e758752ea0dac1ae7cd63d6cd4e3d2
MD5 6ffa63842e5d27855104dbec5ac7d54a
BLAKE2b-256 0ce8c34c2a088b2cdc7dc5237267d774a7f82913816f7152b980d4f67055e7d6

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11181e0ebeef7f6f6204b1bdace5d8fb99ff8a2471d5331ef9473232402191cc
MD5 9a69bb21a2b6ed011f8dce3febe45a99
BLAKE2b-256 0a28ee88ae4066826039ef4c29d1edbc458e27c13de21c25a340d9ca2cd7ed4c

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e627649a46ac8c39b316ae10034b3d919b8dcf5419d389813605bcb3bd72d25b
MD5 80d780c77f7082f58dec8adcacfe1457
BLAKE2b-256 52a5916dbfaadf9b1e826fc22fe9e854addcf6dec74291f287c99e5c05d2a8c7

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4b4c8230af2d3b767903242f724ad5c5f70f584f08dadebbfa2daa963cdd48e
MD5 e0b196535d063f63bef33d719a1d8cb4
BLAKE2b-256 7e7941d30f6e3742bcae41ce68845fd049e211cb6b93759f4ae2ff6761a05c05

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 72656d0ef3830aaa59d96358feef0d567ad0d9689a045cc28193d73fe5999cfc
MD5 aa723f01922fc5ae24562b52918d8a39
BLAKE2b-256 9981e5f7ea0cc0a5b96d9dd966144f11e776ec91e1b03f9e6c3572662e247ba6

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97cc955a1c2a384830d49398280d2a8a108a7cbefba7e96f0ab58b5e8ee294cd
MD5 9820fba84d8743d12cb0bb64c1ebed6e
BLAKE2b-256 c9a7c3c8c59c802f74873b291c503e544a4b12fdeeb6e1b285224d10f7689a19

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0b61b8aefb4c51bf3db9ddb4f3e8f4df6fa7a132790f87e26e711ee9525cb963
MD5 f014aed1cdcd800af5ddc5926968db45
BLAKE2b-256 78d5b38b18ab5ce8d84ec1474a66c864a5d7aa33c90adf18b60ee260f4d5d4c0

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 081c732ed9106cd7e278c93dc8c977082fd9585329be3e0f055a2bbc64996555
MD5 d2b30fe17de59f460e5c3bcce2175630
BLAKE2b-256 e34684875ea753a06e8342bd8361d88e61b8f568dab11892a5e48839defdd380

See more details on using hashes here.

File details

Details for the file ebi_pm-0.3.14-cp37-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ebi_pm-0.3.14-cp37-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 404e877585cd816cf9d6bc0b10e26eb8b4537377303032c1f68a050603dcb953
MD5 586744e10a44146c1f7e5f8260e3051d
BLAKE2b-256 b87295555160510232b5ee33bf78dc40597fae63feea86a9e368a6f03b59c746

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.14 This release

27 files

0.3.12

27 files

0.3.11

27 files

0.3.9

27 files

0.3.8

29 files

0.3.5

29 files

0.3.4

37 files

0.3.3

37 files

0.3.1

29 files

0.3.0

2 files

0.0.7

2 files

0.0.6

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page