Skip to main content

日本法令計算の PoC を Python から利用するためのアルファ版バインディング

Project description

j-law-python

日本法令計算の PoC を Python から試すためのバインディングです。

内部では j-law-c-ffi の C ABI を ctypes 経由で呼び出し、Rust コアの整数演算ロジックを Python から利用します。

[!WARNING] PoC / アルファ版に関する注意事項

  • 本ライブラリは現在 v0.0.1 のアルファ版です。API と配布形態は予告なく変更される場合があります。
  • この binding が返す計算結果について、法的正確性、完全性、最新性、個別事案への適合性は保証しません。
  • コードの一部には AI 生成 / AI 補助による実装が含まれ、人手による全面レビューは完了していません。
  • 税務申告や契約実務の唯一の根拠として使用せず、一次資料と専門家で検証してください。
  • 詳細は プロジェクトステータスと免責 を参照してください。

対応機能

  • j_law_python.consumption_tax.calc_consumption_tax
  • j_law_python.real_estate.calc_brokerage_fee
  • j_law_python.income_tax.calc_income_tax
  • j_law_python.income_tax.calc_income_deductions
  • j_law_python.income_tax.calc_income_tax_assessment
  • j_law_python.stamp_tax.calc_stamp_tax
  • j_law_python.withholding_tax.calc_withholding_tax

インストール

pip install j-law-python

CI と publish workflow で検証している組み合わせは次のとおりです。

  • CPython 3.10 から 3.14
  • PyPI wheel: linux/x86_64 linux/aarch64 macos/x86_64 macos/arm64 windows/amd64
  • それ以外の環境は source build 扱いです。Rust 1.94.0 が必要です。

リポジトリ checkout を直接 install / import する場合は、先に j-law-c-ffi をビルドしてください。

cargo build -p j-law-c-ffi
pip install ./crates/j-law-python

共有ライブラリの探索先を明示したい場合は JLAW_PYTHON_C_FFI_LIB を指定できます。

クイックスタート

import datetime

from j_law_python.consumption_tax import calc_consumption_tax
from j_law_python.income_tax import IncomeDeductionInput, calc_income_tax_assessment
from j_law_python.real_estate import calc_brokerage_fee
from j_law_python.stamp_tax import calc_stamp_tax
from j_law_python.withholding_tax import (
    WithholdingTaxCategory,
    calc_withholding_tax,
)

print(calc_consumption_tax(100_000, datetime.date(2024, 1, 1)).tax_amount)
print(calc_brokerage_fee(5_000_000, datetime.date(2024, 8, 1)).total_with_tax)

assessment = calc_income_tax_assessment(
    IncomeDeductionInput(
        total_income_amount=8_000_000,
        date=datetime.date(2024, 1, 1),
        social_insurance_premium_paid=600_000,
    )
)
print(assessment.tax.total_tax)

print(
    calc_stamp_tax(
        "article1_real_estate_transfer",
        5_000_000,
        datetime.date(2024, 8, 1),
    ).tax_amount
)

print(
    calc_withholding_tax(
        1_500_000,
        datetime.date(2026, 1, 1),
        WithholdingTaxCategory.PROFESSIONAL_FEE,
    ).tax_amount
)

API メモ

  • すべての金額は整数円です。
  • すべての API は datetime.date を受け取り、型不一致は TypeError を送出します。
  • 入力不正や法令適用外日付は ValueError を送出します。
  • calc_stamp_tax()document_code / flags は文字列で指定します。
  • calc_withholding_tax()category は enum / 文字列 / 整数を受け取れます。

テスト

pip install pytest
pytest crates/j-law-python/tests/ -v

関連ドキュメント

ライセンス

MIT License

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

j_law_python-0.0.8.tar.gz (98.2 kB view details)

Uploaded Source

Built Distributions

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

j_law_python-0.0.8-cp313-cp313-win_amd64.whl (331.1 kB view details)

Uploaded CPython 3.13Windows x86-64

