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.
For documentation of the Python Classes see below.
Python Installation
As this library is hosted on PyPi (https://pypi.org/project/tx-engine/) and is installed using:
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 }
Overview of the tx-engine Classes
The tx-engine provides the following classes:
Python Classes
This provides an overview of the Python Classes their properties and methods, including:
Script
The Script class represents bitcoin script. For more details about bitcoin script see https://wiki.bitcoinsv.io/index.php/Script.
Script has the following property:
cmds
- byte arrary of bitcoin operations
Script has the following methods:
__init__(self, cmds: bytes=[]) -> Script
- Constructor that takes an array of bytesappend_byte(self, byte: byte)
- Appends a single opcode or data byteappend_data(self, data: bytes)
- Appends data (without OP_PUSHDATA)append_pushdata(self, data: bytes)
- Appends the opcodes and provided data that push it onto the stackraw_serialize(self) -> bytes
- Return the serialised script without the length prependedserialize(self) -> bytes
- Return the serialised script with the length prependedget_commands(self) -> bytes
- Return a copy of the commands in this script__add__(self, other: Script) -> Script
- Enable script addition e.g.c_script = a_script + b_script
to_string(self) -> String
- return the script as a string, that can be parsed byparse_string()
. Note also that you can just print the script (print(script)
)is_p2pkh(self) -> bool
- returns True if script is a Pay to Public Key Hash scriptappend_integer(self, i64)
- adds an integer to the stack (assumes base 10)append_big_integer(self, arbitrary_sized_integer)
- adds an arbitrary sized integer to the stack (assumes base 10)
Script has the following class methods:
Script.parse_string(in_string: str) -> Script
- Converts a string of OP_CODES into a ScriptScript.parse(in_bytes: bytes) -> Script
- Converts an array of bytes into a Script
Stack
The 'Stack' python class provides the python user direct access to the Stack structures used by the intepreter
Stack has the following methods:
__init__(self, items: List[List[bytes]]) -> Stack
- Constructor that takes a List of List of bytespush_bytes_integer(self, List[bytes])
- push a arbitrary number in bytes onto the stackdecode_element(self, index: option<Int>)
- returns the item at stack location index. Assumption is its an arbitrary sized numbersize(self)
- returns the size of the stack__getitem__(self, index: int)
- allows array subscript syntax e.g. stack[i]__eq__(&self, other: Stack)
- allows an equality test on Stack objects
Context
The context
is the environment in which bitcoin scripts are executed.
Context has the following properties:
cmds
- the commands to executeip_start
- the byte offset of where to start executing the script from (optional)ip_limit
- the number of commands to execute before stopping (optional)z
- the hash of the transactionstack
- main data stackalt_stack
- seconary stack
Context has the following methods:
__init__(self, script: Script, cmds: Commands = None, ip_limit: int , z: bytes)
- constructorevaluate_core(self, quiet: bool = False) -> bool
- evaluates the script/cmds using the the interpreter and returns the stacks (tack
,alt_stack
). if quiet is true, dont print exceptionsevaluate(self, quiet: bool = False) -> bool
- executes the script and decode stack elements to numbers (stack
,alt_stack
). Checksstack
is true on return. if quiet is true, dont print exceptions.get_stack(self) -> Stack
- Return thestack
as human readableget_altstack(self) -> Stack
- Return thealt_stack
as human readableset_ip_start(self, start: int)
- sets the start location for the intepreter.set_ip_limit(self, limit: int)
- sets the end location for the intepreter
Example from unit tests of using evaluate_core
and raw_stack
:
script = Script([OP_PUSHDATA1, 0x01, b"\x85", OP_4, OP_NUM2BIN])
context_py_stack = Context_PyStack(script=script)
self.assertTrue(context_py_stack.evaluate_core())
self.assertEqual(context_py_stack.get_stack(), Stack([[0x85, 0x00, 0x00, 0x00]]))
script1 = Script.parse_string('19 1 0 0 1 OP_DEPTH OP_1SUB OP_PICK 0x13 OP_EQUALVERIFY OP_ROT OP_ADD OP_TOALTSTACK OP_ADD OP_DEPTH OP_1SUB OP_ROLL OP_TUCK OP_MOD OP_OVER OP_ADD OP_OVER OP_MOD OP_FROMALTSTACK OP_ROT OP_TUCK OP_MOD OP_OVER OP_ADD OP_SWAP OP_MOD 1 OP_EQUALVERIFY 1 OP_EQUAL')
context_py_stack = Context_PyStack(script=script1)
self.assertTrue(context_py_stack.evaluate_core())
self.assertEqual(context_py_stack.get_stack(), Stack([[1]])
script = Script([OP_1, OP_2, OP_3, OP_4, OP_5, OP_6, OP_2ROT])
context_py_stack = Context_PyStack(script=script)
self.assertTrue(context_py_stack.evaluate())
self.assertEqual(context_py_stack.get_stack(), Stack([[3], [4], [5], [6], [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.
Tx
Tx represents a bitcoin transaction.
Tx has the following properties:
version
- unsigned integertx_ins
- array ofTxIn
classes,tx_outs
- array ofTxOut
classeslocktime
- unsigned integer
Tx has the following methods:
__init__(version: int, tx_ins: [TxIn], tx_outs: [TxOut], locktime: int=0) -> Tx
- Constructor that takes the fieldsid(self) -> str
- Return human-readable hexadecimal of the transaction hashhash(self) -> bytes
- Return transaction hash as bytesis_coinbase(self) -> bool
- Returns true if it is a coinbase transactionserialize(self) -> bytes
- Returns Tx as bytesto_hexstr(self) -> str
- Returns Tx as hex stringcopy(self) -> Tx
- Returns a copy of the Txto_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 TxTx.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 }
TxIn
TxIn represents is a bitcoin transaction input.
TxIn has the following properties:
prev_tx
- Transaction Id as hex stringprev_index
- unsigned intscript_sig
- Scriptsequence
- int
TxIn has the following constructor method:
__init__(prev_tx: String, prev_index: int, script_sig: Script=[], sequence: int=0xFFFFFFFF) -> TxIn
- Constructor that takes the fields
Note txin can be printed using the standard print, for example:
print(txin)
PyTxIn { prev_tx: "5c866b70189008586a4951d144df93dcca4d3a1b701e3786566f819450eca9ba", prev_index: 0, sequence: 4294967295, script_sig: [] }
TxOut
TxOut represents a bitcoin transaction output.
TxOut has the following properties:
amount
- intscript_pubkey
- Script
TxOut has the following constructor method:
__init__(amount: int, script_pubkey: Script) -> TxOut
- Constructor that takes the fields
Note txin can be printed using the standard print, for example:
print(txout)
PyTxOut { amount: 100, script_pubkey: [OP_DUP OP_HASH160 0x14 0x10375cfe32b917cd24ca1038f824cd00f7391859 OP_EQUALVERIFY OP_CHECKSIG] }
Wallet
This class represents the Wallet functionality, including handling of private and public keys and signing transactions.
Wallet class has the following methods:
-
__init__(wif_key: str) -> Wallet
- Constructor that takes a private key in WIF format -
sign_tx(self, index: int, input_tx: Tx, tx: Tx) -> Tx
- Sign a transaction input with the provided previous tx and sighash flags, Returns new signed tx -
sign_tx_sighash(self, index: int, input_tx: Tx, tx: Tx, sighash_type: int) -> Tx
- Sign a transaction input with the provided previous tx and sighash flags, Returns new signed tx -
get_locking_script(self) -> Script
- Returns a locking script based on the public key -
get_public_key_as_hexstr(self) -> String
- Return the public key as a hex string -
get_address(self) -> String
- Return the address based on the public key -
to_wif(self) -> String
- Return the private key in WIF format -
get_network(self) -> String
- Returns the current network associated with this keypair -
to_int(self) -> Integer
- Returns the scaler value of the private key as a python integer -
to_hex(self) -> String
- Returns the scaler value of the private key as a string in hex format -
Wallet.generate_keypair(network) -> Wallet
- Given network (BSV_Testnet) return a keypair in Wallet format -
Wallet.from_hexstr(network, hexstr) -> Wallet
- Given a network identifier and scalar value as a hex string, return a keypair in Wallet format -
Wallet.from_bytes(network, bytes) -> Wallet
- Given a network identifier and a scalar value as a byte array, return a keypair in Wallet format -
Wallet.from_int(network, integer) -> Wallet
- Given a network identifier and a scaler value as an integer, return a keypair in Wallet format
The library provides some additional helper functions to handle keys in different formats.
wif_to_bytes(wif: string) -> bytes
- Given a key in WIF format, it returns a byte array of the scalar value of the private keybytes_to_wif(key_bytes, network) -> String
- Given a byte array and a network identifier, returns the WIF format for the private keywif_from_pw_nonce(password, nonce, optional<network>) -> WIF
- Given a password, nonce (strings) return a WIF format for the private key. The default for the network is BSV_Mainnet. For a testnet format, please use BSv_Testnet
Interface Factory
The InterfaceFactory is class for creating interfaces to the BSV blockchain (BlockchainInterface
).
The InterfaceFactory class one method:
set_config(self, config: ConfigType) -> BlockchainInterface
- This reads the configurationinterface_type
field and returns the configuredBlockchainInterface
Blockchain Interface
The BlockchainInterface class provides an interface to the BSV network.
BlockchainInterface class has the following methods:
__init__(self)
- Constructor that takes no parametersset_config(self, config)
- configures the interface based on the provide configget_addr_history(self, address)
- Return the transaction history with this addressis_testnet(self) -> bool
- Return true if this interface is connected to BSV Testnetget_utxo(self, address)
- Return the utxo associated with this addressget_balance(self, address)
- Return the balance associated with this addressget_block_count(self)
- Return the height of the chainget_best_block_hash(self)
- Return the hash of the latest blockget_merkle_proof(self, block_hash: str, tx_id: str) -> str
- Given the block hash and tx_id return the merkle proofget_transaction(self, txid: str)
- Return the transaction (as Dictionary) associated with this txidget_raw_transaction(self, txid: str) -> Optional[str]
- Return the transaction (as kexstring) associated with this txid, use cached copy if available.broadcast_tx(self, transaction: str)
- broadcast this tx to the networkget_block(self, blockhash: str) -> Dict
- Return the block given the block hashget_block_header(self, blockhash: str) -> Dict
- Returns te block_header for a given block hash
WoC Interface
The WoCInterface
is a BlockchainInterface
that communicates with the WhatsOnChain API.
Note that if you are using this you will need to install the python library requests
.
Mock Interface
The Mock Interface
is a BlockchainInterface
that is used for unit testing.
RPC Interface
The RPC Interface
is a BlockchainInterface
that is used for connecting to the RPC interface of mining nodes.
SIGHASH Functions
sig_hash(tx: Tx, index: int, script_pubkey: Script, satoshi: int, sighash_flags: int)
- Return the transaction digest/hashsig_hash_preimage(tx: Tx, index: int, script_pubkey: Script, satoshi: int, sighash_flags: int)
- Return the transaction data prior to the hash function
Given:
tx
- Spending transactionindex
- Spending input indexscript_pubkey
- The lock_script of the output being spentsatoshis
- The satoshi amount in the output being spentsighash_flags
- Sighash flags
Note the sighash flags can be obtained from the SIGHASH
class which supports the following flags:
ALL
NONE
SINGLE
ANYONECANPAY
FORKID
ALL_FORKID = ALL | FORKID
NONE_FORKID = NONE | FORKID
SINGLE_FORKID = SINGLE | FORKID
ALL_ANYONECANPAY_FORKID = ALL_FORKID | ANYONECANPAY
NONE_ANYONECANPAY_FORKID = NONE_FORKID | ANYONECANPAY
SINGLE_ANYONECANPAY_FORKID = SINGLE_FORKID | ANYONECANPAY
For further details see https://wiki.bitcoinsv.io/index.php/SIGHASH_flags
Example usage:
sig_hash_value = sig_hash(own_tx, 0, script_pubkey, 99904, SIGHASH.ALL_FORKID)
Other Functions
These are public key and address functions that are likely to be used if you don't have the private key and are not using the Wallet class.
address_to_public_key_hash(address: str) -> bytes
- Given the address return the hash160 of the public keyhash160(data: bytes) -> bytes
- Returns the hash160 of the provided data (usually the public key)p2pkh_script(h160: bytes) -> Script
- Takes the hash160 of the public key and returns the locking scriptpublic_key_to_address(public_key: bytes, network: str) -> String
- Given the public key and the network (eitherBSV_Mainnet
orBSV_Testnet
) return the address
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file tx_engine-0.6.8.tar.gz
.
File metadata
- Download URL: tx_engine-0.6.8.tar.gz
- Upload date:
- Size: 545.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ef524a0c97926c8df8e5a3d7222cc63263d2baa9f4c965a04c5e6f2323df1e4 |
|
MD5 | 62534f6d444c85377dc07d64e67fd491 |
|
BLAKE2b-256 | 4ee0de043ce592c0531e2b643aeb93cc4d4d828a93d1b9883a70f03a4aeaf191 |
File details
Details for the file tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 340365075b573ce05fc84c8001ed9b847888da225da9f79fb17b0f86ddf963b8 |
|
MD5 | ad87ca8116ee12f4d8dc6090f5b08df5 |
|
BLAKE2b-256 | 26fabf2b67d7926804db74f9e57c6c46ad96fe280b0459cfdbe10bb79a5e71fb |
File details
Details for the file tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aae7ce147ada7dd1e1e73433e26a1e07813bcfc6b9d34df4d4444520210b944d |
|
MD5 | e7b16d679985e1c14776bb70cd3041a5 |
|
BLAKE2b-256 | 32e8f7f8e19a8adbf1cfbf0392a03fcf2e37f3326a208e5b52383d27735976b0 |
File details
Details for the file tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb3b5254dd34cccbdbc65254dc397c6ac374e66ab63f865c2f2403271bdedcba |
|
MD5 | f83899c2c42a21590a41fc8d0ff35909 |
|
BLAKE2b-256 | 3acaa455798fe0124be3674f7b3161becf5454808c0e1aa4b44266b5431b5d0a |
File details
Details for the file tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 954.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53941264de70a3ca5bbf2c685f7bf05b55f0c03dfc3849ae6aa12b617c1f57af |
|
MD5 | 9a6249e5706f2a739cf8a44599b5d4a2 |
|
BLAKE2b-256 | 458276138a86f2bddf9bc536eff307ad144d9f2c703a38908962038a9959a5b9 |
File details
Details for the file tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 968.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19410e23484337a854dff50ab6c8e10a67d71894c3c18dab6c148ede45a9b5ff |
|
MD5 | ef538b7161658b9df0c8375f2c037870 |
|
BLAKE2b-256 | 0950cf1a428ca28b5c16d17a2394c869ce2dc2fd0442ed6632058d594fe326ca |
File details
Details for the file tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 976.7 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63590502e9125a88d315c2497458bc2461a3d55d1327bde88b72fde20fd1776a |
|
MD5 | 207f89f9e7fb538cbe714d5b3bddd988 |
|
BLAKE2b-256 | 13093f972667deb9a811ca2fcc33edfd5eaabf8747108f61e699be9307f9ffd1 |
File details
Details for the file tx_engine-0.6.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63eac1b101a260028184c892835b3ac7311806d50e7da950a0c246ce84e8cc3d |
|
MD5 | 8a9e6552cc31df30594fae93a7039e99 |
|
BLAKE2b-256 | 25cac3122cbf097d1f6e28c71d4ef53f499aa7746bf85e22b0af83411987f710 |
File details
Details for the file tx_engine-0.6.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aee9e18bf584f649d30a65791bf27c433faf8bc53a1329e8c3776c02d161de6e |
|
MD5 | 3d43f25ef7a8cf78b929bd15bb5f7c76 |
|
BLAKE2b-256 | 5964369f596cde73ed180a7421c290576b54c1a21851e6daf2c4916ca454651e |
File details
Details for the file tx_engine-0.6.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 954.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d20fd17cbdae92b96565b8b7db4f9bf365c3a590a0896e66d38bb2160405859 |
|
MD5 | ebcf30465aed1b8b4c3669edac56fc22 |
|
BLAKE2b-256 | 49f3d1d6dee66ec2339d5d2225c4f699e03ae6f783449efce6ba22cf3e5d38c8 |
File details
Details for the file tx_engine-0.6.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 969.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7391335a96a051a859bffdfb6ca142bd03857dc56071150c15c63a8703811799 |
|
MD5 | 7e45c40ccf6eedcf988e0ef4a1d4e80d |
|
BLAKE2b-256 | 64c5c5a359288e136d8e1790434aaf605a99eb864d78eea83022f9edc804fc29 |
File details
Details for the file tx_engine-0.6.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8bc3fe60fbbbe9bacc1e6f44a49a5e7a4c7212c6421a0fbff59be16556bfd7e |
|
MD5 | 85cee9d26fb85b9a23a959cb30d59a2c |
|
BLAKE2b-256 | f4a70f8dba667fc57e00eedea67e501e0c854f1a3fbf216b54e30fcbd4955edc |
File details
Details for the file tx_engine-0.6.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74534126d10b2bb9ee5ef4dd206187bf917f8c785c7d171517725c7ee5d0c747 |
|
MD5 | f46eeb664584881dca1205a2e18b26bb |
|
BLAKE2b-256 | 0e8873c325862b700db300682b0e620a1b19b61d33c897749e17ca89fab773dd |
File details
Details for the file tx_engine-0.6.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 954.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ab0a55e90446f80111caaad101a40e877bc528211096241fc0184d242225701 |
|
MD5 | 6012be513da569009194484c6f0a2377 |
|
BLAKE2b-256 | 21c2e4d2a395ec69098667c8298feabefdecae7634a004ce4dbb8a95e6bb38f4 |
File details
Details for the file tx_engine-0.6.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 969.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66e72834cd4c4920d7b29638afc93ca250b53edd8e360a7935d7ac81527a1266 |
|
MD5 | fa0227c5152038b9943a9ebb90c91330 |
|
BLAKE2b-256 | fddc703cc0b46a9e33e7cb8dffd6d28430193c9eddd6a8b11372fab60d2f6940 |
File details
Details for the file tx_engine-0.6.8-cp312-none-win_amd64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-none-win_amd64.whl
- Upload date:
- Size: 826.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8351337c6602dc8eadde026c138f2378fae2aa42f6add5f5ed4aec5a1b7d7017 |
|
MD5 | a2b6171c14aa80b9ab9b6d95b381bb95 |
|
BLAKE2b-256 | ab077b53039a06c81ddf520257085f924cf7c80359aac6e8f7f53d079e4b00bb |
File details
Details for the file tx_engine-0.6.8-cp312-none-win32.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-none-win32.whl
- Upload date:
- Size: 737.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96a9d5f17dad0a1896f042201fce999552827bfbe5971af1eefd4b7db49cf3c4 |
|
MD5 | 7260ee70473e906844b2e4221ba03e0c |
|
BLAKE2b-256 | 255706b42d4ad4a294c91fc4ea3575827c7c11b0bd25f2af60d7b5f53abb6a48 |
File details
Details for the file tx_engine-0.6.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7efd7131b2ba59e4d45f4fe34b3995757b73b89cb065b7c54fd84cb14507528d |
|
MD5 | 7d9ac2070a8923c2f868f1e4dd0d0bd8 |
|
BLAKE2b-256 | 1a0ded5e5ca0f55658dd487fb7c70a9121046c3cce0651b26f15c8dc3365825f |
File details
Details for the file tx_engine-0.6.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29356e41d2794d04636c8116564ab46e379ceea1e51db99d19337c60f3fab48a |
|
MD5 | 95c3bf39cce018d475770a1412a7ad81 |
|
BLAKE2b-256 | 9d6c3f0ecb1e4736d2ffa05da132bf0253cb165926c4be0269ca791420964491 |
File details
Details for the file tx_engine-0.6.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1aca117862a9b7174a10f5724662a6b19e639d0633569ab8da23ecce472d278 |
|
MD5 | 6ca2291f26c196281211b8ef9337607a |
|
BLAKE2b-256 | da4d4e464b4f64e73968add7de719ad8647238d7e490b1af3ad98267a0ef0d6e |
File details
Details for the file tx_engine-0.6.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 952.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e15181f4b0527dd268bf9b5ed5d6420739d9a84976ca885c8c50bbbe1fa6617e |
|
MD5 | f52cde197b946bbc2136fbe9facd867a |
|
BLAKE2b-256 | 908b7e986c87473abe28f191df1fcda945ed1846e6876916f11044b13126cba4 |
File details
Details for the file tx_engine-0.6.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 966.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b38be597bc4baad2992bde7e80e460a5b0cc9d11688bfff16f33a93c7e649c35 |
|
MD5 | c44b21bc50bff151d958b8d99bec1140 |
|
BLAKE2b-256 | 9680abcf2baf3672c7767c0151fe59d40ee7661fc9875c385435872910c4272d |
File details
Details for the file tx_engine-0.6.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 976.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6ac3b48be8aa01167f710d106265dc3e6e7f608809300909fd4cae3277a48af |
|
MD5 | aebf0a2195bc58cfcdb5f3943192f8fe |
|
BLAKE2b-256 | 77f7286179da25284744cc3fdd2fd2a5319a949555b322df73b01edd41487229 |
File details
Details for the file tx_engine-0.6.8-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 888.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a6e367f9776773d00af3af91f6d3693ad2b5b7507856cb9ef4ca2a01805d605 |
|
MD5 | a607bd58fddf32a17fda4f80efa4263d |
|
BLAKE2b-256 | 5d2ccc638c4d7728e8af8b7e1e3377222f9c13a68e1a6367cddc08c632343202 |
File details
Details for the file tx_engine-0.6.8-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 944.4 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4d576683a2153a0cac2d38cb6f545a1b338e312cc6e0b04a1d495011adadf20 |
|
MD5 | ed761a84e22805a1ca9e71e4f7360cde |
|
BLAKE2b-256 | 8321c91e56e0d142a8d87707f9656ce5a766dfa446ecd22efc2bced70c43bfc1 |
File details
Details for the file tx_engine-0.6.8-cp311-none-win_amd64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-none-win_amd64.whl
- Upload date:
- Size: 827.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9664cea7c268c60d852b8d79dabab44356dd2a1034bdfe53106078e81306361 |
|
MD5 | e63bf440e39eeff7c627c0f985ec9d26 |
|
BLAKE2b-256 | f473be5ab49eec65963c50f5bd8ae7affd3f4dfffa2077cd6ddab468143af852 |
File details
Details for the file tx_engine-0.6.8-cp311-none-win32.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-none-win32.whl
- Upload date:
- Size: 738.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fd010d94a71106fb0ddb86be3d2b233ac0a3e205ec196450d475f68a866ac98 |
|
MD5 | 7207178683c4a7f754a6a1a09d743304 |
|
BLAKE2b-256 | b8a8bd674513b6b4eb6e89222b76d8a967e9ab3e550208229f87e58aefacbfd8 |
File details
Details for the file tx_engine-0.6.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f96a9d0b796bf76c5d2e3c5fce5b5924c019f07522bbbebcdf65926399d885f1 |
|
MD5 | 83a00f9e3bfad097e25b29b85379517c |
|
BLAKE2b-256 | 6ca50ca7bf88d0c5fafef27b37239aa64452bcdb192014b71195f142ce0f1bfa |
File details
Details for the file tx_engine-0.6.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e8a47d29bd17365379b2ad11483b1e3bce67652bfd171cea3665c19ea237f2b |
|
MD5 | 89b8aa24ca03284022380293ed615d62 |
|
BLAKE2b-256 | 6e053f909282dfae6edb63bad6890ddcb44f6b87b8b30ec4677d131648f24e88 |
File details
Details for the file tx_engine-0.6.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65f5facaccd87d6ceac39c0c2416b19c577d568cb84f2acb366a184a1d9171b6 |
|
MD5 | 390bcf6077c3e166aa6e301715594c3b |
|
BLAKE2b-256 | 1d45d742a44ad96cbf20aa66d11bc47081bc3b3ac3ca06240a602685e55f00b9 |
File details
Details for the file tx_engine-0.6.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 954.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29c77e1186bf50c4787037fdeb60d5d5716c792c821567ff1f25b07e35260625 |
|
MD5 | b78e742076df1b988041f89d8ea1d31c |
|
BLAKE2b-256 | 4dbacc22a3e5de44c5512a03d4bd7da90402aa43a5dd7aecb5af644d25a8d5e5 |
File details
Details for the file tx_engine-0.6.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 968.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fee852461c1d222c33acfa16d7931a807ac05151e1dc25bc379fa2717b75efee |
|
MD5 | 8ca64981603e622907e79980e99a7b44 |
|
BLAKE2b-256 | d36ee11db82f45c0d8a6cf284001147597264e51881ae03b7ec62cd2528eb452 |
File details
Details for the file tx_engine-0.6.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 976.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a27dd531f4bb6d1f7302e00ba1579eb9019b9dcb6379e0aedb1b2a495e11b19 |
|
MD5 | cbd3b8b5a3faab553784de7a45b124a5 |
|
BLAKE2b-256 | 0e3bc8b8f638a53ccfc108e5bc2ffef248abe90dd099412a9e9210e3bb5c7fec |
File details
Details for the file tx_engine-0.6.8-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 889.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f5c4a9b5b230bc587e9312cfe2995bf5fdc2a6e9d34aa0cfdddfb9d8e83cecb |
|
MD5 | 02b7082518728e6f3b522653a06a421d |
|
BLAKE2b-256 | f475ef77594d9cc115c30a3033d4b3f34f2946f2978a5891dc41409f9c96e736 |
File details
Details for the file tx_engine-0.6.8-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 946.0 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5595849f38c4aa9f32fb98aae864ca4aa8160d2dd540808c20d6bfe294b99b85 |
|
MD5 | f79edc636eea1d46bac0a9ed25274be3 |
|
BLAKE2b-256 | 3be65eeeb43c9e4573986fdd85cfb38fa44885811a00f068c1b6850d289f1f61 |
File details
Details for the file tx_engine-0.6.8-cp310-none-win_amd64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-none-win_amd64.whl
- Upload date:
- Size: 827.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fb2331f0c5d90b47257eed76b899af80839251ddf7eda7ae59d77b95c2b26f3 |
|
MD5 | 697fa44255ec223cd166110a2edeac1a |
|
BLAKE2b-256 | f7aaa2c24ac0c139fa3ea588a795283f118c8877bea8704a0aa0abb3c51b252a |
File details
Details for the file tx_engine-0.6.8-cp310-none-win32.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-none-win32.whl
- Upload date:
- Size: 738.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 151fa6b1b3df88547d716ae5528398cba25f4f2f09124acfe08d957bc5694cdb |
|
MD5 | 7f41c713a6b594cedae0fd56d6ea924a |
|
BLAKE2b-256 | c0d004d4c8ee696b7c895b42a4cde022e515b341a2f3d3c2d1cf551451ac844a |
File details
Details for the file tx_engine-0.6.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c2701379b158f93d71a3ab90865e2b341672ebb40b13ec7eff8104a1ab8cdbd |
|
MD5 | 706ef2e9903f72ef6605bc83834016a6 |
|
BLAKE2b-256 | 570227458c8a95d709d65580bfb849016deae2aea15a3f25eb3d370f50611095 |
File details
Details for the file tx_engine-0.6.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35bdd7684ed2029ea3ecf1a035bd1a4316239c2c02051ac7d9d56d5f920f19fd |
|
MD5 | 63ea12b1cae74360e19e9df3e050b3cc |
|
BLAKE2b-256 | c544cb41eace395d8a7e84b0d2bb5c64c103aee63c9e905c6df9c9d19eed22dc |
File details
Details for the file tx_engine-0.6.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e842fdb30136e0658b963734a84f28c2e629e3b403a7f19131c308e4829f000 |
|
MD5 | d79e8c5f832280c1791e3d4a7d1c8237 |
|
BLAKE2b-256 | 5a28654e0b10d7e7e0771a6a85c8fb1a66ad62fc83b28d2dc724aeda15094d3e |
File details
Details for the file tx_engine-0.6.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 954.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a818c66f5d0ca308e647ec1093f2e1a7f6cf069bfcfacf7145d333bd89daa71d |
|
MD5 | 7e37952326dda9d0c88949b95dce758d |
|
BLAKE2b-256 | 86b60e7f132b4e05a7e4dd59da6e9728ee38116844905eb197d429b53b717144 |
File details
Details for the file tx_engine-0.6.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 968.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50963d3b692a6a3801cef6ccde0456456b251f93d6b7c88627105ac703d4c025 |
|
MD5 | 9bbe6427ecbd049832d4c689ac52335d |
|
BLAKE2b-256 | 77fd82872af530cc08936cde215db7251a7fcc0760d32c8fccff6a63d09b3323 |
File details
Details for the file tx_engine-0.6.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 976.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5835b6cc2e36375eaa3de5ef8b3a9e4727bf26f8819ec6a785e67037696af06 |
|
MD5 | d72d483accf087242ee889c8effd4ee8 |
|
BLAKE2b-256 | 5f6200b28cab4d4dbd5c7171078b3de39b96e9be55fc696f7ed943534ab09ce9 |
File details
Details for the file tx_engine-0.6.8-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 889.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d40f24b99fe0a032bdc2b263fffe8b028d6e32e04fdab780457eb49cf97171a8 |
|
MD5 | 658fdfbc358b288fd2fe3ef2abaca5bb |
|
BLAKE2b-256 | 86e6198125c16de3dd3cacec5f0957c902ea907e1ad7d6620b79f69101010f22 |
File details
Details for the file tx_engine-0.6.8-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 946.0 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c14dd12c1285ea1481fe737d0636e7b226078816f8e5eed0162112ed48ee14f |
|
MD5 | f3f21743bcd37f846139263145e73559 |
|
BLAKE2b-256 | 9176cc0b1be64aada65983eeed9dd7966f6ef9c5dcbfb168361b6966d8ccd14b |
File details
Details for the file tx_engine-0.6.8-cp39-none-win_amd64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-none-win_amd64.whl
- Upload date:
- Size: 827.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c62fa856827b3e838551d8164307a4c62b38305d01945715f28af69378cec841 |
|
MD5 | afd3dc6f8265808d17d3e3616c985b67 |
|
BLAKE2b-256 | 2b9523009c4ee8a1510043173422c1ce2ba03d0eb7c2509c10888a1b6a191762 |
File details
Details for the file tx_engine-0.6.8-cp39-none-win32.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-none-win32.whl
- Upload date:
- Size: 738.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 495dda6bc56654c44baf9cca6f6e9e1679228b9f24f5299cdf229c084fee8935 |
|
MD5 | 903fec927f02cf28dc02e0fba0b740fa |
|
BLAKE2b-256 | 8228ef21e27ed525c74735d8d513daa4b47098cf985ca108c3aba8fa88d1a629 |
File details
Details for the file tx_engine-0.6.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8dfc9ab27731552d1aac9bff42117ec9f514d301ae2b8b8f57482b9d1ae8a18 |
|
MD5 | ecb3d7f6e3c565bcb8837781fefc74d5 |
|
BLAKE2b-256 | 4f903342533c8e970d6568b3b3d673a934e67efbd6990de06933c24d20841991 |
File details
Details for the file tx_engine-0.6.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb05d3765b33eddcbcf783c2cbea8aa81feaab49737d9970e7b7a6faf5c4089b |
|
MD5 | b5b161321bff12a98753612947ef4edc |
|
BLAKE2b-256 | 3f5907e43d1a9a5805dd821ffbd5ac5ab105a78bd57c8f566608f14e63a8c131 |
File details
Details for the file tx_engine-0.6.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3321087481e52983b027c2cd8f48af4e0ad9b5f5990bc18a2b3605f30d53a039 |
|
MD5 | 72d0b36594b19a92325f2c04fb684a18 |
|
BLAKE2b-256 | 7bd47d50067dace30cfc57e32cd982d8205d8b80f917abedac00da272bbc8eea |
File details
Details for the file tx_engine-0.6.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 955.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f07188902a59c20a039e4f8132d93f2a7c677c11e8d9274076f8a491234f572d |
|
MD5 | bd051054c7bb3837021b1d69c96b367f |
|
BLAKE2b-256 | 790284acf2923bd0c3ac710bd873b708d660470fa3d5ed81391c3f2ed85f04f7 |
File details
Details for the file tx_engine-0.6.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 969.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7601784738499f02af2313fdb77f1143976062d171fca9119f486083ffa640e |
|
MD5 | d16bba209721ae39cd5ed7e7e0818542 |
|
BLAKE2b-256 | 8d948a5bbedeb7e8dd1592f2f048dde54e383abadb81dcad8e602b401a54d1a4 |
File details
Details for the file tx_engine-0.6.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 977.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 549be84997d1dde6e0a69ee7dd79ff13b6f3aef403dfc27708142f3f0be94a47 |
|
MD5 | 6b7de5e941da40ec0abea592c12f4ead |
|
BLAKE2b-256 | 8fa6bd682f8ccfebec011a3adab581c24cf636d0b42cd0347612917c9ab9a090 |
File details
Details for the file tx_engine-0.6.8-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 890.4 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e4dc2e85c5b9a361fca6c629bd8bfa2fb536bffde419d468579053d99933d5f |
|
MD5 | a3b8d4a02abdaadda6581f0af4404e24 |
|
BLAKE2b-256 | 031a8ced16a4fd46416e0f854e2a1c5a8b4e772076c52853fb0755f695b4c80c |
File details
Details for the file tx_engine-0.6.8-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 947.1 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3e9af6140eb06b9100184d167c965bd846e7115ea1a810d1eaeb6645d2f551d |
|
MD5 | 295b66e076f4e994900018efc4849d21 |
|
BLAKE2b-256 | 91182e13fed5a9661289e5e32f808f8ebf2443b4d5ce806707f22c0c906b7a3b |
File details
Details for the file tx_engine-0.6.8-cp38-none-win_amd64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp38-none-win_amd64.whl
- Upload date:
- Size: 828.0 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a803a6934fc8dc14c24eff7bf5588e4b2bb8632f11404e52affbca34559ef867 |
|
MD5 | fe1a66cd248618914a8e8059bbfee670 |
|
BLAKE2b-256 | 15116d88de8d1ce0a013ee42539b09acd42cbf5ebe23157c4a798038c1a6fa98 |
File details
Details for the file tx_engine-0.6.8-cp38-none-win32.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp38-none-win32.whl
- Upload date:
- Size: 738.8 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a5b168c83a07e2740c73998e42cbd77623896ce1b1fc85588962fdebd4eadda |
|
MD5 | 5ceb4280604b343eccb6f9e779e0bd50 |
|
BLAKE2b-256 | 4a1ea865a839a0c4ef9c93b7a30caba18045f3a5953ead2c040ae7c2d032eb58 |
File details
Details for the file tx_engine-0.6.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dd869cf0b8d3d6192ccf368ae4952725888ada82dca542d70f611ef97097b1b |
|
MD5 | 9c0adda40b717fe0f65403510c5d31d1 |
|
BLAKE2b-256 | d89f84820e94b32f4432670a268080e90388c4ff6ae4de27f8d9518e83d0e601 |
File details
Details for the file tx_engine-0.6.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9767629067a0678e5da1a5bd49477af956e7f4ea4d4497bde73ce848354ca7c |
|
MD5 | 0545319d7cdc436268a752100b3cfeaf |
|
BLAKE2b-256 | a0263cbe77564339dbf5b37187b5b246336b59cfb37bba74099c121d25cd0d44 |
File details
Details for the file tx_engine-0.6.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70d9b94e2a50c7fd7bcd6f1c674e778424a97b2736318ea4abba2d28f6f312a6 |
|
MD5 | 961a2cb855633759a3307fa394de0fa9 |
|
BLAKE2b-256 | 23bfa7ef3791c310eb3c8983eb0391f1b666b18196bbc17980fbec844ae00ecc |
File details
Details for the file tx_engine-0.6.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 955.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba1a7cb5c339a75b14e72fa0390b394ef8562cb0ff48af7cdcb61e4883c2f51a |
|
MD5 | 637589fca6f09213c197bbedd390023e |
|
BLAKE2b-256 | 9dcd6c81c292f5f380f7113b435ce1acdf4ffec3bb65b5f5e7722f795d12455d |
File details
Details for the file tx_engine-0.6.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 969.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e29311bcb9bc47e214fef1e656418aaf6fe405cca293af79a75fdb281ea557ba |
|
MD5 | c8d1d5f0d9c0b3007d2859e4b30dc6bf |
|
BLAKE2b-256 | 0a6098e758434cd5ccd3f218aafb7394948390a9f7954021cf15770958b586f4 |
File details
Details for the file tx_engine-0.6.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: tx_engine-0.6.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 977.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 948e2caae3f75e1b6156b7e0234e614a8ea398aa80a19bf59b508fe2f3563865 |
|
MD5 | 6d13b257eb981b169e9a09b297d09132 |
|
BLAKE2b-256 | 4582cdf88d2799b73c3fdb5ebb74e9a374dc028ae5cfc4a56ed4f5532d061d76 |