Skip to main content

A community managed digital money supply

Project description

arka - "Adaptive Sound Money (ASM)"

A Community Managed Digital Money Supply

Functions of Money

Store of Value

The first function of money is to serve as a store of value - that is, to be desirable. Money is a placeholder that replaces goods and services in a barter system. There is the expectation that when you sell goods, like a chair, for money, at some future time, you can buy goods of equivalent value, like a chair of similar quality, with that money.

The primary selling point of Bitcoin is that the value of its money has not only kept its value over time, but it has gained value. This is in stark contrast to centralized money like the US Dollar whose value has significantly and predictably decayed every year.

While the monetary supply in arka is not fixed like in Bitcoin, the supply is managed by the community who are incentivized to achieve the goal of arka becoming a store of value.

Unit of Account

Units are fixed measurements. Establishing a unit of account is required for understanding how much value is being offered when buying or selling. Although the value of centralized money decays annually, that value is relatively predictable. It is stable enough to establish an understanding of how much value is transferred in a monetary transaction.

The value of bitcoin has dramatically increased over time. However, that history is marked by enormous increases and decreases in value, making it impossible to grasp how much value is transferred in a monetary transaction without converting to a currency whose value is better understood. This is not expected to change. The fixed supply of bitcoin encourages speculative bubbles and subsequent crashes, as demand for a currency is historically unstable.

Users of arka are empowered to set parameters that both inflate and deflate the supply of money. They are incentivized to judge demand and set an appropriate supply of money that establishes a stable unit of account. As the currency matures, stability will become self-reinforcing.

Medium of Exchange

When money is used as a medium of exchange, a market is created where goods and services are bought and sold in exchange for the money instead of other goods and services. Hence, the money must not only be desireable and attain a value that is understood, but it must be transferrable. In the U.S., the Federal Reserve issues paper notes and coins, called cash, to use as a medium of exchange. This cash may be used to buy and sell goods and services in person. However, commerce is becoming increasingly digital and global. So, a vast bank network has been established where users sell their cash to banks for bank credit, then use the bank credit to exchange online.

Bitcoin provides an alternative to this. It is native to the digital world and globally available. However, payment throughput is severely limited. The developers of Bitcoin's software determine the maximum throughput of payments, and they have committed to selecting a low throughput to create an auction market for payments. The network then prioritizes payments based on fees payed to the network, driving up the fees. This greatly limits Bitcoin's potential as a medium of exchange.

arka is also a digital native. Payment fees are set by the community and the default limit to payment throughput is roughly 80 times greater than with Bitcoin. It is important to note that the arka community is empowered to determine payment throughput by setting the payment fees, and the software is merely configured to avoid network congestion. This is in contrast to Bitcoin where throughput (and, consequently, fees) is determined by software developers. The expectation for arka is to achieve a high throughput of payments with very low fees.

"Better than Bitcoin"

For a long time, gold was used as money. It is a scarce resource with a (somewhat) fixed supply. However, governments around the world decided that the supply of gold was not adaptive enough to match the demand. So, those governments replaced gold with "fiat" - money supplied by centralized governmental bodies and backed only by the promise that the monetary supply will be managed responsibly.

Bitcoin represents a reactionary return to gold, but for a modern world. Bitcoiners insist that centralized money has not been managed responsibly. So, instead, Bitcoin rejects the notion of a managed supply and reinstates a fixed supply. Bitcoin is digital gold.

But, digital gold is as bad as gold. Bitcoin isn't good money because it doesn't provide a stable unit of account. arka users maintain that centralized money has not been managed responsibly. arka presents an opportunity have the community manage the monetary supply, avoiding both the political influence that has corrupted centralized money and demand/supply mismatch that plagues Bitcoin and precious metals.

Blocks

Updates to the arka database are structured as a fixed sequence of "blocks". A block is an ordered list of the payments that have been published to the network since the last block. This sequence of blocks forms a "blockchain", an openly auditable data structure that allows all users of the arka network to agree on the state of the database. The structure of a block is as follows:

---
# common to all blocks
height: int                             # block id, strictly increasing
timestamp: int                          # microseconds since UNIX epoch
prev_block: bytes                       # hash digest of most recent block in chain
uid: bytes                              # public key or truncated key hash digest of block creator
nonce: bytes                            # H(H({block} - {nonce}) | nonce) ~= 0