j_law_python-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl (557.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

j_law_python-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl (521.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

j_law_python-0.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

j_law_python-0.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

j_law_python-0.0.8-cp313-cp313-macosx_11_0_arm64.whl (417.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

j_law_python-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

j_law_python-0.0.8-cp312-cp312-win_amd64.whl (331.1 kB view details)

Uploaded CPython 3.12Windows x86-64

j_law_python-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl (557.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

j_law_python-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl (521.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

j_law_python-0.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

j_law_python-0.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

j_law_python-0.0.8-cp312-cp312-macosx_11_0_arm64.whl (417.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

j_law_python-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

j_law_python-0.0.8-cp311-cp311-win_amd64.whl (331.1 kB view details)

Uploaded CPython 3.11Windows x86-64

j_law_python-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl (557.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

j_law_python-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl (521.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

j_law_python-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

j_law_python-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

j_law_python-0.0.8-cp311-cp311-macosx_11_0_arm64.whl (417.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

j_law_python-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

j_law_python-0.0.8-cp310-cp310-win_amd64.whl (331.1 kB view details)

Uploaded CPython 3.10Windows x86-64

j_law_python-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl (557.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

j_law_python-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl (521.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

j_law_python-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (481.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

j_law_python-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

j_law_python-0.0.8-cp310-cp310-macosx_11_0_arm64.whl (417.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

j_law_python-0.0.8-cp310-cp310-macosx_10_12_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file j_law_python-0.0.8.tar.gz.

File metadata

  • Download URL: j_law_python-0.0.8.tar.gz
  • Upload date:
  • Size: 98.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for j_law_python-0.0.8.tar.gz
Algorithm Hash digest
SHA256 eb302c4577b7aba800f868c900909cb9cd803340b16a6935be731364acbe732f
MD5 0de7ef84957d4fbeaad74f209f112244
BLAKE2b-256 c9c1a9cdbdbe5a7888d3d26d235335ba212e0c4507d1efb5879a3542efcece0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8.tar.gz:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 189ae03683de48b2f3a62178938b9fdbd5e1b421d2d46b9cde9dce935e0c6c04
MD5 5fbdc5f02f5a858e76f935081c9533d9
BLAKE2b-256 cad00a661634ea7a097fc1cd8d7ed847d8434777c4afdc7f5f6c6a0f36c04956

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp313-cp313-win_amd64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a64288cc0a4ec167a0deb0469c02e172bdea79bec535e854b81b779ce16c77b
MD5 f76807a9781c192967702e19dbc1d19d
BLAKE2b-256 0e3e62bbf7c8a002fa280e8a85ee00795ff227dae2727b26486c67cfe1b8dc76

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d62f89a4dfcc4db75dcb4e6059b07d9a1ecab226bdbdd72d41385e7613e5b20
MD5 fba81fc1394fceed572abb262af507eb
BLAKE2b-256 b90674576a42d7c24b88127f776f23c934651ae211831db074a6b2b327fba418

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb421bfd7c15a56b2d446dacd98ba0942c5d791520cfad46f79f20e0cdd9a59f
MD5 f3092196ab9332c02084af0dff473ee0
BLAKE2b-256 1ab3865d1aef28d841e5c7a3130440e59f03e7c8b7d20c1540e73102d6c9e4df

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2577e7a4bdc842acb94cef922c5c618ea59ed4fd1f7d17390e729bfe0fb2f7d
MD5 b32ee3428f8a3f59a851b7ac06f8a6af
BLAKE2b-256 cc7f90404c99dfc598d457377d1040997e91cc20f64d6b29cf37104d55b2eed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8be740317221935565eac4f8095c1966ce1b9acb978c8e1d7fed713c779b308
MD5 6f10ef8a0183e09dcf903e98cfbe5067
BLAKE2b-256 8b0e6b2f60800b0bb7b3b218b4a79edfb0d247a342a130860aec5041591197c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5522b49d5f8cfb7019f41d570e456df1651c11ce7da1b43ee2c1d65713dcb836
MD5 6880c09b421888e970ff9036658c1b7f
BLAKE2b-256 72baba7e30053b513ecff5e5dc41a6d0013f8c7644d5bb0901af8454f0b52562

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f5bb1032b35864265b27402c76fe36297951df469dbac264c02943c12cc6600
MD5 4cc1b3271bf97b422c60691bc82c4b44
BLAKE2b-256 a4d59bf2a5877fe77f8381923016d01e0034374266dc773cd93e56d7d715b125

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp312-cp312-win_amd64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bff7e5c663e05828f9a0d2afa34713a3c662c68802527f54066884a825964b92
MD5 66cad9b602569bede7f2e42ce7c35269
BLAKE2b-256 1bbf23f3821417ba62e40132afba5478e8ca47aec3bb23999bf15429598912c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e6d95079d586316f80f51577c51f45700b163892a113b83b0bce25aa0ddfd92
MD5 42e349e6b645185f2e54cad2f288519d
BLAKE2b-256 f32e9998ed68657b237adec8a101a60fa5df6d2045e116e9aaac793cb27fa4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ec42c8a16165ef3ea26a89723d22e411748314767984758f4e281f33bc7e449
MD5 02f90f76d562e9bc21599da74395c3ea
BLAKE2b-256 ad30f199fdc297dafa0ba5872c9ea334cb807a27b39585023e9e621a9e70fba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0869c0be0403c90359879327daf8199fedfdfb2515eedbbf86e1a18da78db1db
MD5 849eff422ad31c52dfe221e6cb29950e
BLAKE2b-256 c11a74e28abcf98c6c40ef72c085f93b41755ea486a8b19f076872f119124764

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31e4729d3f862bf18b08b37f1efa623ac3b3d9d07814737715fe05b667df682d
MD5 5a436f886a3399f1dde1a79b53ad78cd
BLAKE2b-256 9c5bb6288283551a41ebbcb6d2ce50b3fa41e36b1d6db03ccd0bcf6976f8f671

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6faee4a7b2c35056c7b27a4a1844ba0c8a7d0ad0ec70af187e6139b1012e2f8b
MD5 bf427c5814f7122004bf8ae0286f8fb7
BLAKE2b-256 95fea6cac3c1d696abfab4f01161e266c22e6d4709ddb6a91ba42b29b8297c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b6629cefb83ee5226e58f25f77217c88f19d4b98e5dcec02f72b2ef2cebd9dfb
MD5 09ce75d866fec689ec88a15fb9d52aae
BLAKE2b-256 8a3d0799763662c502f1fafaaa6995a6abede87b536b2b7fb8cdd3889a6ad8b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp311-cp311-win_amd64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1c86caeec151821696057416f850533c2e7f618b346cb293397161cf094956a
MD5 08e31a0ebaf62c5411bc323287bed377
BLAKE2b-256 f956a7b5ecf688182feeabab9c230fa83775dd6719ab833edfbf0695a49c9e2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1910523172364e07c72461d5bfef2a5347d318d99349ab926e923d0feebec8bd
MD5 0f80680436e62b8dcaf8ee960785b918
BLAKE2b-256 c6a4f68a24a104415df95ae870bbac6e65432577230aa68437bcf9833efdee59

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7e3f4149a4b2714933b24c871d02af0985355ca07e3e99d8321fe3034ee28b4
MD5 bbbd3df2a0ff3effc2af7b86de35e685
BLAKE2b-256 d19dcb3d8c24d969c23efcf200842c7c7e8c3570c09e8ebf816f52331f73c97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be29e811d9f0e20ec03015e6173080da979c6e72488f1bfa38b7109ca96c2460
MD5 c179b88e84ad693e0cc0d1ae739369b1
BLAKE2b-256 483bc1941645ede088b13c18a75f4349a928fa5ec30c8cce2c2cda16137217e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6984aecb2062cac683f684ef2fb72a6e8cf745d511e0543b73a4643c58cd9a28
MD5 dac643d108220a103ee114869bbe85af
BLAKE2b-256 0db244cf167c274419d1b6120f705283db5894ffe252494304935183d445bcd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eeda88a2c1025edf53d4dd37f275e9cd25089c4c80af6a8ca5b82cc7bfd28c1b
MD5 c23bfc52efe14920a0d7ac0b92e63d7d
BLAKE2b-256 b9802d9bb768f5e2ed4a2a62d9925c7cbd1e8bfcadaa56fbe049b01052355969

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a32427c86b39f4346f2ec8294051d245978dcbb5b47f5070d011573a65a0fd0
MD5 1a4d77d0d82ed5832f46166009628b6e
BLAKE2b-256 279cdd295eeb08d3b0e0a9d2b84096d9118c4b3a0d047594aadf181116f97f19

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp310-cp310-win_amd64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3b59ed225c2740d18133b5bddb4ff38e1217b2395ee969d416cdff90974760e
MD5 7d565fa12895612c05ed903f80c11d54
BLAKE2b-256 669e1784bc784e7fbfbe53ebb8bcb84aa5287e41b60036a40e8d347c465c75e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6473e31b8b044e752f9d2953741cd0a76b98b5324f18e19473311ec47ac6e3f9
MD5 900068abb82be0b0ee86c79c8898202d
BLAKE2b-256 8e02d856d11e94de74330303fac5c3fc6cc4602df7b8d049af3de2984b2f6dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 048b70864858ebb4e764b808b90a43a3bbc7ca45eed2522d4de589e29f5d01dc
MD5 19b2d1113b65ce70f95c9eb9aac8f4b5
BLAKE2b-256 27bf63a6ef0095ed16ac3b643fe34f89879bf446fcea4e6f5ee18965f11987cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccb7b67c5e2b52ee85dfc327ff0ca69b3f8718689fba39a4dd89e6fcbbc6c26c
MD5 3a5476cf0144530b1a46ed9d8817a631
BLAKE2b-256 bcf823986add13cbe01c5c585a3b50ad2700d1d9b30225db9b7f3a11038179cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01feca84c9a97e22fa9a1d7306dddacd353490cd2022070300868d040af750a5
MD5 b6865e260d051ade1317994d9264158f
BLAKE2b-256 6c90e2784ae326c24a5f3b5bcc4d30742bd4441066cbda1a4d42c8cf32a0c75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file j_law_python-0.0.8-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for j_law_python-0.0.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59b871b2fb25a57824561618e13ee7441a315fe0ffaac9ed2164052bd0152b6f
MD5 e9d059fb7a682c832b4d9326c3ea30e2
BLAKE2b-256 669712881485f44259a186df55d9ae7c758aa641adec6571d1983d14e7103187

See more details on using hashes here.

Provenance

The following attestation bundles were made for j_law_python-0.0.8-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on kmoyashi/j-law-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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