Skip to main content

Python Interface for Jij-Zept.

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

JijZept Quick Start

PyPI version shields.io PyPI pyversions PyPI implementation PyPI format PyPI license PyPI download month

How to get started with JijZept

The minimal sample code as follows:

from jijzept import JijSASampler

# define QUBO
qubo = {(0,0): -1, (0, 1): -1, (1, 0): 2}

sampler = JijSASampler(config='config.toml')
result = sampler.sample_qubo(qubo)

print(result)

Write a configuration file for connecting to JijZept in config.toml and put it in the config argument of the Sampler constructor.
The configuration file should be written in TOML format as follows.

[default]
url = "***"
token = "****"

Copy and paste the assigned API endpoint into the url and your token into token in the configure file.

またデフォルトでは同期モード になっているため、APIに投げて計算が終わるで待ってから解を得ることになります。

同期モードをオフにして非同期でJijZeptを使うには以下の手順で答えを得ることができます。

async mode

非同期モードでAPIを使いたい場合は、.sample_* の引数で、async=False にして同期モードをオフにする必要があります。

サンプルコード

from jijzept import JijSASampler
from jijzept import api

# define qubo
qubo = {(0, 0): -1, (0, 1): -1, (1, 0): 2}

sampler = JijSASampler(config='config.toml')
# set sync=False
response = sampler.sample_qubo(qubo, sync=False)

# get result
response = response.get_result(config='config.toml')


if response.status == api.SUCESS:
    print(response)
elif response.status == api.PENDING:
    print('Solver status: PENDING')
else:
    print('Error')

非同期モードでも .sample_* の返り値は 同期モードと同じくSampleSet クラスです。 ですが、解が入っていない可能性があります(非同期モードでも一度だけ解を取りに行っているので計算時間が短いと解をもっている可能性もあります)。

解を取りに行くためのコードが

response = response.get_result(config='config.toml')

です。.get_resultの引数configに認証情報を記述した設定ファイルを指定するのを忘れないでください。
また.get_resultは返り値をもつ非破壊メソッドです。

計算が終了したかどうかはget_resultの返り値の.status変数で確認することができます。

from jijzept import api
if response.status == api.SUCESS:
    print(response)
elif response.status == api.PENDING:
    print('Solver status: PENDING')
else:
    print('Error')

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

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

Built Distributions

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

jijzept-1.14.0rc12-cp310-cp310-win_amd64.whl (188.3 kB view details)

Uploaded CPython 3.10Windows x86-64