# exists only in epoch blocks (every 10000th block)
parameters:                             # Adjusted parameters for epoch (10000 blocks)
  target: (byte, byte)                  # difficulty to create a block (average # of hashes)
  block_reward: int                     # units created by block creator
  utxo_fee: int                         # rate of decay of UTXOs (age of UTXO * UTXO units)
  data_fee: int                         # units per byte in each transaction are to be destroyed

# each block includes a list of payments
payments:

  - from:                                 # sources are non-expired UTXOs

    # spend a UTXO
    - index: (int, int, int)              # block index | payment index | output index
      spender: SpenderKey or SpenderList  # key set that hashes to or matches UTXO uid

    to:                                   # destinations are UTXOs

      # create a UTXO
      - uid: bytes                          # public key or truncated key hash digest of receipient
        units: int                          # 1 coin = 2**30 units
        memo: bytes                         # can be used for layer 2 protocols

        # optional vote to adjust parameters, weighted by units and aggregated across epoch (10000 blocks)
        vote:
          block_reward: int                 # units created by block creator
          utxo_fee: int                     # rate of decay of UTXOs (age of UTXO * UTXO units)
          data_fee: int                     # units per byte in each transaction are to be destroyed

      # commit data
      - memo: bytes                         # can be used for layer 2 protocols

    signatures: list[bytes]               # digital signatures of payment created by keys listed as spenders

Blockchain consensus with Proof-of-Work (PoW)

The blockchain is a linked list which begins with a particular block that sets the parameters for the given chain followed by a sequence of blocks. Blocks provide a prev_block field, which is the hash digest of the most recent previous block, forming a linked list block chain. The chain is partitioned into subchains of 10,000 blocks that share the same parameters, as determined through voting.

Blocks are generated periodically by random peers performing computational work. If the hash digest of a valid block is a member of a relatively small set determined by the work target consensus parameter, then the hash represents a valid proof of work. The block adds a list of payments to the block chain. Miners, computational units aimed at generating blocks, should listen for blocks and payments and adjust their own blocks accordingly.

To compute the hash digest of a block, deterministicly represent the object, minus the nonce field, as a binary string. Hash the string with Keccak-f1600. Then, concatenate the that hash digest with the target and nonce and hash again with Keccak-f800. target consists of an 8-bit base and 8-bit exp such that difficulty == base * (2 ** exp). The proof of work is valid if the 8-bit prefix of the hash digest is numerically greater than or equal to base and is followed by at least exp number of zero bits.

The payment list defines from, a list of unspent transaction outputs from previous blocks that claim previous payment outputs, and redistributes the total balance, minus a data fee, to to a new list of payment outputs. Payment outputs are optionally associated to a list of votes which determine chain consensus parameters.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

arka-0.0.2-pp311-pypy311_pp73-win_amd64.whl (141.2 kB view details)

Uploaded PyPyWindows x86-64

arka-0.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

