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 Distribution

arka-0.0.4.tar.gz (86.6 kB view details)

Uploaded Source

Built Distributions

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

arka-0.0.4-pp311-pypy311_pp73-win_amd64.whl (142.4 kB view details)

Uploaded PyPyWindows x86-64

arka-0.0.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (134.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

arka-0.0.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (133.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

arka-0.0.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (143.7 kB view details)

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

arka-0.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (133.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

arka-0.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (136.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

arka-0.0.4-pp310-pypy310_pp73-win_amd64.whl (142.4 kB view details)

Uploaded PyPyWindows x86-64

arka-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (134.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

arka-0.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (133.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

arka-0.0.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (143.7 kB view details)

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

arka-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (133.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

arka-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (136.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

arka-0.0.4-cp313-cp313-win_amd64.whl (142.2 kB view details)

Uploaded CPython 3.13Windows x86-64

arka-0.0.4-cp313-cp313-win32.whl (146.0 kB view details)

Uploaded CPython 3.13Windows x86

arka-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (195.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

arka-0.0.4-cp313-cp313-musllinux_1_2_s390x.whl (195.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

arka-0.0.4-cp313-cp313-musllinux_1_2_ppc64le.whl (194.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

arka-0.0.4-cp313-cp313-musllinux_1_2_i686.whl (191.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

arka-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl (187.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

arka-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (181.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

arka-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

arka-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (195.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

arka-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (193.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

arka-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (207.8 kB view details)

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

arka-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (181.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

arka-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (196.1 kB view details)

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

arka-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (135.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arka-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl (137.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

arka-0.0.4-cp312-cp312-win_amd64.whl (142.2 kB view details)

Uploaded CPython 3.12Windows x86-64

arka-0.0.4-cp312-cp312-win32.whl (146.0 kB view details)

Uploaded CPython 3.12Windows x86

arka-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (195.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

arka-0.0.4-cp312-cp312-musllinux_1_2_s390x.whl (195.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

arka-0.0.4-cp312-cp312-musllinux_1_2_ppc64le.whl (194.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

arka-0.0.4-cp312-cp312-musllinux_1_2_i686.whl (191.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

arka-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl (187.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

arka-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (181.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

arka-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

arka-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (195.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

arka-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (193.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

arka-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (208.0 kB view details)

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

arka-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (181.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

arka-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (196.2 kB view details)

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

arka-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (135.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arka-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl (137.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

arka-0.0.4-cp311-cp311-win_amd64.whl (142.2 kB view details)

Uploaded CPython 3.11Windows x86-64

arka-0.0.4-cp311-cp311-win32.whl (146.1 kB view details)

Uploaded CPython 3.11Windows x86

arka-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (196.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

arka-0.0.4-cp311-cp311-musllinux_1_2_s390x.whl (196.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

arka-0.0.4-cp311-cp311-musllinux_1_2_ppc64le.whl (195.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

arka-0.0.4-cp311-cp311-musllinux_1_2_i686.whl (192.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

arka-0.0.4-cp311-cp311-musllinux_1_2_armv7l.whl (188.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

arka-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (182.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

arka-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

arka-0.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (195.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

arka-0.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (194.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

arka-0.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (208.5 kB view details)

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

arka-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (181.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

arka-0.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (196.7 kB view details)

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

arka-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (135.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arka-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl (138.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

arka-0.0.4-cp310-cp310-win_amd64.whl (142.2 kB view details)

Uploaded CPython 3.10Windows x86-64

arka-0.0.4-cp310-cp310-win32.whl (146.1 kB view details)

Uploaded CPython 3.10Windows x86

arka-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (195.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

arka-0.0.4-cp310-cp310-musllinux_1_2_s390x.whl (195.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

arka-0.0.4-cp310-cp310-musllinux_1_2_ppc64le.whl (194.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

arka-0.0.4-cp310-cp310-musllinux_1_2_i686.whl (191.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

arka-0.0.4-cp310-cp310-musllinux_1_2_armv7l.whl (187.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

arka-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (181.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

arka-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (193.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

arka-0.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (194.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

arka-0.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (193.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

arka-0.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (207.6 kB view details)

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

arka-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

arka-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (195.8 kB view details)

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

arka-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (135.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

arka-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl (138.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file arka-0.0.4.tar.gz.

File metadata

  • Download URL: arka-0.0.4.tar.gz
  • Upload date:
  • Size: 86.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for arka-0.0.4.tar.gz
Algorithm Hash digest
SHA256 f2c1b24f683f13367042b91369d815edebdefb0c5ba7171a3bed1b5b940f934f
MD5 d8e013338a0a10a9610228671517fba0
BLAKE2b-256 4a9c48018258fbadc5fd913ca68ac0878ae99c0f7f697dc3b325104cab2c2baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4db035ace4dce3101ae44971d637b59e9a391a110a89fdce86ff5cb29bf46e0c
MD5 2b6ed2d3ead839487d02cb4a630a1f34
BLAKE2b-256 4965c5725a610781065105044ac0a5532729c541c7fd20ee811bdf3bf553b590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb3f9241d1e15ca3ec252b83841478b9498c7f913fb552924729298c31efd2b9
MD5 a475514f2c4d7627ca57a9dd2f78c119
BLAKE2b-256 e126f55b6f2cb5266cb08d3830eacc7f4c17532ebc088d25191b29d8cfa00821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5da043e3db88e17c4ab8e4fe8b21d88637a3c7d82a4fa8a845397e6b1a69d05
MD5 2be48ec1257b7059ab77afcf174cdf02
BLAKE2b-256 7035c628c805070b0f1df7995dfca685ae3cbc5622bdf21cde1442fec67a0bb6

See more details on using hashes here.

File details

Details for the file arka-0.0.4-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.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36afdc48bebad98b1d398a367fb77619767f1c72fa2181ba73f94e7d3a064524
MD5 977fe9c3c062b20bcadc4a30edb157b0
BLAKE2b-256 fad2cb58bc652370d6fede4a7f0350b2dc052f87a915cdb2e2da1a180c62346f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b337d41936309deb5ee282f3afc53b7992e64acff93bb8dddb098e63ac9f9f4b
MD5 49f050ffdee1e502fc215fff5e63378b
BLAKE2b-256 c68fb7f1187435aeafcae5b4b134fb03349c502ab2a1460c50a83af9fef0d6a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 95759d5832aefdd6c6a7d49d25d41a1d2e5e8f60432e1c74a0fc87b90b11b9cd
MD5 9378b421f04bdddade83d647ee6f4431
BLAKE2b-256 cf5a986fc70ebb00285e38b3d4281526260e2420a9cb3a60b11f67985ac50767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d88c6fc7cd1287beab3de928a71d45467f01b9920d5d41fe47c7090cbdf06f1c
MD5 4a5e4ee1efec2eeb15f6012301676005
BLAKE2b-256 1a0cc9699cfbc35948b930ff66863e79bc8bd4bfb0f1cc3d6ce411924ca158ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9733e03b0da83b3beef104f2783ba7f4f53819294812e261f4374ddf49860441
MD5 c5ccbc5335cde4abc1876bb78eea67e9
BLAKE2b-256 ef31e5bf6e4a6c8361c3409fc8ea98fa62fb6af0efacf4967c680bced71c8300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dd474d6aa1b541e8b810fbb836ef1860bb4fcf0be9b49beff3c9249f09ccbf4
MD5 dbaa2cc4555a78df38c6d9a22aff4bc1
BLAKE2b-256 93b46268b2598ff5fdb191a005843fd77d0d1cb5bdde3d25bbfe2e1d93145d98

See more details on using hashes here.

File details

Details for the file arka-0.0.4-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.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a18c811f02790205466a20811830505561609cc4615500bd00a886ee90a93a8c
MD5 b20f8772c8bcd5035ba560f9a40e035b
BLAKE2b-256 4567ee604496039d8d31bd28421ff634d0a1c67b07362ccccc83fe74195ccc78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5b441c4a44e9209ee1022f76e2cc649b1ae5fca863b46bb51037756ba2007d5
MD5 7226195900392adedd5e5229113fc5f0
BLAKE2b-256 d9997921bc4e2e356fd11209dbd3301aca1f20bee3eb3836d67c0b5376dc202b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4f6b774f685adac4055cfd6f8ce17e362a866697b556baf67f4f4b124c1bc2cb
MD5 0247bfe30c5175ebd023daa2c7248406
BLAKE2b-256 386257811d8cea4b211c457643a181d00db4eabc7ae6fc38acfc3376b6e515e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 142.2 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c4362e17875fcc29c11190592552b8895411846f13a07d0ad623c75f6a7c403
MD5 8af2d4759ed850f59b32bc98606b7d7d
BLAKE2b-256 fdbe1ebb413290e1d8c7beb0ec25fc18a7e8dee0224e048b3a6ff68c1122f2e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 146.0 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1eff9057f5d42fc9e3eff2ed32d1ed523e514bf7f05b285e4020097d525a1c9e
MD5 a8ff0df7e92e374bb99f88d1cef41075
BLAKE2b-256 eede4000c564221fdee5232979db04d06b33591a44e583e1cc8a99b6ada3a09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 507bcd1bc10cc9ba0487cd0bc61dcb97f87553dc87653055765b6ce0900e3f37
MD5 76a86d3368ffc20772544d429dadcffd
BLAKE2b-256 a2425f8772582868797685f0432125a3daed6d0ddaf51f5473b50d222c50e073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 42b1c10f75d43c7d42c80a6c37dfe3ddffae018ba8dbb3f842fa6d47cd8c61c7
MD5 5bfe226a9adc18f85b9b827a88e5e680
BLAKE2b-256 e86ce1ed54a223000e8f48d0b4f7389cd2d24b0bd555e8a8af8dfac7b05a5a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 62b81c150978da0068bbd8b1ee4efccaec3cd041afb5c61443894c49b824a832
MD5 7ab77eafac79b62d4f659be06c41f5aa
BLAKE2b-256 939c413d08149484bc63bd2ae815e9b3c5ee34da7ba798d81e18342ee231d9b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 191.9 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.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c53b2316f7fc15bcb8e80a52d6348dd627ccefc3c092bd3d0f7d75f7d50418ae
MD5 02c0c5dbd40f65f210626fcfe6409a20
BLAKE2b-256 1439418ef65f89f6b7c87a24d594db11fd847b669e8dab4647ddf964bba7c886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 199ac9eb66ae444cd7a223924610bb1ccde1541c856e2d35ec9af0994620ec21
MD5 d0c1ef8233dd82ee911b81b0a0ff2e20
BLAKE2b-256 b7b61a60665b3cd5f256cb69d5889f6206dd833a594485e3e2d1793eac8fdb52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6dde8ff63c2cc6184c447cf5a4fc3954103b503569ca4bb64b78538d0af6e70
MD5 18df609dc712b4ada1e2c3b5b674ec2c
BLAKE2b-256 aec4322d7b4d02ba488d20f014e5b4cb4b62dc95b7b4814ea767c32c3cc8f5f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ba4c13c3eff5f801d58e43be568b1c55f07c04a6eb56e7d55bbfd6fb2b22d33
MD5 8b3b5763634d4f33170856339199779c
BLAKE2b-256 69f9d4122caadfb0b24a38651554703b5f005ec419a474c78a2f01e53a8bba41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80623bbc5b92e2e667c838849a82100272dceb9b35498e73e969a53d7ec888d7
MD5 611b2ca5cf43e071cb6eb9d5451a7a56
BLAKE2b-256 d7c6a2043f2544cecae35475f36b4f30f62da01e6ac746bf26f19bfe5c49c962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56e8b06e4cfe10e79ec8a0183396d6b61932b80a425eedf322720b8f56500937
MD5 95b2f9be68244f3f08f48c381f802c65
BLAKE2b-256 82b6c5b610fa09f46df52ca426ca9a9f4d90f58f3ac3efbc1d21ab6753abf567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 084794e7003c61b72b645c1ed28d74ceb0eba147beec1c466566ed417e144184
MD5 5a1e88dd86ef24f00f835e38e1804578
BLAKE2b-256 f92e33c4c3b21c15275536265a1dd975d2c03b0ecb5cdb6059fcc3dab6e5938b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 599c3943fe2afa6a0e2146dd8e37b5a2bdb27e967f09379ce27bdbaeb4779581
MD5 4713bba43c4b41dca2fdfe44191d5503
BLAKE2b-256 8c0c797ae767afb47661fb954592840dec16fc43606cbde8e00dd2518240869b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5955831e8b321606a0747fe1fb6052400fe0f415c8fb6030521eec3e41270ad4
MD5 c45acb0513367db6848e85906f6845bc
BLAKE2b-256 4cc86c299f385b6f36d0aaa495ab0ca3306f8798d52d566c8fbe02bfb1107578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cf6e43a5c11c3cf812ce70a7e70d3ad8e978653e945c79235a4da4f9529cdb9
MD5 3b4a46c633b46309cb5b51af6ef02f4d
BLAKE2b-256 4c6b481769205eca0184ab49dadc3401bec0c644df8a6e9d1b147e2f4867c9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83e67c88e0c918eb9f69cfefdaa4930b6c3a824f7e36d704e00fa201e448ee38
MD5 1c129df657acb259fd6f12d460ad9dcf
BLAKE2b-256 2a240dbc318848ebab2d801c84adf02af5adfa327a2bc9f1a30bc91febef6f5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 142.2 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a28f375fc868a93adfc1c0b1a57668bdb09cda65c1e6512fa2ddba8655b5ff6a
MD5 2135f2c2b9cfcda02c98974ff7c8641d
BLAKE2b-256 69872fe2e24c9baadfc632a2a3eaef653059f8e148eca33297ada596c3d7abd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 146.0 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3900fca75b136cf86e8976aad320470dee601171b3ac3d5b071072918a8ca0ac
MD5 b08bab152006c5147835462e0f3e6a15
BLAKE2b-256 1a005c84054200d3e8ee75610f7ab5dc15fccbc407b682aedf9e2462be7719a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16a267cac57302652bcca50ae0d10e06eefc103470808bfbc33919b47fd907af
MD5 be4ed7ce13aaff8ce5f9e6c7545610a2
BLAKE2b-256 5c3ae72389e968ad6f2fd10a1756e0084204f566d0ed88506a714f6b7a620e2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 326ec8075e0fe9293fbf9321eac73e6c7ea22cf17b7faf0742a88fa92fd1ac36
MD5 5619f978bc16b2e5f9534d73c7547d55
BLAKE2b-256 2f2c934c401b15d2dfb64bf3171b0f79a57bb9f3d2fb766514a29f385e34ce7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4f920bb4dfc5b5dbbc3ef9e07a7f3a907b1115f53cadb8f7f73585d9b4069985
MD5 139504d9c0714974a0018de0638aad43
BLAKE2b-256 5597697da71a120dddc5d3d8e84ab7032ada037f27ac7544bd5b9bb16aa2888a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 191.9 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.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e1114cdbd6a75140f282c250cab98e740d934013f6a04fb39e7657aa6391140
MD5 b6422e489e74dd4a620339925a36cbd5
BLAKE2b-256 05da8c465745b39b2fcf6f85ae0278f319d94878ee2f7b85237713a9e93615e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8669c871cea3695b6c0fcd524e70f0b60cf401ad90bae1d62bc7bd9b4f2941f
MD5 411bb2dec69546e72eb8b4a2857e1f9b
BLAKE2b-256 500f2bbe483f45a1c5c6b0c2fdf4fed280ad165fc142555ad00d353fb048d0ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eba688ae3368ce02644257c0e82c19eee9cdc5c4968e5677456bbc6673a7a451
MD5 1ba5c6f165a6adc1644edc15090dd82f
BLAKE2b-256 2b84430eba1a900eeb86c882007f3c406ffc326f3e879867cf3441bceaf0882b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d48deae2fac359199145ead74dbf61bf6180285ab96cb405706f230bfb18ff3
MD5 73bb7135d7cf2d3bbd2dcbd8b6d048d3
BLAKE2b-256 483ef7f47ef8c043741c59400e7f8e92edaec73b7b9f9ba30d5687269d428956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 515f39c5fc613047f28fd33e593b186c66803d6741aaf8c042ac1e6bcff7b0bd
MD5 3a2f79097512ce456a4db171ec2fb553
BLAKE2b-256 50ce516431d4972692806cb855728016c6a8781c779da98ff0a416d82388d2b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eeef6694428bbf8498cbd950633a2ed618742832e647317d06c19b495686eb48
MD5 e12bd759e93a7a595077637fa7fe2edb
BLAKE2b-256 8c1400f440760dedf7f6bd4c224377dc1c8b36ff107e51f03ed571b242d46878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 96be69434184a1ed332294a42f2caa946f6b2520ee839ba4fee782ae5732e4a1
MD5 7e98f5ea0c8edef97cd837f9bde50550
BLAKE2b-256 7e39e4010ed9a1b4e3a45abd6f32079f0acd1876f7ac630f41d67eaf300963cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38a2e5edcfbb46a94ec6acb5330e7fb16c38d2e0448fd2772af064509a9cb677
MD5 e0ee4b1bc7312e2498b2f6128463d7f5
BLAKE2b-256 61ab281709a6014dd647e26e8e4b9ffc157d23b763701393a0b672313e642883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 faf9f011d6d6ff0114e1fa6fba237638ec8d97de67c66e994f758f0018c3a338
MD5 d5e5d95d43df089e77532dbcb4b1d56f
BLAKE2b-256 b0b7cff9f697dbe02f91f80f8ff6a1fa2a3ceef05ebaa8109db246b88ee8cd29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5199f45d2a49f2e2dd6202c1313310f17aceb9b3ec598ebad5a6fba4df3c7cf
MD5 fadbdf3d19c8f86c2d38dc9123d6a799
BLAKE2b-256 89c1ae9d6742d52f59cc91e0a2b665b66aa84a93606b9a2fbdd585908c64d12b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e2e67057c8044cc687412adfbf9d0bddb30c1520a08f4136b12bf2e3ddcc66ed
MD5 d5731a06ea2a09e5e3108721f5daab26
BLAKE2b-256 3abbdf1303dd993a571b65756b80cab2e7cd4130c499c1b4ad3c93cb7279d29a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 142.2 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ea97644845857867dec68d8c3edbeb76d3cfa4e14e04716abefc0da89122dc7
MD5 34e061cd18767ed1a893bcf7e2638eac
BLAKE2b-256 9a7cc4da5b605128aeb02ddf63784ed594c0ca3e6f1617f6ab2a6ef388431c7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 146.1 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4e72f360871ddf4303d5b6b11090080036c3768be281b1a1b12ba92d5536f8a4
MD5 5347fbe78bec1fdd01edca4d21edb8ff
BLAKE2b-256 02f22581432bdecd4c3e2101b1990cd443dce60bc006e5ea2e4b6f4ad5078c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0520f79c99d80cc87aa57219ea03006bbd534ca3a3882b3ca34ff10e0bf74fc0
MD5 9601d52ed192e7122f19d410588970dd
BLAKE2b-256 c09824b097524592f8cec8756bfbe68ca3264f4db5b7f0d9deccfe0572231cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d040678b74d4389b5b6b07fda537041c689607e78b494321cae148df6cd96c25
MD5 0bee29aa39c66f82b1989f02173a9947
BLAKE2b-256 f0ab5fb142f769882f2f980836f3f9e0933e5306f7e81cb7b1eda11ddbc0c216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0f4978b9a0195a6763c9a7678e5aa49a400b790e50c16cc91961300d349e91a8
MD5 0f0e085ed0753ce8fce7897728043133
BLAKE2b-256 b64e3bdd5d4ed65c4cfed626e05bbc4f6dc7ece774608cf8bb28a335d9bc5262

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 192.4 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.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db9e8a59f183edaa0ffe1e54d812a509480697db6bab2f3a9bd0f0d594837812
MD5 20416fc3e8acfc7f6cc745c3ab4b4d27
BLAKE2b-256 b832bb2c66e4a641a59264d3f35c05f58758feab2f54b35cbb55b19731fada62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 62ebb66e6ce870782bce2665c1610a8f95a6862911dff4e0a6741786e2bea23e
MD5 8a9b1f1d2c686800d5a621ccd164b5d7
BLAKE2b-256 3cd853325c2e533387b0cacd99951234c3d01a8cdc2cdd80b24e60468feb5f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 574351dee07781dc9134b2a6aef5438c49e2861fdc43b6aee8659fad9e9f499a
MD5 e4d5651db3541517627bf3fc2ad58d24
BLAKE2b-256 247b9f31b3e5fe11639e0e14a8f504a01ca822543805b0c2d0d5694720042ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c9814a2af45787ec742fde986d579cf1ff791cf6018518cf2b40c2066281d06
MD5 3962e47941fbcc940d866e5ae897c73e
BLAKE2b-256 9820858e7f5f4cdf5bc1dea1bb70ffc590f357805a4718da699fe4b3b80707f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 774691c40793ab969b24c0f4a2e1b98ae5736ce537af65ed2baad68978084a73
MD5 289a4e95c4e5aea4d7369af663b5447e
BLAKE2b-256 be918e961b65eab0fb7eecdcdf3c407e6c756078071cf8698ce2d7eec2826156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c376fad05abbaf541c494e0e1692e017e25b8d204683d39b245ad6d5bb218ea6
MD5 a352de7f00a8ed86626ac3b7fd9d06aa
BLAKE2b-256 d02e1e770ff070ce6b46b7845a2b2e67d7dcd80f2a47100ec4adc76b75a080de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8f9e2eeac131011a7d9d75ff2e99b4b36f6af207c98ba095b6debddcdaf4bf75
MD5 63f29a68face5364f1ec18f1ce241ce4
BLAKE2b-256 1f2a11ab9a337481b7a498b8f90fabeda55a32cefe0cedd7a7d36b5eff938438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd70642ebd03837ab11de7cf8342b82d29985fae9cabd9a1bf48de3c3c4e5982
MD5 139285b62e04cd72bccb456804fc36b7
BLAKE2b-256 5f69fac0d9f0570a51eeb63d8808f975df7a057e032d496c7ef07254a791b9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ad42279a215c13d43ab0b913046b83d2e8f20f66c187599f9c8275d695fbd07
MD5 d2f5ca2af1b9ec9248e3a4c651ad5934
BLAKE2b-256 f2cd438e34d403a0a82328f73709d763eca05920e4a514ed24d7f26a14f4174b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8c55e04e7cf1f4f7d3c00ad6e956dacb20eaf4d7ddfd71adf330ba7c0e5cd5f
MD5 dd795019a5efece115e224004e6907ad
BLAKE2b-256 2f7445aeae4dab0dae86245d35c82df47a4bb0d8c83b3f025ddf0933847737e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad95a6a5385694020425ab80ce7d75080088b7a86a6098b5d220cc6c2c8a2d40
MD5 d8df7473d107fda4ce6ad93d0d75c41c
BLAKE2b-256 be1f9a809dca65f38c8801b42ad3e6bb5e3bd545919b783260bfffa28e9f838a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 142.2 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c35ecc2f3ca6103dd878f58ffca873297ad54442dc11fdfed5c439a047a7ead9
MD5 b981a6dc80366e71b7530378fab36921
BLAKE2b-256 0b8e00587bbd516973e42c46edebde539e7bed5ecd767c5cdb0f02b36ea2e096

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 146.1 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a1a48e49c9f6a7928eb3f2387959010b82aebc3e12cad59bd064e3b46ba3ce07
MD5 ac867959ce8a22abfa64d8428d71df82
BLAKE2b-256 16aa56c5213947cd967219270b7637fec4c4b432c722ff94375395a26b30e8e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 523887152180560eeb45dfe3dc794140a4385847f4badaf1432ffd618cbf67ca
MD5 ac39d34bbe399848547b135e52b0db00
BLAKE2b-256 a7ec7e6bce085d375a96e3a6ac208d5473dc3795ede27ee71b4a069aa3a70210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 be663349e219d5100c6be56cf8c470918a86c809204f8a301dd64bfd0ed67871
MD5 9486664b8bf2324c6eb4c7a868f49ff3
BLAKE2b-256 10c720034c2594d346346c95ee1ed0d98f46ca5d5d786551e80278864a03e269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 518b7595127b1ee25739bd95a2bf47f4ac4ea5a7206c6b34fecb847ce7072f8e
MD5 63e2fdc6e48d6d55120e92a4d47ee9f4
BLAKE2b-256 3f3d72cd72ed3c3a669e9b9d04b4ebd4a79ee4787be13e5fd4719f28d833488f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.4-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 191.5 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.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8a400999282b4cc7c7d75b545deeac034b0c19e5b19ba48459ec1cc6115c6f1
MD5 4079ea762c56aff3be5b91dd86dfd20a
BLAKE2b-256 0aa8a223739c98e97f18eaaf2f246cf82635a945e306b15e3ad6a5ddef605fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 824b05f584feccbd53e506112b8b22b70d1864dceabce6ddf6746130b1141e32
MD5 5d4ae165dc80e67839785a39e9368350
BLAKE2b-256 f4baf3e2e938afaedb954025548a5eb993b76cb694c4e1fc30689316ec92458a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fb8516d1a404186caad4f45e11c1d76ccf4cb5261eeb7699cba2f7169e6923d
MD5 c3f503c39466392ffdb9f45dcf2df568
BLAKE2b-256 01c61da8ec0cb6cbb2fc04bbc30a921e262a1441ef85e9589786df3ca2d7d630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a537a56ff1adefcb4b495ec2ae8af842127e832292732b639ec16a88f68bbf56
MD5 d4319d5528f5f06f9d22138359079e84
BLAKE2b-256 b8d9c7dfedb39b50ee08bf7eba89e93f542074c23e94d2dce7fc55d2b87bb192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 874bf937b5b44f958646db7662693a72981a4d1c6b0ca6fc8b37c017da6686c8
MD5 82dbc8e9df749a454d1d2010c2788213
BLAKE2b-256 2cb5b6541a60a3b6140906cce950c5e26773af56d3a8f6bc505ced5518f92d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a747234266d8b3e7da05be8a9774852cf3162cd25e0983f6d017750890e7606
MD5 cf09ef0c0505cb2762b64bc94bce66ae
BLAKE2b-256 96b263b20fcdce691aaf2aaf081aac8a7c1cfdeed4b9cc6daaa4a39d7ae9bbad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8f000d00745909949d3f9c4e7b74a9861c48f6bc29bc49a0b382b78d7d84b739
MD5 917d0f04c44f028beef56275b5991da4
BLAKE2b-256 a376ec879732f66041932a02caada3a9a5987bce884a5aad3c7f2100c08508ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64a447f076d042297e02a1bd6070813c3378fd807c57739cb404048526140923
MD5 60606e0906fb7c30d0264cede3509c21
BLAKE2b-256 69ed4e4a6f5b7818e7cea071a451a105a0610888b95c916f9299a9461711bb46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 da79f0d37c9c75fef01ff53b1acbc00d06894ecaf784b4c82500fda67e778dba
MD5 76a49ec484bd865438ec975921932d4a
BLAKE2b-256 edf4ddabf465a221e0bd8b57edc4cb956498c9f72b1d6b7e9b8804c3b2d94a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87cb8db1cfc4e4af901bf71c25fbe2cd4c059af3a2ea59f633df34c2f99c2ef9
MD5 64d4261aefa4554dd69891f607182489
BLAKE2b-256 211a66140aef94cef2633cfaf39e05fd2f8b7e8af02b27b4635cd574578f31e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8a1d982293058d6abbe79d0bcc1894168666750624872c5138d3bd883f709fb
MD5 a34b7e7fb3b789086cc8c0c8b699a80d
BLAKE2b-256 f9c4fb41ccd11c569969e33d70b7d46cfc614a47ae705abbf1f0fbdb9d2bf83b

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