jijzept-1.14.0rc12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (190.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

jijzept-1.14.0rc12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (190.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

jijzept-1.14.0rc12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl (189.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

jijzept-1.14.0rc12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (189.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

jijzept-1.14.0rc12-cp310-cp310-macosx_12_0_x86_64.whl (183.6 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

jijzept-1.14.0rc12-cp310-cp310-macosx_12_0_arm64.whl (183.8 kB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

jijzept-1.14.0rc12-cp310-cp310-macosx_11_0_x86_64.whl (183.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

jijzept-1.14.0rc12-cp310-cp310-macosx_11_0_arm64.whl (183.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jijzept-1.14.0rc12-cp310-cp310-macosx_10_16_x86_64.whl (183.6 kB view details)

Uploaded CPython 3.10macOS 10.16+ x86-64

jijzept-1.14.0rc12-cp39-cp39-win_amd64.whl (186.6 kB view details)

Uploaded CPython 3.9Windows x86-64

jijzept-1.14.0rc12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (188.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

jijzept-1.14.0rc12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (188.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

jijzept-1.14.0rc12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl (188.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

jijzept-1.14.0rc12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

jijzept-1.14.0rc12-cp39-cp39-macosx_12_0_x86_64.whl (181.8 kB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

jijzept-1.14.0rc12-cp39-cp39-macosx_12_0_arm64.whl (182.0 kB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

jijzept-1.14.0rc12-cp39-cp39-macosx_11_0_x86_64.whl (181.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

jijzept-1.14.0rc12-cp39-cp39-macosx_11_0_arm64.whl (182.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jijzept-1.14.0rc12-cp39-cp39-macosx_10_16_x86_64.whl (181.8 kB view details)

Uploaded CPython 3.9macOS 10.16+ x86-64

jijzept-1.14.0rc12-cp38-cp38-win_amd64.whl (187.0 kB view details)

Uploaded CPython 3.8Windows x86-64

jijzept-1.14.0rc12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (189.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

jijzept-1.14.0rc12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (189.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

jijzept-1.14.0rc12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl (188.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

jijzept-1.14.0rc12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

jijzept-1.14.0rc12-cp38-cp38-macosx_12_0_x86_64.whl (182.3 kB view details)

Uploaded CPython 3.8macOS 12.0+ x86-64

jijzept-1.14.0rc12-cp38-cp38-macosx_12_0_arm64.whl (182.5 kB view details)

Uploaded CPython 3.8macOS 12.0+ ARM64

jijzept-1.14.0rc12-cp38-cp38-macosx_11_0_x86_64.whl (182.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

jijzept-1.14.0rc12-cp38-cp38-macosx_11_0_arm64.whl (182.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

jijzept-1.14.0rc12-cp38-cp38-macosx_10_16_x86_64.whl (182.3 kB view details)

Uploaded CPython 3.8macOS 10.16+ x86-64

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1fc1666a1846e3701812583b33a5f83763f98d9ab6e213a7e5611d15e83abb6e
MD5 3018e42524f77984be29502999f1370f
BLAKE2b-256 f0bb85c5b8fcb849308053a48169f30c186fc94c7ef990e0a8f12b5b331628a1

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9b88e9eec7d061454823f57803127718a52db68236c130b0a8e721b9ac752e5
MD5 c66655751f47d621af5227f314f4e08d
BLAKE2b-256 7f2e668a657a09ae709fd9810daaecfe3918d8218a39cab2169d300844c4f4f0

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c535400934cbceb7a1b224676185a1927fd1034428d8d8a8f252586ba7fec68
MD5 17d73e59dad7d28240277ab6a36ce5d0
BLAKE2b-256 3859bc86a512c22c78b79bf8ff3277aad9f6de72a3c023a6d944ec7aa930d97f

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e84f7c5eab3ac20d87f1f8f684b20986fdffa3fefc743ffb8d84f0ed8fa7cfc4
MD5 2abd8258eb55f32eff1a9d78d9fd13d6
BLAKE2b-256 c1317481e5bf27620be2164587b2a7d9fefa5f5b0ea2edd13356677befab9943

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd71ce275392ee044a6af22a64f3a33845b50ebd6da03369eba612d50e4c7e08
MD5 5eca747193abe557279615dbc5aa283f
BLAKE2b-256 3ae16bed6420ec07a69a52528b9029a4b73fbc20deefc753d615c8203919d325

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0880cd24254e4c212f5de0ab8ceb90bc7a7fcb2dc3d9145b16ae87fa9ad78753
MD5 566c0efc4e14a5f4e26dc05f07fc4376
BLAKE2b-256 8a547fecb042ef57e21ea583a60cf63c5108763b08b35fe3c76ac6be6c0acd65

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 02d443b33b762a62385609fd5629ab1aa709d2b563f99981d0c6f4d450f26d19
MD5 cf83c79a68d5b5ca8ebb3308f1285e57
BLAKE2b-256 949ce671aaafaf5db93a2999bbd12de90ba867ce96e55c04503f951be8980fc9

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9fda22fd6b949f0ee17c2c214e4943c5608339c193827bca176c5102e8dba683
MD5 a9d2ed8031e7663e06c9b138fa11544b
BLAKE2b-256 0823b4820de59c6862efc0c7e7107fbfa4201e3eab573a4ca17b3849e69a9cf2

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d6cfdd836c5cda247b0d1e6a7db5e069af8b8962303fffc1f4a2995970a503d
MD5 c6276169d5a232d5dfe2d2dcb96a5a0a
BLAKE2b-256 39ef443beccf67e95690c2d96f2f4d2ea0e64080e4202131154aaa628d84ead7

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp310-cp310-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp310-cp310-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 16c3e008a5e6c117a2ae52bb14228cec237388250f7f5eb2fa0abe26feb4ce93
MD5 48e423644082d7786529744a7f9b93e1
BLAKE2b-256 5ebf0f88bb6429406b8e55ef2d63677c9094a0ae67bbf6e2048c1db610ec32a1

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: jijzept-1.14.0rc12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 186.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4986d021ffd7dfed3d26466697a691e6d96091c7c9a6ecb1c4e372a1f0831e06
MD5 ff938707f5d124a6fe39a22501b0707b
BLAKE2b-256 efae8684f1f1b2126b120eb5c2f363f31093881b3eb3e7e60602c527b9fbcd00

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 055f3224cf0a0478375548a483104b2c6cc80e8d3ad076ece79a4301b7ae7522
MD5 14dcf34b19e2aecc186d56602995e736
BLAKE2b-256 559cae6e17e8924254aa74dd6cd751c2bc651b83e48c2c3d9ea62428d995817b

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1383c7d58ea1584646bdf60e4f9cdd3b293c2ba2427449b04a78fdae2ee4d029
MD5 ee7b4515a9e9d0db24b4f1a11adc9001
BLAKE2b-256 4483563375c841bff2017ccb1e504f791a9f100325f68ae71a89232606da187d

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f039577b12b6a5fd5c4b28aef3e4a6f2bd95f750c34770cceb8652d775b80ce
MD5 9d7c88f84f45d8e1ff3df60adc72376f
BLAKE2b-256 eff0af5827af614b3ff4e2581666f412893924ba91649e94c7c25e6c5fac0ade

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 682dd31be2c1fd7d26839006b61d84a8a1e04a3b05257477f23a7131f35e9410
MD5 0a5f5a27ba87da9adc2f3c3ef0be47a5
BLAKE2b-256 5dcabc9e9f7085bf3a5608652b7d8cac239c19ae4aeb5922adca456058601a7a

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 f5f48583b05fe8ceb2a11e379de9cbadfab248ee1025708eb4321e8fd861263c
MD5 c382b087cc22f453433984fac807aa9b
BLAKE2b-256 4d7796f6f456ecbc0266cab63d4ae8d4666bc27e0396b0105f49584d9026b19d

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 b3c714013c39acd7a05cb0e4ded445a31ae87a391c20db23ed4f4a76aacd855b
MD5 e26e714a6ef4ff788f650f841e0c1af5
BLAKE2b-256 1155a4ecc58f059d425a6edf759f2b085bc96a4b38f970789bf1db5e49dc6eff

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 82db9a29a749cb5a034dbc4b520143a17d8bde721b5bee6615a355ebccfb537e
MD5 fb24ad14043585f3ca8532af975e7d7a
BLAKE2b-256 2ac09115962023bafd0870f37292226730fbeefe2a8339ee0d56d3e0d3ceb800

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aea5c912299cad51be0fc11e6c34cf0806917b66fffd8093c9160ca080670ecd
MD5 a753acc5a3b221e51760940ef11fe98e
BLAKE2b-256 54ac5e77e822835fea57d350a0e8d18704d6d449805c61520cb1ba87a17ef674

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp39-cp39-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp39-cp39-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 a001acadf5ef30eb8fd6bbfeae971128d84bea105fa6e018458ddff7e8356162
MD5 091b9bd67d76468b88dc6980e527d7bb
BLAKE2b-256 5560e1ae294c4f512a09412d58f8b4578bdd7f51fda1c4bd6543bcdc33fcfee1

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: jijzept-1.14.0rc12-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 187.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5f6ecfdf13905deecdb8c03cc1c896ec9a57eed462d4296eeb6c737dfcb3b207
MD5 9e66e6bf038b3de10d284ad36dfb490d
BLAKE2b-256 6cc82805ba0495a70bc36249a48d5a7127110e58156df0f2e89ba5de7ea4ce48

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 addee3d21061c31a4bcdd6fc06bcd77283a277bc3378d364d2278a600b6233c4
MD5 3c4e2f8c5c25abe3172b64e760707613
BLAKE2b-256 3ed336a3373c7cf520457e958ab15712fbd7aef9668bbac3048ecaa5e7ddc441

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8828de3e0c8a303863ecd92ae3a0007341efe52e7a00cb4407f0bd6f8325292b
MD5 5eabedb7f652f87948a62f8a7be6a606
BLAKE2b-256 a15c0a9d669d72da3a8dd405a978c0a2e85247b862cd748d6ddc1cc835e8a95f

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4edf114540abc547087f55912cff14af8572686c9ef13db0485d95bba412b3b
MD5 4c1f6140e7ef5709297ca6abab18dd09
BLAKE2b-256 552ee971ae3139eebf12071a7063ddb33b98c8f06fe4172e338b22c3cdaab783

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a13796db81b1ad1f114dea5676bd1f6dbcb4029b3ea4ebe733da409e1d6a644
MD5 4ca7ad1d5569fd9ffb8cdbde293d1ec3
BLAKE2b-256 3f4c128b34e9002d9fa2943c46ff936d4c26faeb9827a5556a85866dbb723fbe

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 8db07548925a5eb0263ca2796fce352cb82069bf4f5af01b8249b29e2f2de835
MD5 71553cf19492493172b554380766014b
BLAKE2b-256 6876d2f91e2aa001e3a4739179b667689df5e24f7822a086b936359e3c6d0c74

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 e92c2da867997b470321371d35d1aa933ac491d427376a9a73fe6cb6add2fac8
MD5 b68b8060d85fbbe792b250167db710a2
BLAKE2b-256 3e2c6186453d8ca828e98c0f8a675f104fb3cea9f6336777a5ccf708f4031571

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 794c67387fe947f0f108c78601ecb1517a6e942ac9ece915355584424bc967ae
MD5 c5aa50f31aa1c7178ea9b1888bed69b9
BLAKE2b-256 4e18414afb1ef12e1eeeae00b7ad9534f7e4cf8d6fce0a5a1807f60c5448b45b

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dddd873d68040d96fa75f1126b30bb0a6b4c245a5697bc150836de1807639a3
MD5 9fbf9388d680061e0300c68c153a5b24
BLAKE2b-256 dd9bf1fec5a3f522f5654cda6799bfec563f831ee4ce2f88de488a716cf8b0f5

See more details on using hashes here.

File details

Details for the file jijzept-1.14.0rc12-cp38-cp38-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for jijzept-1.14.0rc12-cp38-cp38-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 a1ee748cc9eddc12665f0c4c5812e938aadfefccc2ef924f468861a460a19145
MD5 9f1f8509ce0b05cb15994298181aba17
BLAKE2b-256 57f34aff18bcf8fb21fae759a8d2ea227e646f0adbd4b4b291b3f593b92c2f94

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