arka-0.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (132.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

arka-0.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (142.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

arka-0.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (131.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

arka-0.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (134.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

arka-0.0.2-pp310-pypy310_pp73-win_amd64.whl (141.2 kB view details)

Uploaded PyPyWindows x86-64

arka-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

arka-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (132.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

arka-0.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (142.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

arka-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (131.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

arka-0.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (134.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

arka-0.0.2-cp313-cp313-win_amd64.whl (141.0 kB view details)

Uploaded CPython 3.13Windows x86-64

arka-0.0.2-cp313-cp313-win32.whl (144.9 kB view details)

Uploaded CPython 3.13Windows x86

arka-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

arka-0.0.2-cp313-cp313-musllinux_1_2_s390x.whl (194.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

arka-0.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl (193.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

arka-0.0.2-cp313-cp313-musllinux_1_2_i686.whl (190.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

arka-0.0.2-cp313-cp313-musllinux_1_2_armv7l.whl (186.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

arka-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (180.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

arka-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (193.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

arka-0.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (193.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

arka-0.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (192.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

arka-0.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (206.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

arka-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

arka-0.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (194.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

arka-0.0.2-cp313-cp313-macosx_11_0_arm64.whl (133.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arka-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl (136.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

arka-0.0.2-cp312-cp312-win_amd64.whl (141.0 kB view details)

Uploaded CPython 3.12Windows x86-64

arka-0.0.2-cp312-cp312-win32.whl (144.9 kB view details)

Uploaded CPython 3.12Windows x86

arka-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

arka-0.0.2-cp312-cp312-musllinux_1_2_s390x.whl (194.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

arka-0.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl (193.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

arka-0.0.2-cp312-cp312-musllinux_1_2_i686.whl (190.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

arka-0.0.2-cp312-cp312-musllinux_1_2_armv7l.whl (186.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

arka-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (180.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

arka-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (193.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

arka-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (193.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

arka-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (192.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

arka-0.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (206.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

arka-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

arka-0.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (195.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

arka-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (133.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arka-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl (136.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

arka-0.0.2-cp311-cp311-win_amd64.whl (141.0 kB view details)

Uploaded CPython 3.11Windows x86-64

arka-0.0.2-cp311-cp311-win32.whl (144.9 kB view details)

Uploaded CPython 3.11Windows x86

arka-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (194.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

arka-0.0.2-cp311-cp311-musllinux_1_2_s390x.whl (195.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

arka-0.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl (194.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

arka-0.0.2-cp311-cp311-musllinux_1_2_i686.whl (191.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

arka-0.0.2-cp311-cp311-musllinux_1_2_armv7l.whl (187.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

arka-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (181.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

arka-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (193.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

arka-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (194.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

arka-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (192.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

arka-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (207.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

arka-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

arka-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (195.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

arka-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (133.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arka-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl (136.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

arka-0.0.2-cp310-cp310-win_amd64.whl (141.0 kB view details)

Uploaded CPython 3.10Windows x86-64

arka-0.0.2-cp310-cp310-win32.whl (144.9 kB view details)

Uploaded CPython 3.10Windows x86

arka-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (193.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

arka-0.0.2-cp310-cp310-musllinux_1_2_s390x.whl (194.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

arka-0.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl (193.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

arka-0.0.2-cp310-cp310-musllinux_1_2_i686.whl (190.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

arka-0.0.2-cp310-cp310-musllinux_1_2_armv7l.whl (186.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

arka-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (180.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

arka-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (192.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

arka-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (193.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

arka-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (191.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

arka-0.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (206.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

arka-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (179.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

arka-0.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (194.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

arka-0.0.2-cp310-cp310-macosx_11_0_arm64.whl (133.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

arka-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl (136.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file arka-0.0.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c1611f045271914e9c36183446d7e13624924c948fa8dc23e2ca57b3303ee85d
MD5 db5c35eae583e812c997f1cb3b411723
BLAKE2b-256 5d8d2a597a33eb31c86fa6f56818f55f1d7991d281cfb1e4aa5855507db4b63d

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e668a78ac3ca994579485b6f1d31a371f60ade6d357d1443e16fed1b3303213f
MD5 30a111c4b33b699a9d1e8bd6ae024d90
BLAKE2b-256 329716f8b9e64199efdc7679dde503042f0aeb6b6a78252f093490176b38d1a5

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 148f5b2c50f0c604b8381f8570ce551616f675eec25437e6a34f83942f85ba9a
MD5 a0dde3cf07d739f9d38c5c70198580ec
BLAKE2b-256 3b9a60116a9d88ce5c2745cf7f5018bc3c36539bd2959c219681f93b14d30dad

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d1797a1efbc0535d379c3fd8100869ac801e8434bfd7c692fb34a588333b268
MD5 61b6844edd9ad2ec226f77e7b093aa0d
BLAKE2b-256 297dd4c90609c5444163c87731f5ca54179d99d327c5b740503d2deac1d68090

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61e8b53137e138d00b37bac7bc76884fc06a53edcbce988046329cc4764aaad8
MD5 3c5d517c36743330228bf473bb58223f
BLAKE2b-256 a46aa53503e70463721bd36acf4eaf0909bebee65b1262dabf1e106aa003d2d6

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1f903986115abb79bff0bb067549b1fa6a280e488c304050d167ada647551799
MD5 e737986fb2851da3cd7a54076e9e1824
BLAKE2b-256 f50654d88c2a0090a41090f145a6c599dced2a97d73096808856d8d16a7990fc

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6f9c9f20801ccf7a91934ff5f0c07e50c0aabeca8bdfe5113fe854890f550450
MD5 1c0a417efbcfee3372d3ab715d9cefea
BLAKE2b-256 71903a4ec623515533751f0842f0c03d10abcfdeb55b28900aef6710cb09c119

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6aff8bb4ba33eeceae536b4afad727ad159468ab61db6683ee0262dfcf9e05f3
MD5 5b75eabfcb0b6039dd633b84cc238c14
BLAKE2b-256 148138b162db1cdf81050c9ea206cb0c167d8e73e740b8f926ec01d59232d837

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 213fc33f811c5854a8fceee768c105cecbb0dac8e602b717a7c9aa38b3e21bf2
MD5 7178d12f394bc4dff8c65f69d023bf99
BLAKE2b-256 83fbe702461bae14a558fcd8b847ed358dd79e92236f30c06bb0dc3969b8b859

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4802a20ec5283964b593016e93dd4e1781cb22a17e7d0df0afb52bc537660803
MD5 f41ba17bff7fe55e8a07a03e14dee86b
BLAKE2b-256 3582f6028bbb5434788310f161ea75715064c834bfe70e4c3be11f10fd402cfe

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5761337bd65ddfcbdf693e56dee61394361222d00b7f3f74da3f02f61ac439c1
MD5 a15de6b72fa48b6ecbb06e51c74caa88
BLAKE2b-256 1c7ea40193b0de881c9003d50e6cef686b9d646a20b79c27b12610997179e313

See more details on using hashes here.

File details

Details for the file arka-0.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 281a44ba992f1587eca89fe37cff6b3d9e224ff12c18ed4980b1ee9fccd14dd7
MD5 551b4d0310cf5fd5ef6fb3a9d31d72bc
BLAKE2b-256 4b8689af9064c22c1c0ca406ccd8efba74d5842b71f52c92b834ff7c93b4d45a

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: arka-0.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 141.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ebacc673b6cbc5697286269572b9ea2ddf62349331a4eec54ef6442cf4ee42b6
MD5 cfcfa7432672a9dfd249e7a0733474e6
BLAKE2b-256 93899f4bf4835f8d1e1bf7b1b6ff3e2e5f30f9666e73f9ec9aa3a7e5016d6775

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: arka-0.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 144.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b69cc613154fa1bdc3e7c3845ce95680e0c70caef7b440ac8f9e90b6fa92d986
MD5 d5a01dab460f1cfb3831f32ed58137d8
BLAKE2b-256 112c616c44d67aa80bc43c4d4a9928a4c13aa7addaf91a0ad633b2e12d5592f6

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00d794d0bcf936884c791d3a830530aad9857d850683296ef1cb76a4ffa9a1e6
MD5 95d254cbfb25ed0ad986917fb9bfef3f
BLAKE2b-256 dac2dce8e6915c28c4a0ab2f10ddf8ac86adc383458ce200a816aff9e0e3fe10

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 975e3512763aceb386b7aa1a4248cd4f11c0e590e4c552dfa8da429b18fad149
MD5 5011a665709878011f469643c48792a5
BLAKE2b-256 177727a92e5253096c7e554351d39dd915dad7fdbf55cad0620c5ec75f169db4

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 aafd1be9dfda664bbcde95a00a431aab5330cbe22f0b6919996462ee2d481afe
MD5 94f7e217168c76286320a7c9684014c2
BLAKE2b-256 be0d0242a6ae224619ea46ca0f56bfaabcf103b6bf70028b258a4edf29297d3d

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: arka-0.0.2-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 190.7 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da6c5682df76c611df1df4b5e5c7a98f7ac2a891e140601457904e22c7d20f7d
MD5 55229b3dbfec483e13a0018de70a6ed9
BLAKE2b-256 78cfbca67e57b29c457dc0e28428df229f8769e159531f59df9f33110d61d938

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ab1f11a64fb3975e7ee74ad4d7c12f3f569bf197bc4aead91a7587f337fe252
MD5 39683563f0be7f889e82dce693d5630f
BLAKE2b-256 e3c38e2157a3326f7f411e2623b30883143df4bd2cc7402002864b06d35249d1

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce10c52a17687dbf2391a6b5124e677f3aa9d3e750d981fc65297d57b405f81c
MD5 0273505cb043549a4b799aff4c0bd953
BLAKE2b-256 9b80b5f0e78ff4ab9fa40f8f587890ba340c42675e490179ef3141e1e0f1ec1d

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8b7cd6af10b511ef18e0cd95367d61d8485b0e5ba6d62bb18380bf24a9c1d99
MD5 57d171cdcf929eb83ed5153feec6fec8
BLAKE2b-256 ca14e8452cb2e9c49849216691f8d4d93ee937c8b1a6edc0f48dc77dd269b055

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c6723af03c0bf0250d790514e569d96de75cce5e2276cc43d5a69d298dfe7b4
MD5 9f70140880840c1e291912d30ecafc91
BLAKE2b-256 22a53bcea846daf3deaab13df0e8173cf82c4e8b78e05a54921af4f35d19cf04

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4fd5140aaff7f8d4f3681706d08453f98549b698df2cfc6f1e3d7426464dde7
MD5 765907cfaab6bcf9d32f6e32c2207e51
BLAKE2b-256 408d0a40f84b806898b53d69ba748484272f69f84e81af2b1766631a9ebbd6e1

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5c9bae5fe24f58fffcf75d0c26a077fcc69b05a81dcefa50fd31d2d907d7ecb1
MD5 bafb20a1f2695e26815458cdab533739
BLAKE2b-256 c5aad38fe32a15a562ce6e772357178a28f482f0d28c720197bf0494f2d84893

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4f6d5fc2406b255c4474d59d91d8ce749ad5e4083df6b14ebb06d9896e00f1d
MD5 3104f1ad4e2892ed8fe1101e38edd4b5
BLAKE2b-256 6806cc5d6cc531f9917a92cdaff8c4b097d0d4b5f9de969cc3e0d05ab244cfdc

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b28b778f85adf539fc4fad49405a06cc3bf7047778c04971cc1744c65d51579
MD5 01a127d01349cddfc856c5a51c2e4018
BLAKE2b-256 9ce9992de65d868b72afc170e6b959f146a107c73de4bb58651f6bdc34c072b6

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47e1ca9b202e4c785249c4584d15779a902b7c94264172853df9064da47d9421
MD5 d19da934d549534d07887b8b775a27c9
BLAKE2b-256 78b70629d29d6993596570c4608947de9f8c60efdb2a4b95e711b51fdaec85c1

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 37739d417e94b2ffabe80184527f881368037d116f6818a75eeecf3d455f2a8d
MD5 e2ad46671597ce33be3037d7c6d0f1d4
BLAKE2b-256 34d4497cc74002e07435c19dcccbcda09740b731b16df3a02898e1d328f4c332

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: arka-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 141.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75fb8f0cdbdd28d58fb70e0dd65794fb57724692ad350ad3eaf58c258d187dc1
MD5 1efc6a54742e31165686a4e6c8875f54
BLAKE2b-256 b88e8b4281ded70cdd725552bcbe80816b09c2dc406419c6aa43a457fc9a33be

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: arka-0.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 144.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a592893c1769f97cc3416ad7f2700ded6b2aa73093331bef8e009d1b86e12f23
MD5 75a4d05c76ccba2d19e60f867a667190
BLAKE2b-256 ffe2ad75ba13a1d646cd2d7952dfd72cfeed0f09e6a31b72c96f591629f6d77c

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cf62cca67a098e69de98041c478549da7dbdbf687c91b6d8f83a1e0f975ae47
MD5 19ee7d2e7320b605af80ed8b35156a6f
BLAKE2b-256 fa16846a9ccf7e036be7b37b8f4214fdd8974bd6c643e7feb746a41e1bc8f495

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6a946c098153a545d4f5b085d8fb83289311b868568f0cfd0c2754b9ec7fb747
MD5 6a090370241756910a19436b01cb8580
BLAKE2b-256 106c242d211cc5f47e6fcfca3823d74b5e2ed1245633c8ba385582b2a9902f75

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dda201b8910dee33906f4535c171745559b50667336de4eb6c5d8e5564da6302
MD5 6b1c59cb58ab597d217604a335fff61d
BLAKE2b-256 e3a9b5eb7ad99700d8f30745ce1533177a16ff8a903d5dfc38c74f10d8f11079

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: arka-0.0.2-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 190.7 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a18619df4d59056da833c1f44a5ea3308adc393967505927dbabeafd6680284
MD5 201459717a7fe9db25749b4a586bb063
BLAKE2b-256 5744d9e4db3fc13d00b720b1d5978c686b0da678fe425408a28b4e1b1a047737

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb9d66a166a9460894faecec858d843070d667165655ef555a9fd94bbb62a2fe
MD5 6fbc4899ed6e2e3fc89fa8af0680d8ef
BLAKE2b-256 8946ad57a43209f355a36a569cc7104573cd1829ccebd06ad9b5861355d3259b

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44e1d10812eba525744ecb49c92d0965651cfab9e2ee9b66b042461f9982b76c
MD5 f138a4e03d793e380547efaf29949829
BLAKE2b-256 54b9d7314d5b3bb6a6605e01968644ea0176ea1dafafb9b328588bdb8ce48e1b

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c4b88d4102ad3a2d1f9f2267007cb77ac010e52c6ebfaf3c5ba57a459724122
MD5 fa2e944febecdef2971cf7bf8cc2cef8
BLAKE2b-256 6347e3acaa78bcd68124c5490dcce50bdfe3f76501dda0c4e04ad03031935f90

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a04b68d0c546ce021c380369857680f7e281c52195c8755cf332b4de94f71015
MD5 4833b26ade6309c32239640cac8f6372
BLAKE2b-256 052a80de27f09c0448ace98f47a9b33b1acd0c3ba55b5205d2cf669a410e2fc0

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a482b141f16adb10661f1ca498e770f3b88c785f7235d0786d352552c9451965
MD5 af94c4ce0d09497c6069a984cbe37093
BLAKE2b-256 714ad8b821758f2f0a10a4cb3908fff4ad2786fe497780c7eebbd4c4547a24d6

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 11d40e3a833eeffc47678a8498a36e7c0f77e4b3630d7cdbf67bc10284143911
MD5 633ae6f2965841dc418c5612af2b3e79
BLAKE2b-256 6f0b16985e3d26a7e442c10b1520b5fbbdcc22031383d3412c6b7cddb27b92bb

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb10fdd39e1189a5fa6fc9e1a250fce21dee5c963a6eb706f98aa388ec3f6512
MD5 0a37ae6bb16309183104407fdceb2178
BLAKE2b-256 ec5e54d22350de4fea874cc2280e4685b0f26afa718bb495654f33a2cd23f658

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45f9360e70682aaac42a16b4056832251c29e1228c51ceec86a7b38f4663e88e
MD5 606df9b196dc452a91e0b8e3dca01885
BLAKE2b-256 68456e48a06d84ef262226c1672e77d9159d3931a63c1c0bb533ae18677e9f16

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63a44050267011fda9b4c0c84c62b7f5f669d5e1aad1e0b50340731f1906d9a5
MD5 3c1dd48b8962eecc77fe33e0cc8bbe20
BLAKE2b-256 ada13b4d6db702a44f3807c83a0bb0f78fd3608b447f7e521204535f9e21e6c4

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4f99ec0a7e87ef37ea8be68405a4e1d7c4696a064bf2ed9c2b4ce665a17d959e
MD5 39ffff29a79a0ade3e0e58960f630b76
BLAKE2b-256 3369215eb29391210fccbd1f7e2a33f27ac94f76349962de4775f725e4b4a8e2

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: arka-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 141.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c95e5f4b20d3e12c963823c27e344ba527469eb01acd4851f0c4c31b8db01814
MD5 8361075a218a254cb65d0906cfc44485
BLAKE2b-256 423fc3b7ef45e73cde36eeb28513cf3fbccbe4d7e5d8636b4881d2f956c02a6e

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: arka-0.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 144.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1cb05feaeb6836281671a182e78af1a224cd2924829a264b1506b525154fb288
MD5 e262348d1d0e749f2e81c6b97a630fb1
BLAKE2b-256 87ea20e12b9d5f9d2341d770c755b9890406f2dc3f89541c57bfedaaf2231d5d

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f121105bfaa6ad6a0307f9a2f9776fe2e54a8142662b1412e7696c8e3564efa
MD5 64745875b782dbc26694eaee685ccc1b
BLAKE2b-256 d212bc97c429c14f3a16974fcaaa6bb89ddd1a4a707960bbc48770f8bb176afd

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8830d759118868f86bf89d77c3e1e24a0b92f870ca6f3174c60731cde09a2878
MD5 e78cacdc8e360ef60b50e1c245bdca40
BLAKE2b-256 e2e86ac580688d7ae3174b92fcec6a74e80395930cb8b1128b134387ad043fbd

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ee2c1b1c5ffd7f7dd5e85ffb594f08f34113a87c2ac3d18cdc6ed09c5d3d5d44
MD5 85a9a52cd99887417f429a0379f1c83b
BLAKE2b-256 1d0e7e4e877b9fde3a1bdbe77e21976375e46ef6e815b2d89632092e89f69caf

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: arka-0.0.2-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 191.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dce2923697a039f0daa770a383f2a7ac92a986f99cf31a32eebeb128daab8d8b
MD5 2a925788a174949bacbf018ff8c72930
BLAKE2b-256 be179c2eb3e29fba30f3b1a6fa5ad4ecc97233a3a62c260b6f32a176426f74b4

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aed18e0672c7f5363604665d67c77c2abff2b7e60162713ec7ddb0022fd15e11
MD5 1b64429383403fde0af729d5abf92ad3
BLAKE2b-256 a95e2d49d11c758a71f1a7b853efc6dba67c040caadfc5935be98ccaf8ff10f0

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bea167cb7ceca71f9fa441fd6343237690db2a7d5da9d395b90b0686c211e978
MD5 ce485caa13781b4a8eab55578e3f25d1
BLAKE2b-256 a28e8e2858f96e94c0334758b185a6fb72e9ec139181df49acac7a76d5a0978f

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37c9ae7d1cb65ea036e06442c381e938196cf0c17c8511f7b8fceff760bad47b
MD5 484b9eb261e7ce1df53f24175e682b6e
BLAKE2b-256 e9ca3340e3c6b506c2b9bc783e591d9dd530a1690e9c60fa725472ce058c6e44

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 321786cb624918706f721e43dc4168601968f775bfe531ee420e790995703eb1
MD5 32510a052348364ce64b1c9a88d547ff
BLAKE2b-256 0d88e08622e8fd191b17eef869710a1c4ca7deace4d49422def8e0afc4433eff

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7459a324a073700ce35209c4722ba2388262c39e395800f8c5aec3ee99200855
MD5 b5034af5c47552ac6d2a3234e92865b6
BLAKE2b-256 7c4b26e8378deaff6ab34a8d756c1af9c50a1fa121cd2f31f60f1b335269a4b1

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cfc68cbb077ad5b2ab62160312f447bfbb8afa5bf99f3632f3ec0bbfb76e20d0
MD5 ff54c176efe34d55d1b723aed1818325
BLAKE2b-256 c3cda39ef0887cc87903e6adef5e2593b133d09dc0532c02af33c325e0e53f05

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8af57fa7f76a115c9106f9fb0062ae83bba4dde2b48d729b12baacef7511f652
MD5 522d54ed49cc5c4239f0f1ad50237d3c
BLAKE2b-256 19dc7aa3f3a0915ef8ccd3e5bef08daf90aff3e918c538b0849d666920da09f0

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f123416b6d3602a4658a091348c5194f7bdc9b46768f24554b320c745d3fb1e
MD5 11b97bcbfd4689a9c087f91551c20a7a
BLAKE2b-256 6e44d1e30ece40794fe441f8af1fe447ae035372109dca62651e8a1ae4c5ca34

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f9025b4ee99a3ebef4657ecf3ec049991df21b14d65bc13ae66d10905f21f4f
MD5 9f1c5b5ce2927de9ef061555329943a3
BLAKE2b-256 14c1086a64d494319eab85a7366984128893b6ec724b45fd89186019fd449230

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a98e69175a0ec18eafeb98abc9f2a6536284b4c01863431c560b9bf724193113
MD5 5afbe7a04118891b9fa494a41c39d9fc
BLAKE2b-256 3aa6603050b25f18dcca6e0e56e948e0ffae075b0a9c2e2824df5c5aecde2254

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: arka-0.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 141.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4947904734bf115f6961c32e3bef911f0b15d695e7f304bc366e251306cbfd18
MD5 ca982de8ae969ec682b001ba4467fa96
BLAKE2b-256 8ce39d8a0f5d5ebd31671cf7fc7082bb15edc48d2a8c7a444edbb3a5e0ffa8e6

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: arka-0.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 144.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c1dff67121595cda1ff98cf6f94fb33cc44149513b6c564231bd09c36ca10d58
MD5 10113653f1fb1712bd67201550123a8d
BLAKE2b-256 c441680db6cd134bba809145fb1ad56a06d4957565560f0d1b408dbcba3ca2d1

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33836276dfc03d08a230d5f96705b40f21e5b59ec2e5ff84ebaa94c028e6d763
MD5 b041534e7d5329970f3cbd774f76d8c3
BLAKE2b-256 8956899f9a4e5a375d296fea465cf428e3af1a5efa2cfa22e37260ca04caf6d8

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3754515c270953673b413413b3922aa9a89a0f4fa871004b0c216d0c01ee52aa
MD5 2a61b9b129d12c04536c64cabb03c596
BLAKE2b-256 75d4e3184ef6604baf2e0fe551ad0ea3c6fb231dbb5fbd7dfafdd98747d40c54

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 557875aa9f09b808fc98a6546b7a7ef33506bed0460ee8ed6b8fa901433f3e81
MD5 72168ba67d27c9d6df8d7faa35f1f89f
BLAKE2b-256 edd8102ad0302f2e7b432588ca636d2dd705353aae302d4a77932442db598ff4

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: arka-0.0.2-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 190.3 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00bacb7951d20cbf5ea0d1892696de031e061c3693941eb551c6a6cdacc38985
MD5 d536ce5abed222800d0d23c82f1ed151
BLAKE2b-256 a80ae10cefd916670acb76bb166179749abf9c3459c947e5321385ea7be77f87

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b074044dced03017499b20249ceb6ea64558e69bf43f45d27a9f823b6b4735a3
MD5 a2bc7138e04b1fcb52a6b29c5b88b810
BLAKE2b-256 58ae54671c9245d412662a09fe14eb3f391a58bc299f3b2492b9eb443cd9d9fa

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1efba8869bb7089e7bc0745fa3badb7bb41176318dc54c270f73d996d1a522e3
MD5 00b547eddf2fe893179dce324316a632
BLAKE2b-256 afe7d74682a01c7806986adc39d36c1e53a8c5be8208e4ceb33daf8e49d854cb

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ddaa124a2e2c1d549f985f84df72f77a09cf66187327c51a940c02bf302f3ce
MD5 437d6094aabaab26f70930198e4c4ef2
BLAKE2b-256 ac4407a8a626eb42f996d3229c919c9968634c375299dc8e07fd93c1f50c4ffe

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fdf74e5d59e48480bc4a4e683655059a804e7cd187cd4cb30140b12ef22e75a
MD5 f4ef19e8545b532f8e06bbd3f209acb0
BLAKE2b-256 66c19d9b2a8a0fd3979e68a6d5c1cb0840fdee7b8fc40098c51347cf6108ffd2

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6869014237b9aef3a27108fd14e733b4e808fc7e7b62da5dee56c21d93813ee
MD5 a29024dec607e21f50f9b3e836ac8e81
BLAKE2b-256 4ddb8f7e8e8ffbad31fe0e45f2f83c18796ef9ac561c9dc958a771f1f15ad301

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 322bdaf6448e26c42c61cd8cb1cbf0081e25a88bff5b85188ddebff45acc9f0c
MD5 9e382002eda80a4ec4c1aa062556a72f
BLAKE2b-256 b5a9ce49dcccb71e577ae054842cc79d0e8d05e6cd2ff4f420a8818d3ec048cb

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e006011ccad53f5eeb76bf46b735310c0b3e963cc60f8dbd93c65f7da43ecb20
MD5 2e26c29298b2edd6a9eafe086b388bac
BLAKE2b-256 bf8738b66fab372f4a16a00f0bfe6500adb4c03105c6e8a6c87b27dc5621073c

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 beb95321be69e87b6db18a32ece683b14cdd6209b8c003bfa4d10be737f5d5fe
MD5 0d568e16876cc21fb90ad583a1142186
BLAKE2b-256 3ed0fb1c1a0491202b0e7c000ae8985b60ce4f7ee05303af567ab242495b7324

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1008194f99af262347c4745f549d99788ed50eb4a3a82d4f3704d1a6a1f7a80b
MD5 5d315fa561eb3d15f86336d92a69822a
BLAKE2b-256 aeb7b220a9cb91b6f31ca83e0c7f265224ace22af024811f03a797a17fea048f

See more details on using hashes here.

File details

Details for the file arka-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for arka-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78d6c4cc4e968dcf3f16f8c85cf9510dbd5c63ed12cbc0d9dda01fd2a2d93d75
MD5 57ee5ab5e916fd325cb158385869df06
BLAKE2b-256 155539f5029dda403ac4c14af236eaed0d3711c1093236a974c581962ca2a216

See more details on using hashes here.

Supported by

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