Skip to main content

This library provides a Python interface for building BitcoinSV scripts and transactions.

Project description

TX Engine

This library provides a Python interface for building BitcoinSV scripts and transactions.

The classes Script, Context, Tx, TxIn and TxOut are imported from the top level of tx_engine.

For documentation of the Python Classes see here

Python Installation

As this library is hosted on PyPi (https://pypi.org/project/tx-engine/) it can be installed using the following command:

pip install tx-engine

Example Tx class usage

So to parse a hex string to Tx:

from tx_engine import Tx

src_tx = "0100000001c7151ebaf14dbfe922bd90700a7580f6db7d5a1b898ce79cb9ce459e17f12909000000006b4830450221008b001e8d8110804ac66e467cd2452f468cba4a2a1d90d59679fe5075d24e5f5302206eb04e79214c09913fad1e3c0c2498be7f457ed63323ac6f2d9a38d53586a58d41210395deb00349c0ae73412a55bec70a7793fc6860a193d29dd61d73c6271ffcbd4cffffffff0103000000000000001976a91496795fb99fd6c0f214f7a0e96019f642225f52d288ac00000000"

tx = tx.parse_hexstr(src_tx)
print(tx)

PyTx { version: 1, tx_ins: [PyTxIn { prev_tx: "0929f1179e45ceb99ce78c891b5a7ddbf680750a7090bd22e9bf4df1ba1e15c7", prev_index: 0, sequence: 4294967295, script_sig: [0x48 0x30450221008b001e8d8110804ac66e467cd2452f468cba4a2a1d90d59679fe5075d24e5f5302206eb04e79214c09913fad1e3c0c2498be7f457ed63323ac6f2d9a38d53586a58d41 0x21 0x0395deb00349c0ae73412a55bec70a7793fc6860a193d29dd61d73c6271ffcbd4c] }], tx_outs: [PyTxOut { amount: 3, script_pubkey: [OP_DUP OP_HASH160 0x14 0x96795fb99fd6c0f214f7a0e96019f642225f52d2 OP_EQUALVERIFY OP_CHECKSIG] }], locktime: 0 }

Tx

Tx represents a bitcoin transaction.

Tx has the following properties:

  • version - unsigned integer
  • tx_ins - array of TxIn classes,
  • tx_outs - array of TxOut classes
  • locktime - unsigned integer

Tx has the following methods:

  • __init__(version: int, tx_ins: [TxIn], tx_outs: [TxOut], locktime: int=0) -> Tx - Constructor that takes the fields
  • id(self) -> str - Return human-readable hexadecimal of the transaction hash
  • hash(self) -> bytes - Return transaction hash as bytes
  • is_coinbase(self) -> bool - Returns true if it is a coinbase transaction
  • serialize(self) -> bytes - Returns Tx as bytes
  • copy(self) -> Tx - Returns a copy of the Tx
  • to_string(self) -> String - return the Tx as a string. Note also that you can just print the tx (print(tx)).
  • validate(self, [Tx]) -> Result - provide the input txs, returns None on success and throws a RuntimeError exception on failure. Note can not validate coinbase or pre-genesis transactions.

Tx has the following class methods:

  • Tx.parse(in_bytes: bytes) -> Tx - Parse bytes to produce Tx
  • Tx.parse_hexstr(in_hexstr: String) -> Tx - Parse hex string to produce Tx

So to parse a hex string to Tx:

from tx_engine import Tx

src_tx = "0100000001c7151ebaf14dbfe922bd90700a7580f6db7d5a1b898ce79cb9ce459e17f12909000000006b4830450221008b001e8d8110804ac66e467cd2452f468cba4a2a1d90d59679fe5075d24e5f5302206eb04e79214c09913fad1e3c0c2498be7f457ed63323ac6f2d9a38d53586a58d41210395deb00349c0ae73412a55bec70a7793fc6860a193d29dd61d73c6271ffcbd4cffffffff0103000000000000001976a91496795fb99fd6c0f214f7a0e96019f642225f52d288ac00000000"

tx = Tx.parse_hexstr(src_tx)
print(tx)

PyTx { version: 1, tx_ins: [PyTxIn { prev_tx: "0929f1179e45ceb99ce78c891b5a7ddbf680750a7090bd22e9bf4df1ba1e15c7", prev_index: 0, sequence: 4294967295, script_sig: [0x48 0x30450221008b001e8d8110804ac66e467cd2452f468cba4a2a1d90d59679fe5075d24e5f5302206eb04e79214c09913fad1e3c0c2498be7f457ed63323ac6f2d9a38d53586a58d41 0x21 0x0395deb00349c0ae73412a55bec70a7793fc6860a193d29dd61d73c6271ffcbd4c] }], tx_outs: [PyTxOut { amount: 3, script_pubkey: [OP_DUP OP_HASH160 0x14 0x96795fb99fd6c0f214f7a0e96019f642225f52d2 OP_EQUALVERIFY OP_CHECKSIG] }], locktime: 0 }

Tx utility functions.

There are some utility functions that can be called with a transaction.

  • sig_hash - return the sighash pre-image of a transaction
  • sig_hash_preimage - return the double sha256 of the sighash pre-image of the transaction. This is the value that is signed when creating a transaction.

These functions are shown below:

from tx_engine import Tx, sig_hash_preimage, sig_hash, Script, SIGHASH

src_tx = "0100000001c7151ebaf14dbfe922bd90700a7580f6db7d5a1b898ce79cb9ce459e17f12909000000006b4830450221008b001e8d8110804ac66e467cd2452f468cba4a2a1d90d59679fe5075d24e5f5302206eb04e79214c09913fad1e3c0c2498be7f457ed63323ac6f2d9a38d53586a58d41210395deb00349c0ae73412a55bec70a7793fc6860a193d29dd61d73c6271ffcbd4cffffffff0103000000000000001976a91496795fb99fd6c0f214f7a0e96019f642225f52d288ac00000000"
tx_bytes = bytes.fromhex(src_tx)

tx = Tx.parse(tx_bytes)

sig_hash_val = sig_hash(
        tx=tx,
        index=0,
        script_pubkey=Script(),
        prev_amount=prev_value,
        sighash_value=SIGHASH.ALL_FORKID
        )

preimage_sighash = sig_hash_preimage(
        tx=tx,
        index=0,
        script_pubkey=pushtx_lock,
        prev_amount=prev_value,
        sighash_value=SIGHASH.ALL_FORKID
        )

Example Script execution

>>> from tx_engine import Script, Context

>>> s = Script.parse_string("OP_10 OP_5 OP_DIV")
>>> c = Context(script=s)
>>> c.evaluate()
True
>>> c.get_stack()
[2]

Context

The context is the environment in which bitcoin scripts are executed.

  • evaluate_core - executes the script, does not decode stack to numbers
  • evaluate - executes the script and decode stack elements to numbers

Context Stacks

Context now has:

  • raw_stack - which contains the stack prior to converting to numbers
  • raw_alt_stack - as above for the alt_stack

Example from unit tests of usingraw_stack:

script = Script([OP_PUSHDATA1, 0x02, b"\x01\x02"])
context = Context(script=script)
self.assertTrue(context.evaluate_core())
self.assertEqual(context.raw_stack, [[1,2]])

Quiet Evalutation

Both evaluate and evaluate_core have a parameter quiet. If the quiet parameter is set to True the evaluate function does not print out exceptions when executing code. This quiet parameter is currently only used in unit tests.

Inserting Numbers into Script

  • encode_num() is now insert_num()

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

tx_engine-0.6.6.tar.gz (367.3 kB view details)

Uploaded Source

Built Distributions

tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (973.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (989.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (941.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (973.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (990.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (942.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (989.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

tx_engine-0.6.6-cp312-none-win_amd64.whl (785.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

tx_engine-0.6.6-cp312-none-win32.whl (693.0 kB view details)

Uploaded CPython 3.12 Windows x86

tx_engine-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (972.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

tx_engine-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

tx_engine-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (988.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

tx_engine-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (939.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

tx_engine-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (967.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

tx_engine-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (941.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

tx_engine-0.6.6-cp312-cp312-macosx_11_0_arm64.whl (842.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

tx_engine-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl (891.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

tx_engine-0.6.6-cp311-none-win_amd64.whl (786.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

tx_engine-0.6.6-cp311-none-win32.whl (694.6 kB view details)

Uploaded CPython 3.11 Windows x86

tx_engine-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (973.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

tx_engine-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

tx_engine-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (990.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

tx_engine-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

tx_engine-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

tx_engine-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (942.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

tx_engine-0.6.6-cp311-cp311-macosx_11_0_arm64.whl (843.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

tx_engine-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl (893.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

tx_engine-0.6.6-cp310-none-win_amd64.whl (786.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

tx_engine-0.6.6-cp310-none-win32.whl (694.5 kB view details)

Uploaded CPython 3.10 Windows x86

tx_engine-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (973.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

tx_engine-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

tx_engine-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (990.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

tx_engine-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

tx_engine-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

tx_engine-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (942.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

tx_engine-0.6.6-cp310-cp310-macosx_11_0_arm64.whl (844.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

tx_engine-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl (893.7 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

tx_engine-0.6.6-cp39-none-win_amd64.whl (787.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

tx_engine-0.6.6-cp39-none-win32.whl (695.0 kB view details)

Uploaded CPython 3.9 Windows x86

tx_engine-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (974.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

tx_engine-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

tx_engine-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (991.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

tx_engine-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

tx_engine-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

tx_engine-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (942.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

tx_engine-0.6.6-cp39-cp39-macosx_11_0_arm64.whl (845.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

tx_engine-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl (894.7 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

tx_engine-0.6.6-cp38-none-win_amd64.whl (786.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

tx_engine-0.6.6-cp38-none-win32.whl (694.9 kB view details)

Uploaded CPython 3.8 Windows x86

tx_engine-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (974.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

tx_engine-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

tx_engine-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (991.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

tx_engine-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (942.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

tx_engine-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

tx_engine-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (942.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file tx_engine-0.6.6.tar.gz.

File metadata

  • Download URL: tx_engine-0.6.6.tar.gz
  • Upload date:
  • Size: 367.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for tx_engine-0.6.6.tar.gz
Algorithm Hash digest
SHA256 f292cd3639bea6448e25680d8aec325afd8657b7c6ad902ea58751ec60fb7eb5
MD5 a2493c25113ed97dbcf08ad7b5363770
BLAKE2b-256 fc167a21bd37743e7b1f044f171e86484bd3193bf6e8abb4eed1ff8369c8c460

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7919f290caf576a55c9de2cce8f6951cc90a5efe05ddb93eefed1e5cf73dc44
MD5 c9a5f261365465e4134cc4d554642c44
BLAKE2b-256 10c5b0cb547e47caabb3cca8ce403291007bc77393924fe14eefc5b821452ccf

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17ef9598daa259155d6c1cdbf1997020f9eb72091ffb53dd83d73f2a829701ef
MD5 0889b16b178ee251dcbce8f6bf017c58
BLAKE2b-256 f46b4b856c5a720c1b91b7124784a9029dd76a58b1a9c4d10ca2a2cd8f6bfad1

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 633c645464385e7bc4fcff212635be369db7ddd8241822f3f0e1c9c777badc84
MD5 04e446cb18969b98cf67c62238a28920
BLAKE2b-256 87cb929f6a6206b32dcca12a57a09d41fd17ada86b0e30e2adfafd3a8df7a6a1

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cd2356c934bfcdfa638340a465951a9a7253e180a45bf0fc24719149e12def31
MD5 e24eaea0fdc8dbff32beac957ae53bc9
BLAKE2b-256 655b8f23c0edaf39cdf4afa3e6791464907c169d791f69cfbe2251f3e3829ee6

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98fecacabcc7af17e300a493a62e4ef6bb9b21292ba854e1c8f905dbacc300f0
MD5 0c003c11f08b95b6558fded3815ee3ae
BLAKE2b-256 a3584c8e3d7890acc7ad34d88978f338e21045c2918ff2b9999a89950edd89f3

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b6d0fe413942aaa2f7419ca4f9f2f65108482be096609e6914744b1326791ad
MD5 93a75563dfaaefe028b090ca0b3236ca
BLAKE2b-256 07bd0398eae09942f0ccc704595c98c703d066615eef2fbc1ba431f1542e4f41

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a13882e3ccbad1d4f3617bdecfd62f22c55c25e8c19cfdf5d1b81f85117bc72d
MD5 4d2150f9a67cefbf8fd803e05e404fd4
BLAKE2b-256 735316adc4f8a9d48c6b6115ab7723218da0587f216380960f8f19f562e7a8e9

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0977ad4300271a61dd203473d9d887a302c81635d5957f5ac6921557c5e713c5
MD5 54d9b297c6da24a2baa0bebdaf8742af
BLAKE2b-256 7bfd8c9546d2207d77b3a684f48d0b3fb5c330a1ef891b52ca2145d24c75fef7

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73014891abf5cafcb7282830f983737655c6860198f8e21109daf5a2d9392f4b
MD5 f3827ba723f71fbcf1b829a9af763a2a
BLAKE2b-256 142f4b947fd9fa5caeb49d161f532af791d653c1c41d357189e041848a86239a

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bcb9fe5cc00c0a7cc13d445d1b314b9ac4f9ea9730e3b94121ea8795bd04193
MD5 4b460b8c3d1a19a83f595eca0ae2dc5e
BLAKE2b-256 80309ed0d82d374a4baa8c89da6d5236bf3c5cb9ce066f5e2f02196e1becfc1c

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b40fc925e2f79a769f1b3a71f30ddbb441b9f166fbc11698e5b0447c82025246
MD5 e93be0e8fb4e829c2446931a01325c19
BLAKE2b-256 1c4225614b1c25afb8cf818c62e665eff71e52b3d7238957bad47474f8bdc47a

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 219b5d30ff291396e2232ede67ca3e313c94c45a6de3bae26fb20f501cc481ae
MD5 35418592ce47792daa9fba5c0b185b06
BLAKE2b-256 4e0f67451014a3c382674ee1aea74de85d8731bde44ca801d278e0bedd18e70f

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06ba2eb1aa1ffa82d73308fad1958a6d5bd7cbf0fb4b4566270b401f7eef17ab
MD5 a7198cbf15ffd42c7ff4a70f266386cc
BLAKE2b-256 64e3e9d64b498334fd70694e5a390c81ff9642e590e5183b0b7f6cfac2ee30d3

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbbc1787833490d635741bd2739b3af15d2b4080391d629329a71a55db2797bd
MD5 17cfacaf6ac3c534b573127f453855ba
BLAKE2b-256 56dfa0bfd6cd837640bb9a2825ab1442b4751e0d929df6fa45393e883eb7f112

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44bcd745ae71ee637b052323bb36d769aff26fb29b5e5be9969367d0de924325
MD5 d937394801a7c4d8457ddf9b49f02202
BLAKE2b-256 4c13879aee15ce742218fe9bf7557408ca06d7e4bf5a41da73185077a8d66e01

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e2553e615def14cc30bcf220f7e4092e675e7e74aea31868604a5ae7306036a
MD5 38f0627c06f7ccdf535c879de6254df6
BLAKE2b-256 7d9d90bec9c613184427933b817db3438975f0014b83f9772344d166b47a725f

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 9a5f01e214461e3f76e07757c592ac93901ba58d28ab3b83d3fa578821b25ffb
MD5 436e4ff69fc18e4961065ab6b909087f
BLAKE2b-256 53879d0057839c25bdd4b2c93c513eaf29ca82e8e6ec400abd25d56e1afc61b8

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-none-win32.whl.

File metadata

  • Download URL: tx_engine-0.6.6-cp312-none-win32.whl
  • Upload date:
  • Size: 693.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for tx_engine-0.6.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 e1901da6001c2207409c9ea78461ce1697e08144c8d9d3e5f2c871449df404f5
MD5 5fc193e313dd12607b7c29cc5172e297
BLAKE2b-256 2bbd31f62233f4b3082da6924242df24cc5c7188ad60d98bfb63c24162f1dce1

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23b2c5ff62ae19a51a1d5d4d26744c5c423e8af15c1ea985c4bc582739e32040
MD5 bab619ee84bf35baae4cf479218ae155
BLAKE2b-256 c239a10c46edc050139e1225f6b69c840a6cecda97103e28915c165948903c63

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ccb2dac2f43400e4ab34cd04ce884a1f2d0712fadb966f0acb5bd59414fbe81
MD5 9853644ad27aeacd46872fb086820a48
BLAKE2b-256 7f567532ca619625949bbff6b04c023382eabe04db79e7ad9556142276c47084

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80ef65df39758cb3ccbc24ba8936cbe7335ce10d7abdf2c45652b600030c8fce
MD5 58ade8a35deb580df07f9b1064fa383c
BLAKE2b-256 4fcb3011ad6ba9c9c10e1b2325ee7d7ecd6837cea21ba1aea91c73f50d862ea7

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f98eac542f0e4bc414e4ca78c9c42432e87126fc249ff13efe146b73fea027f
MD5 aa5489ead8fa29ff94941501c7254c1e
BLAKE2b-256 9b2c457d706cd158d2166e5e3b30c558932d06e14a70796993c455d171871cbe

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad6b175d360ccf6bd482d373addac32d0f548522869630e0a73c81062f67721e
MD5 6cbe2df109c7948b2f97d858ca01d271
BLAKE2b-256 e76934dd9c7dbd9d4d08d252144ea115167b96b85ba431f82ed7b59cd3d45018

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0060aed8059dba75c048a7f43e9d980c2041486ad25f08e0891a1d0c3604c9ef
MD5 b613641e88ad2ee3ea8e6ac9381fbac1
BLAKE2b-256 071ac31a35b60c909066ed68533e0e90212de5f243c37e70d2770f57accbd490

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 329ecec907bb39ff4d50c088e09c018d2e6631686c1309ad6d91ab7620aa6f94
MD5 fef88b59547a5b855025946eef543b75
BLAKE2b-256 220a8b003f6b73e14eb6bf130fad3c36502f6569a22518dbbc9466d8b175c235

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1e6d2c882c5ffe8e308638ef6b440fd6041f7ff5536492dbd68569eb5d9d8ef
MD5 8e06636a651748392987fd49da8c9a55
BLAKE2b-256 9f30a8af35ba106ad67cf9e00fda5bc8e99bca9616fa185c831b6bcd5b528e93

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c012c85d7ca62c5dbba5b788a81fc6b870b499cdcf90718b87b3416df3946aa9
MD5 78a79e86cd1ed71c08cb930f758cf998
BLAKE2b-256 080f4ec2195d2920a8783fc491c75452fc6e203bc0c5c37fd22d1cb598482e0e

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-none-win32.whl.

File metadata

  • Download URL: tx_engine-0.6.6-cp311-none-win32.whl
  • Upload date:
  • Size: 694.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for tx_engine-0.6.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 02b0d7b5026447d9c917c17f255494f090295072b000b99198f9a7caed3969b5
MD5 5bb8e5e842e43bad1733dc31e88d6927
BLAKE2b-256 b71c61f4898e60c495f6b9b951c9560bac39a8b90b399aa024a5404fc4471a0d

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7175dd57fd461c4109f3abc36c17af3c262b6ac55dda2fd9413e6b60e56caa1d
MD5 5d50c2a4497c8d561f2efd55e15aa25d
BLAKE2b-256 a954194bc7f6d843d685d711c9fb8ea2aca1b200ac3431c0f1b658b6177b495c

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8645020eef02f29551f807d0cf4a0937b34d3cf0a078f6371ac5696b330a57ea
MD5 3438bb29bc844a9d57bc969fb6d2ec9d
BLAKE2b-256 c3954ea167b68264ff778efb98284e898a82695e5bd5d38b66ba7014cc2eee92

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ed4bfa705e19aae09c1b60dfb56a3d8255d4d77cd17e3ddef66a9b6090287e1
MD5 d62a8d64ff43d8ec5d7ee66ae36fe43a
BLAKE2b-256 7215598fdba7d3b50c0d47e78f6c106b189d1081b0d5c6cf958838f6d90fbce1

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05f09322dfd2daf7ce0f94e0eeb6f9b07ae57f32e2941c2fdb5e63806dd74da6
MD5 a5987e58583f4cdf33128055202c62e8
BLAKE2b-256 0cb82362f26501fb916ef57e913d8db262650b3bc224677030a6eb592f1145ad

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3fe3071f1eb0494758ecccccbbedc4c39702f7aeb762a08d9474616d82c4b17
MD5 3ee26ba771ba5ab1aa546570e801653f
BLAKE2b-256 0cd25a61c435900066abaebc4657184986221ac7a12e0f33a419b6e32161c5ae

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2aec215d4feee003775387f7f843b878fbc96d06e9c1939a8dfad8f60a57402f
MD5 60a284b1f1b9ad94c60b21150b5b8783
BLAKE2b-256 c8df15b4d5bfc8fbc1858bad4d58c1cc7252bc76c6bec965df1796cf5227255e

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 133a8df149bc302535a6bf34e1c1d74a7776f4e5fafdc45dfed2039dd47d1448
MD5 b34d15c5fc2effb372307f109a7accab
BLAKE2b-256 a9e22b58aad5a01c3c34267c079bedef7d5258a2daccc5631303782a1ea8dcf5

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34cca3703b13f3e9c02a2d8dccec64b265a1e6986f2eb67219a71361c53593b8
MD5 95772e784fc8ef670ffd80471fa78b48
BLAKE2b-256 925f68637a7c8deb52dc4c9a368e605730b8806682a588d4e7b07a50836b9517

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 2c798ac73c9cdbf6349adb6c890fa2360a7ecd588e4985dbeeb96fb62ecbdc48
MD5 bda97131957aa80f999db323ebd2bbc8
BLAKE2b-256 4e9df0f7738c7ad49a321e5aeb0fc0e07824a3edf402a92a56403d9ba9f25123

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-none-win32.whl.

File metadata

  • Download URL: tx_engine-0.6.6-cp310-none-win32.whl
  • Upload date:
  • Size: 694.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for tx_engine-0.6.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 75bcc38d9844c80876d26f3d6f09e3790740a5b40443779302faddbafdf8c2da
MD5 57edcddb0930020d10d14ce3572083cd
BLAKE2b-256 bc29560ccb42feff67503cdc23a5553533315aeef3d84c8a9ff1edd4dc19c2e4

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 962beaebb5ce8c1d08e80e68f0a36550e2ec0dcd00ee5fb9bcc173bac6289900
MD5 958696ada18ae8dcb7ea7bf3aa7d0ecd
BLAKE2b-256 67d01200c896774593b7d1bc0ad3ec041e12f2b642300dcc897c16e8e9d21fd6

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d124649e7292cf62b99083158cedd91552b9d0bfc023959c544d84f21c07789
MD5 6a9b41e23c6d288782ae42caa28c46a6
BLAKE2b-256 81ff3f49f1a098258ccdf934a617d3bed2e65df5ef801c1c0d5eea3fb59470f2

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc51a54a7c57ba4f870ff705ec46ba03fb58b102c48aaabb11666c4dc1389aea
MD5 2c9abf49e0a3f28fb06e2a0071dccf89
BLAKE2b-256 8e06b215a122caab655dbd18378769310980798a5b0ab22506f64be7d86b158e

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43b79bad9a5f4a6763153970d4ae09b75133da3a608d1e06277eea356982819b
MD5 901350f6f5da7aee685962457f5f32f4
BLAKE2b-256 9aa9a6b4170751919183d3502fb042544512065951d52f86cfc57bbba0635d1e

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f76acd1f8a3d7822a30c8a2038ada1b38f2efb6b0d2fa9930bd7bbc9557d067
MD5 d8185a55368b076346000998494bf784
BLAKE2b-256 b428be7ca3e15e5bb5b348d97684942b4f76945e840badbab5b085c780ed32ce

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9229228edf55f87456b8290392c0e8a0a95ebd4927eb3b08d71858f496dcafa
MD5 11d53f55d7c3d45e609317877284bae0
BLAKE2b-256 60ab418b60745c600398d2150c8310d1c1891dee8e0b334080d2e41874702c11

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 335ef16f2a9b0b3999d2d57a482745acc2e4e989a86c5b58e8b1af96a4357e17
MD5 ee1dc0229ec70175f2dcccd2dea79882
BLAKE2b-256 23f01c25656986ab2715c1a39ebde62bfbd3e67fdf8790f22d70640af2ea75d8

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3490f41c015c3b590d8cc7007990d549e22a271d9a7ac54833aa657c8ac7ab36
MD5 9eb0bad7202e2177192e1c3f735249c5
BLAKE2b-256 6d2742d8681b90a54e6ce278eff3bdd4a734cd720130f42a1a05527c438acadf

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cc78021e575808f246aa840d1ee8882a808a520cd6add7d23b283db196c2ac0e
MD5 8ed86402bbc67a8017c14209c9d5cd7a
BLAKE2b-256 6c09fd387d0ea1265ab0009ff0a21a2d5e59c3a0f68bcf06e477e516770cb5f8

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-none-win32.whl.

File metadata

  • Download URL: tx_engine-0.6.6-cp39-none-win32.whl
  • Upload date:
  • Size: 695.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for tx_engine-0.6.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 798fa927c3447520624bca7905876b2610dba0f9e153837d45ed864250657b5c
MD5 d6bcbaa4c32f07558922f90e55c5a024
BLAKE2b-256 04702b931836a16fcec7922aa053942630b1f565a45c162b8abf8f67794ea53c

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d4f62d1a864a615252ad9366a0344bbaa85aef11d5d30de2ef1c64bb80f33a7
MD5 fbd4316e309a645574a9bcc6e0134fff
BLAKE2b-256 3d770ce1794f1afa51e5f1d7d76555af386c8cc6e81c0d798b7e98cc78731d8e

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa206b8599bda9ef66d88aadd405a91bd07024f3f3a9e854b62ead77d1d15044
MD5 6779dc534418994eb13432fba9e38366
BLAKE2b-256 e543af508e50c9032cb20e13a52b59748d9ffcf8ee5fb590336c501d753892af

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d63341e5e002c74293f7608c12ad0ccb7ee5c2dfbdcd7eec0fcedc82a484b6ac
MD5 bcd4d30ac513e7fb26a55b30d0ce914a
BLAKE2b-256 defe046ea0ceb73d7ec9c2b461302be92151d2809f6ca26f269be85c380487be

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d49aa4880c65fabdb33c20e27fe6ed4088d9290b70f032570241de4bf21378d1
MD5 c70500f85c90bc852e96022743efe086
BLAKE2b-256 02dc33032b5772f233ffcd754d8241a62e47a5bf956b6604fd6427de01974518

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79c28947f53637bdf0aa5ff18f351ab3cccc17e7d14443a54ebcbdb251416e2c
MD5 dcc9d3ce5c542bcb3819913be37dd6cd
BLAKE2b-256 93b021479947d59834573fd662a8e67b9440a2c039b1fb45f000a2b8b724aaaa

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5e1ea1c50f119392298532a93fd9eb752aa60d12345a5324f44f2c4e029e2e7
MD5 8602578bee10637173f609f770b83de1
BLAKE2b-256 ddb56585b6a7d594aa0fd44652a3724f7f4650d440f2c3ac7195ae49a287d543

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3cbf699effb6cd2ffde36ea0979abf851fa858aadabe04a8bd0c7d40a7d4eca
MD5 6725fbf81611c8a922e948238bb431d8
BLAKE2b-256 fe2757d6f6182aa4126a9065d2bb546d9baffedc2e24ea392144391dae3a517a

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4d6efb904c304e6574023ce34618a389f85634ebae9827ace722dc6660f76d7
MD5 16a7878d60547148ee0664d3391e2d97
BLAKE2b-256 a6095dbfc4cbef9f425637fda932d0a8fd27bf7a2819f353b679b1c0e47630de

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 339095bbe9a19812eba763433315cc9814315022744571834c2f46e6ec0d98b7
MD5 b6b02df8635f9724fc27390d7ab4dc6d
BLAKE2b-256 32b8cf460b4260e0fc183d334ee93124c2520e9c95c084e43839dfe0f42e9299

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp38-none-win32.whl.

File metadata

  • Download URL: tx_engine-0.6.6-cp38-none-win32.whl
  • Upload date:
  • Size: 694.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for tx_engine-0.6.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 334b5fe925613db96576b27bdd90b5a02634ad65c61de434588c406004490a65
MD5 2fd494c87ec1c1488de420dae1a57dff
BLAKE2b-256 d2ead2318b34d1a121f0e2ef965bb9c212b2c901ddc32eaa97ae8dff6dd12391

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 452065d425b39c5c029790dc653fa551ea23bb4f4fed88ccc200fbd155ac23c1
MD5 e36bcd80c29164d4a4cc885d7d86f969
BLAKE2b-256 a12fe4ec0cadc738bb2f480135368af72aa7092c26e45df03e61b075c773eced

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 311169f8d3f6bd9152405bad4bdd20be96d27f7f2db36661eef216a0f2e90fe3
MD5 1097da9a3471cf344cdbad7e2178965d
BLAKE2b-256 bd14b216cfcee88031704e7377457e44f307bd3bfe892aac3c712515dc3040c6

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9755524c97de6e47bf3dbf8696632953044598d4c7b87fba8d79444164e93e23
MD5 e55844910563d83342b9663b6ac484c5
BLAKE2b-256 2508152a69af061415898f552c8624719c3f11f625387c751a1dc2338b8d1e05

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 195c729e299333a03b2d9485d8ed35c2bd2017bf719398bd2f65bdd36c11e155
MD5 ccd4bb720c5379400d8ab6137b66860c
BLAKE2b-256 f9378162bc800178018472f11c3635f23ddabbc8192e22978e6067a82bd7266a

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bba4b4487bd86cd91d5f9091aa3cdcab271f499ba2967d5b668f4e2a72f44b94
MD5 5df0dc4ed0695c0afb7710410effb9b8
BLAKE2b-256 d6634cc0d9491de7b0fe835cb61e7017a52d85ad5676b1c892dc25df939b4f0d

See more details on using hashes here.

File details

Details for the file tx_engine-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tx_engine-0.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36d8e224a0217dea9b5554be68fdd1828cbcdb075161da33ec85c0ce9c62cbba
MD5 babfdea7630047eceb4e64e45a1711ff
BLAKE2b-256 7259d638872aba694355401621e5bba8d5d1db8be2544d9c25f62b6b5014216c

See more details on using hashes here.

Supported by

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