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.3.tar.gz (82.7 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.3-pp311-pypy311_pp73-win_amd64.whl (141.2 kB view details)

Uploaded PyPyWindows x86-64

arka-0.0.3-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.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (132.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

arka-0.0.3-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.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (131.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

arka-0.0.3-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.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (132.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

arka-0.0.3-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.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (131.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

arka-0.0.3-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.3-cp313-cp313-musllinux_1_2_s390x.whl (194.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

arka-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (133.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

arka-0.0.3-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.3-cp312-cp312-musllinux_1_2_s390x.whl (194.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

arka-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (133.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

arka-0.0.3-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.3-cp311-cp311-musllinux_1_2_s390x.whl (195.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

arka-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (133.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

arka-0.0.3-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.3-cp310-cp310-musllinux_1_2_s390x.whl (194.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

arka-0.0.3-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.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (133.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

arka-0.0.3-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.3.tar.gz.

File metadata

  • Download URL: arka-0.0.3.tar.gz
  • Upload date:
  • Size: 82.7 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.3.tar.gz
Algorithm Hash digest
SHA256 a31d9b53c458377513cb358fd308f0748c5839e0b065f4c00a14a172bf579fcf
MD5 4ecb1a170b9619848067e335d7d629ff
BLAKE2b-256 5ec3db49e9c4f86088fb0d4bca079e711b325e253a371d0bdd00834bd46e5f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8eb150f14d4a85c0db53ab2c3cdffee5c0f9dc03d7d1b7dd073b0905d9304624
MD5 6963b7d6956b3cc4047a0add1dc1ff8e
BLAKE2b-256 659bd48f161b0f83ca1c665e0da435439625cebc83d6686328cbe484b975d6c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58d3edc6b192d4ffe8c80af3931f486fa65e2fd70082cd6cf3d29f98393226ed
MD5 eabf5fef283fe3eceb2225a616c8eeab
BLAKE2b-256 ad9f8aadefc68880ef515a08f6a5b8923630bee0605bf045484557424fecc2c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa2d5cbcbc2fbd47772ba281cdfa37c952e01af1fc58b533425d491201a59deb
MD5 fc32335bbea7a493c8af8ec174b3b803
BLAKE2b-256 ab3740007bb0b51ae93f7203a13abf1175d364931cc72add91496fe5f9ce3589

See more details on using hashes here.

File details

Details for the file arka-0.0.3-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.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45c800fe1fa04ed78af7f6d2f1473bc1e273798254c5ec9befdd3761ea81433c
MD5 7d0aba2a057c09cdbf23011396c6cad5
BLAKE2b-256 582482441a819b31bcec2c462672eece287eea89ee4e71b3f31062b0a8903eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d22c42c40deca499621feab266143c9cd56cb13c1cdfb92c09e1eb209c9f3d8
MD5 bac0fb6ea3908bd548fa64734e510475
BLAKE2b-256 be4405d95bca4d867d6b444ffe8c7f472a03ae6bc362006cb7257cda980e1a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0d79f39f9cb4fd473efaf5ad2b69d4ec898f07a166bac611d976d4916401af10
MD5 da4ad54e1f2e443b1e5a43b4cdb03c5c
BLAKE2b-256 ee4631f1c8e5655dea98137ff470cfc9a0736e6dcbe986473ca9dc8504af952f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 503b099fa52fe049133f26ae7b85613fad1f3826c9bc336ce200dee1521e3ebe
MD5 1c24b4b0b3910966e8e13f500c3e723f
BLAKE2b-256 7d789eff54b75dcb1926b90adbd50882397f40f8b9ad48452d380d493b5c535a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da7478e773db67961c5afb50ef5831c5c9a7031dae567b78e34a3e9d493ceb01
MD5 88aa3e478756db3fc2df8b78262eba90
BLAKE2b-256 05d28d09530bc66a7187d5da43a04cbdb7c63717d75fa5fc30688e70212d97b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5efc82d65ae941cb752e7115ec245b50160b9953901ccf2f082666abd4eae2e1
MD5 3a245057b75b431d2cf9d0d6f18acfcc
BLAKE2b-256 85341f7f2f804ad1c3aad97d3169364382122e85de552e87c356e567bed5fb56

See more details on using hashes here.

File details

Details for the file arka-0.0.3-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.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 102a082a56abba78352f5734b9f74925ccae4a35d889200cf96c1b8fd16c7b74
MD5 c560e5e99852f39df0e33fffdedd9a10
BLAKE2b-256 beaad1d9c4ec646a118b43eb0bc5faa977a1b5033dd145f4a7ddf7140e16bd14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 058479f67e08819430ef1bb235d18c7503654513a8b600f4337b637ac5b1511a
MD5 11c689ce19fffa4af16fc5da4807a6d4
BLAKE2b-256 a9be29870f472aedab403b1a17ba3ef18698ea15a9dbf164e693489862592a10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1da3e4c148bbba72a5691f4536af61a19d15e33690416da1f9159b310157c57b
MD5 e035092ed90e674398b78d4905dcd54d
BLAKE2b-256 25c9dbcdce30b83b404a03bafa72cbcfb627fce7b7525829127b9d95319117dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 30c17c9af4ecee0859bbafbd9974442f7268579f20a09aea066aa5bddaf579c2
MD5 3ffaca6ccc9b08c7e3e4ec6fa1c5c3a5
BLAKE2b-256 5c9da4b20609508cbf17600749a9f7ebe8b80f2cb7b8f82d065d330c7dd179f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2561d1325158cff356e9e76eeea243ebd72fd8bdbaf98ac064cb74fcac385b5f
MD5 38bfc7b038d9b68ee1a2dc96fdafe580
BLAKE2b-256 b09dfbdc148a376836a2ffb45310e7ceafd74ce4e17d0d182e8618806425a8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6df690e16ed1bd299a3227994f6faf83497777cdae738e1a970edced704d611
MD5 95426a5dfeb7488e99000e4436fa6fa4
BLAKE2b-256 ed6ac00f0fedf43a1b7e473b7264d1a7ede073399dd2f83169f7a6835afd5cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6bc279c1375b3ed1fded9df3d5c280810b724da9ff95391c19c578505ee9a7fd
MD5 440761ee999a3fe9381c89c37c19e5f4
BLAKE2b-256 688dc1f0565b8eba45ce31b7ee9775cf23ee4f320a974f68cc3a39ba92bc2279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6761bd37b0e03da9ff69b10d9b2d08f83658bfec61348101adc622ef0a5e9c5f
MD5 e5516e75e575e93493e7e524899b5536
BLAKE2b-256 62e60ad95a011b7ceeb9e60a68af822f92907125aecf63772144d61d4da0a2cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df4186e8aed9863e325256c47903c16277285204bede7a1b9c71b02bf3c78b77
MD5 5ef478769293bf4dc07a90c7e7af958b
BLAKE2b-256 c1361c5ab2a5b42bbd63aa89edc13f1db3b9cf1783c6240661e24bf3f9c414f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46020023d8c06b859bf33df3c5fff9f25c7d8bbb4fc0cc14efb86483bd5320f4
MD5 f771b3ab9d0ac8ed009415b192c6851f
BLAKE2b-256 b6b653c2cdfbd9bbf5b5d2bb6a2c44f6c713f0bce4b57e6fb54ea4877d5e0630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5970a353d459f311cf2e4a385e87792c84f2334aacfe918a9e6a9153a936af5b
MD5 70cc8335180f7ce90d811edef0b02fa1
BLAKE2b-256 0a644126d11087b218b02bdab2a364e2e8557cac39d3e74d35b4d170a9332151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eeb09e472999a79abf6b7ca4cc10ac97dae3f831256fb4e4fc5ffcd5f8deede
MD5 47e36d4da9a3129b9278c78584c860e6
BLAKE2b-256 50dd56e70ad69cf33822f05eeabde96832537b9b7b209126a8c560b83baefbec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a07acd8e400d1f729be7b0887203afc1cf2133b454e969df542d613057a35ab8
MD5 fd2848cb1128a9b2db6b4d36d6d51f20
BLAKE2b-256 40b67dc61a88aee7def24a13b5f2cb339f739d2ccbee330227656240db7b36f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b1cf78e4a40e90582e712c41650a4274cfdffa4fe5c210840a453a6bc54f615
MD5 afffb4ce155c33b436d6042c64a5cfcf
BLAKE2b-256 7c3d3a10399f1dd79bbb8600990b69694e9d2a03c71f91d8ae9308cf683531c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9146e6f1544af9b2544203d2b38a0f2d9923432fe1c5fef8e229ca18de4580e4
MD5 982d3a0392e2559579e769a69ed478ef
BLAKE2b-256 c9d9b7dff1239f884986af0a2d8a77de7efa6ab4e083791c71fc8e10c798a765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e41def5cd9555049a86e28173f9bf002fa4186a3c8f08f8035286a784407f27c
MD5 d1cfec7c5551e00b0b4ed4315a19d687
BLAKE2b-256 5d935cf5c830e6fe272ff9b2794a6332b471d329afea86390eced1e75819582f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5326429619f0bb305f4acc34f432b1bde30a85a7bc28f5120b3ef5f0beaa2b97
MD5 a7b8ec8e14c11872e5c37c2d5708e384
BLAKE2b-256 00c448894089405705dbd7f68fbd035960c4beed825dadbad65aeb40b1e14550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69e1b9e5c9400afbe259ccf591787140fa8850f6fd2c912193f399d00d801735
MD5 ee3758787efc3a73da9e2426afea5c0f
BLAKE2b-256 e1dcbf2a8940a9418ba2844a5ab84f64a8700e78be45581377bb881f6ae96a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c6e5886712c817b12f0562d516a8923c028d9ffe179daa645659f565fb5424c
MD5 7086ecce4c73c6c065ea626b42fc865f
BLAKE2b-256 4fd3fa786fe343db9294b18e775c67fc57a90ca2af9d5fdbe443b4aca21b9629

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dcc0139d39711f181c1fd352be2458d3feb291e667635df2ba0ffd0a2937110d
MD5 c7c2bb44586bf98e0ca468ac52f340a4
BLAKE2b-256 f7ae0fc23d7c3bb85862a06826ed17395edc9b99df7ca7027e1288b18482e84b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8a558de3916a38b4f2555859d9f25128656d61844994bf38999056f991b0d3bf
MD5 bb9b8ee6bdb274abff70d6596bc3e75b
BLAKE2b-256 eba80d135ac85f8f69c0797607d50265e4d9faf98e5fba400a8cd54d291a5923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e55ca9d3f664123ff42a6e45eb6600d53b0752a92ad0aaa48eaa838b6e1add6a
MD5 946a98089a4de84bb86a495422d552d0
BLAKE2b-256 d4f26586289f74db64d98e061a3f851f720ee6e866544fd1877b1392659aadfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 90b4a9e4d3fdab04115807d9a81d24f95ddcfcf822c0874c9be40862499efee6
MD5 0396fa3e4b39a1a1605f58964040c7ae
BLAKE2b-256 0c5db08b1125a48e0be4badd51a982f7e13acca7ae96f7c0e60e083da05db24c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c00948dcd66473598986978e9d871c3b894576c399b9572e06f7cb34a6d6aeb1
MD5 a06db4a293b3906a9268b446c4387099
BLAKE2b-256 9f3a657411060b3162f3a063c89969728383291e98eec88d3c5489516b65019b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f71b1e02e21b220e9ead954ea85fd7119556067aba0ba5fbc9eb9fd778cb69be
MD5 ebfb01cb0d19dc02cf0edbb5ec0ab0ba
BLAKE2b-256 4b67cc88144562a4d6361ddfb5ef3610f9caa997f8ea48acbb3fe013baa44a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 02281c32defe229a7f38f92f324670bbfab7678fd1fa2f23431cecd90ab5f413
MD5 ca6e555c81a91388c134dccb1bcbf26a
BLAKE2b-256 b56f1ef008bc9685c056bfa74d71de05420a987996e664b23aabd4ad005facd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7b9c2943694063e2f34c66d8672bac5ffbf4f31e97064f2c48a73c3f76e575c
MD5 b120a32b9f53f00f7159e73d489103ef
BLAKE2b-256 b9518201855bf011d0b5d5acf7903517c1282a1e281bafbb8bd6f0f4d20abf32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c5ef6076e263773ac47fdac8537c7dd04c6de2f88572b3b8480255209cdc2fe
MD5 2132a2782a2afe3cea00feb686f35d93
BLAKE2b-256 10dd5b7bc2cf1fc096eae679e1928dec1a283e773f79016cb3197ee52a0a4a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da0f8ebeb2765e7fa34523c2002ecf0121c91a025780e8b888547efdbfe44b6e
MD5 c51382e47afbff3c609d4c11257b1b61
BLAKE2b-256 61b1af0290c761440d31820eed1962fc387a6b7cc9963929bba48e3bd74255c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82554c62e10a9bcc19e9f5d0566f46b151c9f152b37ec2e29c7e03d2eb922931
MD5 3b5813fdeb7cefeca067ca4c41b57c6c
BLAKE2b-256 2679fedf4fc7535aac0f1bce8a609bc4f6bdbe73a0a66bb27a85b64e14518cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aca9015a3608299ba2faf4af2ca9d0c7dabcba37179784a51d325a727e585e3d
MD5 1a5532a73e563288c409ee238fe8bf6b
BLAKE2b-256 994d01fb836a30bda1d597fa27b79a9155322718fc130b692b9df58bacc537a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd158725030ec7a978c61d1ab38192e91736b5fb5e056cb97fd65298d0ca5438
MD5 8bf9e2ee99a666cc15b708c6a12e7915
BLAKE2b-256 bafe345a039ad25eff2f7835c45f501b8259f114537a62f01849d2b9b1ac0917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd8cb3c4b90b93055ff9ef725b3e866d8138c3146bf3ac1cdbfa15530b709698
MD5 542fc1c726aca798e312a445879066b0
BLAKE2b-256 6fbac6532b40b61bde076258dd5758e978695f72553b0d859c3a9334c662f519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54c36cfb741d0c3575179dfe2cd206f877fc0ab561052c9cd14d2b20f48886d4
MD5 5a207b1872938d95535a5cc6b5d13f59
BLAKE2b-256 cc5756d3567005871068678e11ebcb398af35b5a2b2c525ea8cdaba9176a0775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 80368bbefbb38936a4e36ca66099d3141762e08409c40d7f7b95695f35455a7c
MD5 7756167670ee8932acd49f7f7f55d640
BLAKE2b-256 491f84e1d20b1ff840d6fc1024024e7b00adfe2409a994926ee9bed38b2645b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3778079a14195e06fff7ca88f4c4c8a27dc02af389432d53834f91b9e87ad75
MD5 5a32f7fe7d76ebcae122edf6c521ef5b
BLAKE2b-256 c3b9cc84d15c357cbca04a3560a1445fb45d08f32c95a1c88488b651b85d986d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 34fdf271e7ca6339b38d132e344556e3943ae6f1544956e0a9950b6297f2aff9
MD5 ddcf2c608615eb2011355dbe917ce5ff
BLAKE2b-256 2813c4dde05b57a70e55f87b8483b8c1409b42c5fedb0dbc6a4ef595dab3fcd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 004518b1e6f8aa7bd4565025229071c90f405ba89e150e0ef9729c25956d47c1
MD5 96ad1d6a73d5d6a5779201fb35c862a8
BLAKE2b-256 9cfc1bc47692744406aa0f6920c56dea10f625029d3469d1ca0a4bd3c0cca084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e50c2222d9825949c9af3bb5516c5262e202de6c8fd9c450f9bf7bb52abdcb04
MD5 15e75247837b4e5fe278e3fce665b012
BLAKE2b-256 422abeaa38a4a456e198ddfffa3c6b630ee2897a6e0bcc8562996c57f1d50b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 df896e4dd566c2eab043f1f0ebe50153b7c4c6578005d353013553581c4f5f54
MD5 64c8f265531a58f1628e5551fe9e6ebb
BLAKE2b-256 9378231f829d58c223968786f87e974aa8d6bb1a4fbe1818b4e9f4cb13fd911d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6061e4b5c923119acb55a5ce123e750ef25445c7d57db21b9da755aa3fabc0ba
MD5 4725e68e7de70d6952883fbfe6ade8d4
BLAKE2b-256 70815d51be12453c14bb99c7c6fcc94f657f910fe2ad2cb256ea68a05745ade8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d424b53b12a5c21362b76c9964df3735f44e072d815fe0e9d5035d0ba3e9779
MD5 6529dc6ba52b6aa403467660680a62b9
BLAKE2b-256 e8b67e5810c254e7bbe4a81b7cca7f68cc5a32311ac989a8fb12bf0bde1fb873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85fc01af8661d586c6dc68a928ae37adf4af41eee32303bd557e956478cccc11
MD5 61e218d1431b64cbc2b2f37b18eac3ad
BLAKE2b-256 3ea2b74e60cb6300b2be7e7cfe7c7a30c6b341ae7cae94d0955daae07d5599d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5ae3d0aeb35b55dfb5a686a3a6be40ecbf0334bd1b68b6d7071d777a4d12a20
MD5 ec688410bb21a6735f9605f076b60481
BLAKE2b-256 d6e8340ba2bb2448c5313c3ffbca2292a06d33db34a08e3c535235d54885dde9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08bba5ce8c90756f70a9cc8c684b526a84857921ea862045a2ecb360688c6b2b
MD5 21ca7eaa6e3b58acd90e2d5cf4a7ebb5
BLAKE2b-256 63340d07b60e81d47e99d75933ca2cb286a6d8e44d5d15a7fa6983295aa6f578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbec438e4a1b602462dc6437f192e00a5a7c759ec3be2f6478e5e03507253395
MD5 975bce6921ef8988129a0cf45cbcb5ca
BLAKE2b-256 7665936eb84974d3bd13a72f2f2da053489d7ed785d34ac6d6b5afba19b5b315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e3f4015c27ba62eb6940aa6f056470fb15c7c79d22fb0deb03f01bdadc0bd6c1
MD5 5f89eaf35962396af8aad892ca97c3e8
BLAKE2b-256 8f59c96e740646e1a01d0449a489f4ce241235a93035d540b3e1527d13082daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18bc442f7961ad8dfd7fb742bc79c046bf6ee37cd6afbc33836d22eb092c3972
MD5 402cbfcee595c1b06520a532afccf85f
BLAKE2b-256 dd960eb4181c294a59edb54eecbdd1bc86573a075293c4640b4aed30b3e0d8fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e77e7971f980145e747f36ef0edabebd725ad5b44be118a9e66e4e89c671bcd3
MD5 014d7d23a474387b1c949de507469c7c
BLAKE2b-256 991d3f5f55e6f39c00371d895a6b972d166cda7a8436c6823c78d6db701b9b27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9095006d33b1b9ec805b4cf5c137a7e374f2bfb8d8db3ce30b6897b4711b1f5
MD5 d50a7d85179a7b5f7c6fe039c48ca979
BLAKE2b-256 356db907bd7b8550e2352373cbd51ed8eae388c218d9bb50bd83e36f24e1b83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81c46b38f4231b1cb13608d78fdcfa1d124b2ece22cf886eeee8b7c13141c42b
MD5 49cd37aa7ef242f803c0c3ba12478c27
BLAKE2b-256 21957010c5764be5086cc12ed4a7cf48702bfdb215115a6e40de7cb03e3fdceb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3374bb7d41ea8b6d1a545696b42dbc27cd0ec5b6811486f57a3d0dd7b5e3f78
MD5 3d08cfdb308889c645519f0b541f8441
BLAKE2b-256 b533ce09e781b79841106ead82f7816b05f2a0d109661c75a4f1f83c818fdfd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0917f2e073b8f72ed5b7c31921f84954e2af884846d0c53ba2288648a62d680a
MD5 54ff7b0d647fef8e663e5160b3895c26
BLAKE2b-256 0ceeba14b4c0169f7cc346300afa83309877e10cf6e2a461c8e7e69d61de6436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3c94c76e1eba1117c43427e68ff35263e29c72b93e8a689eb42f9bba7aaebfc
MD5 a1b9d2530fa2152eb7b03ed18f7a78c2
BLAKE2b-256 1ac14dd18453bead22d315916bd64234904ef2389fc1aae982606de39fe1739d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6a565c1d3826353be5133d61014871915babdaa34862eeb53c7b2abf875b56cb
MD5 fb41324d13f06432703d47963153fa03
BLAKE2b-256 ae259d34e5a0a2e38441b89aa14340dee463895e8c73f7e46d1bcb6345989003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fa2d548d06bd89aa77c523be76856e53b3001b578909d4f9f80d8f980316009f
MD5 4229ee2c01ad6edb22c1016f9c0b5fcb
BLAKE2b-256 981c8594cd866a064651e7736977043d7b323d3e1573dfdd2f0d3a4382a17fad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: arka-0.0.3-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.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 84bd7ed28784e99a828ab7908bf5ca6ce1f77de05c294cc00798b8b0cf6d5947
MD5 1e9bce9914d404040b88aa47e8ffd0ac
BLAKE2b-256 6c12180de881b2e551baa77cc47c67cf2d7dc73992cc60d46e11bba8a9f8d232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1230f4eefb7a10e37fa8a97bcc7fad7a59fbbdfa32c6051936f8258e0d8d72ce
MD5 055b5e3f0c419ab99ea3edaaa732e654
BLAKE2b-256 c49a9e5bebe118bb230aae21a3bea4d11ff67cde83acf9240a66fec0b27bd5ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b6fc917321f5c860dc26fd3ac486539e61f1b919a8ead98d96593a0fdc51cc9
MD5 a2925fb67d581f2cfe75122c38dc55ed
BLAKE2b-256 3f0a7ecbc3d4204d89376eb34bd970fdb4d641355752b1e9368b107d28292135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a10586aa8a3cc1ced1268f000336fbccd70e5e2a4c1bfed409f52f36817eda6b
MD5 5d36fc90bc169157fe7a06860c332e2c
BLAKE2b-256 d001eb15002da61ce1e974c1fb8687a1df689ec2954b6601c15d574806fd6ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8fa9f1ecb96a79760956458a06569c6880e0492ea8d1c923ae3abd2fd72a3a5
MD5 9ad5f6316f9fc70d14e0493854edc5d4
BLAKE2b-256 29481676d07b82b7099f5403e77d08027cc7e08908e8447a8ca82e6bd1258fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ee3a2c797870662e7aa15d336a1f71f52ecf41c0538e6db0961a1eb2cbc987e
MD5 238ecb2cc7dd3b462ac3a8c7c38d5aa2
BLAKE2b-256 770563b470933166600f270a6da3e6fb1c08af1b8ff7eb26e524d79ab67c0d0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dc3ac0814759facbc7189dd5a62b570b2c08680e1ab8eb7d710ead97ce96e745
MD5 896892b3c68bdb620809b37fde6ff992
BLAKE2b-256 4fe1fc5f92dbb21eb8ab6d862a6d4b269f4b6ae0f884e23433c5ffa33dbc6ac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b860e9fa3289d42fcb24ba683498d857fe3eeb9d34e0f1b310931db7074c91ee
MD5 6942c4cfad1dfec1c666f9ac3b3097c4
BLAKE2b-256 ac63d6b383595edbc836e5b7bf007e1eea955952d68e221da30154cc64df4e71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd30598f8f809c3a4063f3b6b739f5cf587422c20f94dbebb365bfc75bf49c9e
MD5 121aa0bfa4e8b06649913bd8e567f2ab
BLAKE2b-256 8bba04a2ccf59f6ee407998bd53afe70026c30a6b9b30379e813010b3a3bdec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 047cfcf4c0141071e5a64c09f3b46f10a747f5bd018ab22c99584eb857347451
MD5 a4dfe3f9957d32bca5bf68d50131976a
BLAKE2b-256 debf2668ddbb798cd27ff1ca5713cc19df4a7e6a31d3b1912d27de4c01e4f5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for arka-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 563b6f2d5c1e83225ba33b974d842905f1b0e63e10398bd9f1eb3e5392d78c9b
MD5 a225dfcc01a91de0055a22c2854bdd9e
BLAKE2b-256 f049f052875927659d651a80a1cee8aeb7bfc990598846be7c329da9a0c4f7c9

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