日本法令計算の 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_taxj_law_python.real_estate.calc_brokerage_feej_law_python.income_tax.calc_income_taxj_law_python.income_tax.calc_income_deductionsj_law_python.income_tax.calc_income_tax_assessmentj_law_python.stamp_tax.calc_stamp_taxj_law_python.withholding_tax.calc_withholding_tax
インストール
pip install j-law-python
CI と publish workflow で検証している組み合わせは次のとおりです。
- CPython
3.10から3.14 - PyPI wheel:
linux/x86_64linux/aarch64macos/x86_64macos/arm64windows/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
関連ドキュメント
ライセンス
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 Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file j_law_python-0.0.7.tar.gz.
File metadata
- Download URL: j_law_python-0.0.7.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
695e2b85751c1b8683dd26b0f8f8dde2b909ecea6a6d1f2368123a191ee2e1a0
|
|
| MD5 |
b50737393149e8fe2bbc0f586bb08d43
|
|
| BLAKE2b-256 |
19685143f7971c16c43280508bc559644427f5f757a1051bfd7bd87bce94c4c2
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7.tar.gz:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7.tar.gz -
Subject digest:
695e2b85751c1b8683dd26b0f8f8dde2b909ecea6a6d1f2368123a191ee2e1a0 - Sigstore transparency entry: 1160805744
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 330.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1e6b7d6b3cfe44399464c46d55e12afc3b9ca753ba23f542bcbfae38edd9dbf
|
|
| MD5 |
051365c15171163edcdf450190773542
|
|
| BLAKE2b-256 |
cb05838ad3ce51383c6b60706ba27df1fdb067d73073a923cc925cbce0e69270
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp313-cp313-win_amd64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp313-cp313-win_amd64.whl -
Subject digest:
c1e6b7d6b3cfe44399464c46d55e12afc3b9ca753ba23f542bcbfae38edd9dbf - Sigstore transparency entry: 1160807398
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 558.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
462cdf03034df5e3ee0024a31dfe7bed98c3be539f7e633e913193fce9e11e5a
|
|
| MD5 |
699770594a8d1116ebc0d4dd6322dd97
|
|
| BLAKE2b-256 |
49192c516c6345b18badea2828bc33b3d29859d0468d2c50284eb8886a55b876
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
462cdf03034df5e3ee0024a31dfe7bed98c3be539f7e633e913193fce9e11e5a - Sigstore transparency entry: 1160806927
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 522.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcae2ec608bb465a0ed70467c126b599fa64920e5ab24b52ea86fef010aa2891
|
|
| MD5 |
0c0d194cd25f7cd6add9ae9f03675435
|
|
| BLAKE2b-256 |
9546dba9886738cded75bbb00dab064331f91e8aaf2743bbcbffc5a6c55a8c81
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
fcae2ec608bb465a0ed70467c126b599fa64920e5ab24b52ea86fef010aa2891 - Sigstore transparency entry: 1160807699
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 484.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dea89a5f5b3d2de09e80e92ceb3fc47958dd2c829cb9af55c12e34222a593191
|
|
| MD5 |
1b767fba48d3d3b58ac0df4fb957554d
|
|
| BLAKE2b-256 |
70c69e8b8b9de145a81b972666bf7933974831b6a7062f00fc1220c457a26b48
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
dea89a5f5b3d2de09e80e92ceb3fc47958dd2c829cb9af55c12e34222a593191 - Sigstore transparency entry: 1160806758
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 457.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f2a7d42334b1f25c8c7f183deb65471f1d85ecae4d1731fece86a8c0b5f17a9
|
|
| MD5 |
90b49ca46f8e8e1727f4066c85cd7366
|
|
| BLAKE2b-256 |
0f1d54d98c1351213a783ae4f13d70bc2f9f684b9a8238670e3c98bc721cb2f9
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
1f2a7d42334b1f25c8c7f183deb65471f1d85ecae4d1731fece86a8c0b5f17a9 - Sigstore transparency entry: 1160806621
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 417.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4ed008bd4ad82d3596cd98468eeabe56bf3f95a3978568c2026073bbcbfc025
|
|
| MD5 |
9a61f4ef75befc9e92031a41b16dcd3b
|
|
| BLAKE2b-256 |
ac9585f1ee98a087007c307f0a3464c43011d7eada0333ef27a973032b07d313
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
f4ed008bd4ad82d3596cd98468eeabe56bf3f95a3978568c2026073bbcbfc025 - Sigstore transparency entry: 1160806148
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 440.1 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b23690be08ff95355efc1986162f1a2d081d0b54be57f7c8e989237a4d733c2e
|
|
| MD5 |
cc7852db0a7979fce42749f8b703be5d
|
|
| BLAKE2b-256 |
93d4968b486d4cc2b71c3f16bbfca895d6bf58469f49558329657cc14ada94f3
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
b23690be08ff95355efc1986162f1a2d081d0b54be57f7c8e989237a4d733c2e - Sigstore transparency entry: 1160805981
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 330.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58a265f5fe07c9488b91e41db20456fd274e599d96732e3de5747215ea6cb090
|
|
| MD5 |
d6ca4edd452215086c9167b486e5497b
|
|
| BLAKE2b-256 |
de93ee216f3d27b6ed70b33c597cf310dd8cba9715b096eba43617d955ad8530
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp312-cp312-win_amd64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp312-cp312-win_amd64.whl -
Subject digest:
58a265f5fe07c9488b91e41db20456fd274e599d96732e3de5747215ea6cb090 - Sigstore transparency entry: 1160807053
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 558.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4db2eb232b7d709bdbe1894d4d8d524651adff2a743274f03b205cd1b36fc07d
|
|
| MD5 |
2b400a0fe1b9e324279b34b036334f9d
|
|
| BLAKE2b-256 |
d42fead0fe323c78c5b3a351488d3c08c2b17a64cd5a8f20d0d145c7a0029198
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
4db2eb232b7d709bdbe1894d4d8d524651adff2a743274f03b205cd1b36fc07d - Sigstore transparency entry: 1160806693
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 522.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5d160fd6bb2a6817b5a2eb4305e2cd2e0f10c2ad49fcc2670ecbce9bbb84e86
|
|
| MD5 |
47920c579a2bebeeb0653007b5275fd7
|
|
| BLAKE2b-256 |
738b3741be71e718d2af8cee6baef9609c50500147a34c73d065fe453a094e67
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
e5d160fd6bb2a6817b5a2eb4305e2cd2e0f10c2ad49fcc2670ecbce9bbb84e86 - Sigstore transparency entry: 1160806851
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 484.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66366089c4e065206e955d330147bfdcce21ab4d59fa58b8144242cbb6135295
|
|
| MD5 |
8a876c7da9c6a7827ccaab0abae2f3ab
|
|
| BLAKE2b-256 |
4cb90a5561ed02e1678b337fd46852bfcd17b600bd79fa76398feddcaba0532b
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
66366089c4e065206e955d330147bfdcce21ab4d59fa58b8144242cbb6135295 - Sigstore transparency entry: 1160807558
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 457.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e13e5cf6809a1704389b23a9d2aaafbd3c8ceba9a8348b87fc03f1d75475e492
|
|
| MD5 |
a6412ae839016e04cb74e7721d3a7f9c
|
|
| BLAKE2b-256 |
83c85a32e901d5bf8c1b90f6024e391828c4768e8f1720423857c82566569851
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
e13e5cf6809a1704389b23a9d2aaafbd3c8ceba9a8348b87fc03f1d75475e492 - Sigstore transparency entry: 1160807246
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 417.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f812a07b633ba3f80fc087c53f8628651e9dd97e7c71de9231fc7b26f6ef72a
|
|
| MD5 |
3bfcfad87d90cd6557df45a63805c7d5
|
|
| BLAKE2b-256 |
50a5210bace43cb0f290e63de9dfad80c3a623fa29d599b2083c123a07d489fe
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
3f812a07b633ba3f80fc087c53f8628651e9dd97e7c71de9231fc7b26f6ef72a - Sigstore transparency entry: 1160806083
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 440.1 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e975868d89bb5d154b9135b736d4344132ea32d2dd927f02944333897e04642
|
|
| MD5 |
696cc7e02c6b9cd4740a2bcdbecec959
|
|
| BLAKE2b-256 |
b839c01a9c21ff5e97004645ac77823c00e042275daa98d32f96024448bc945c
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
5e975868d89bb5d154b9135b736d4344132ea32d2dd927f02944333897e04642 - Sigstore transparency entry: 1160807110
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 330.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a38ce7a0660906b9240a10d2f3dedfec649f9a00706c53d8adbb02ad061ba3e
|
|
| MD5 |
9c96285c26470eda1ebfefd9818b1381
|
|
| BLAKE2b-256 |
47cb998a1fc86b18db6a5bc886aef6293372006f77139bd6676c2d08a17166aa
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp311-cp311-win_amd64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp311-cp311-win_amd64.whl -
Subject digest:
7a38ce7a0660906b9240a10d2f3dedfec649f9a00706c53d8adbb02ad061ba3e - Sigstore transparency entry: 1160807316
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 558.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bb2e7d5c5a5bcbd764235ea550c719a86688f2c4cedc004b14d85de6d287e6d
|
|
| MD5 |
69ea2a22cc15586f181eaf48afa56762
|
|
| BLAKE2b-256 |
8e87f75cb2c840e867a7dbe556195eef8a6bc22af918f19f800c80fd8670fb03
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
7bb2e7d5c5a5bcbd764235ea550c719a86688f2c4cedc004b14d85de6d287e6d - Sigstore transparency entry: 1160806375
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 522.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66a8c75d7f65b6ca362a8e8d31be6c86b1abceb7b76b25cae22d08e4be1d4a82
|
|
| MD5 |
24274992d3ef52f804e225e07039183a
|
|
| BLAKE2b-256 |
c6eca7b4df08f34f744c1f8e5b631b943a8def8213ff66a608c47a1dae5a1a4c
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
66a8c75d7f65b6ca362a8e8d31be6c86b1abceb7b76b25cae22d08e4be1d4a82 - Sigstore transparency entry: 1160806552
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 484.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee5a10b9c14f4ba265b38c49c3e7f2f4346f078b6b0db5d4e476f0e9fbeb98d5
|
|
| MD5 |
a1ada973dcbfbacf4dfaede6d3e1847a
|
|
| BLAKE2b-256 |
e020225b14c8a34c7f8470bd02988edc5617d723f3f4371007bf9bbaa8e54b3a
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ee5a10b9c14f4ba265b38c49c3e7f2f4346f078b6b0db5d4e476f0e9fbeb98d5 - Sigstore transparency entry: 1160807627
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 457.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d9e5f07958af6aa174469c549aa73ae5c1410229cde11cdff07665ea4af2273
|
|
| MD5 |
60366c1ec27394807f02b0c3795f6398
|
|
| BLAKE2b-256 |
ffd3db709937b187995c803e9cf183f176cb9e95ce2aaa3b7ddae63687c89c9e
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
5d9e5f07958af6aa174469c549aa73ae5c1410229cde11cdff07665ea4af2273 - Sigstore transparency entry: 1160807769
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 417.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2f416a27ea9ff77bd2c7d82c5d64b1df250fac9957187ae3e40cc51431e848d
|
|
| MD5 |
0689f74e5870fb5b646301a4b6e76ca5
|
|
| BLAKE2b-256 |
a49d200dfa8595ed3563ef3a400e3b7ff4d5fc4217e5b6bfa82d601ca25cc406
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
c2f416a27ea9ff77bd2c7d82c5d64b1df250fac9957187ae3e40cc51431e848d - Sigstore transparency entry: 1160806491
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 440.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ab54905a8a6fc17e7d432dddd1385d66d20c89d7ded45e0d285365b64a085c5
|
|
| MD5 |
34b74ab92036f7cafc5e5855dd74a90a
|
|
| BLAKE2b-256 |
b1edd434e66296591035cc350380c910f66cc954cdb17dea2f59ae9b3d5f2b10
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
6ab54905a8a6fc17e7d432dddd1385d66d20c89d7ded45e0d285365b64a085c5 - Sigstore transparency entry: 1160805901
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 330.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
531276484df83c5923088c252cf13a7d71d260bab5a519b6ec780a0aac3fe839
|
|
| MD5 |
3f28b33646643e3b19012f9c1c98b2e2
|
|
| BLAKE2b-256 |
257ff44a34f3f9492b4425931743e00c29595787ed150e998e0f172b9147d912
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp310-cp310-win_amd64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp310-cp310-win_amd64.whl -
Subject digest:
531276484df83c5923088c252cf13a7d71d260bab5a519b6ec780a0aac3fe839 - Sigstore transparency entry: 1160806233
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 558.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70e686215180545bc823a2060a97a99117a8d46d1cb3efd05fe89871b775b7e7
|
|
| MD5 |
e115375e00080f2884af32c17e4adb4b
|
|
| BLAKE2b-256 |
3261adf611410c9c2628cf8dcb9b4ba65e87da15566dbda3ba36df5225e51628
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
70e686215180545bc823a2060a97a99117a8d46d1cb3efd05fe89871b775b7e7 - Sigstore transparency entry: 1160805820
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 522.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51f3fe1e238f428e1ba70e0df2cd58bf779509c74d4d6c4ad1ba86a0ad9e6ce9
|
|
| MD5 |
a0a17cee2a47d2bb79eb969f640b6f4a
|
|
| BLAKE2b-256 |
7be4214bd42f3ff649af91516def04e86ffaca45abb9df7255924d4b98a55a6b
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
51f3fe1e238f428e1ba70e0df2cd58bf779509c74d4d6c4ad1ba86a0ad9e6ce9 - Sigstore transparency entry: 1160807000
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 484.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
708a178673018054c0c76ec5668a66780d2e58d4370cfb26d90c3efca4934fe6
|
|
| MD5 |
0c52f3554988941c03c3b084252a9368
|
|
| BLAKE2b-256 |
98226f71f1f9b3fbfbc88427a2e84dfbb396579ae5e066e1da77134e717dd7fc
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
708a178673018054c0c76ec5668a66780d2e58d4370cfb26d90c3efca4934fe6 - Sigstore transparency entry: 1160807481
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 457.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f97c113272b51b3b63db423110e8da776ea5a654f29314d0b0620eba09b25054
|
|
| MD5 |
5f7d5938272ae59bbea7ed87d30642d1
|
|
| BLAKE2b-256 |
264ac30dcca266c2947cc1c6a96c52c0392a348587c4f817a3af948062357f4a
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
f97c113272b51b3b63db423110e8da776ea5a654f29314d0b0620eba09b25054 - Sigstore transparency entry: 1160806295
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 417.4 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3e82fa5a918f8c30bf3ccbe21485074cc3e3addcaf951b4fb34524c6354fddf
|
|
| MD5 |
69d8d14e5442022785542fa9ae492684
|
|
| BLAKE2b-256 |
f35ccc6559e193ec77835f767ee4efe3438c4d37ce1afb288b4f5d4075fa9646
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
b3e82fa5a918f8c30bf3ccbe21485074cc3e3addcaf951b4fb34524c6354fddf - Sigstore transparency entry: 1160807186
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type:
File details
Details for the file j_law_python-0.0.7-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: j_law_python-0.0.7-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 440.1 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8d7f81a4fdc57751ea1946f40a51fe8643e88654c44b97a7809c3e4dcf7b791
|
|
| MD5 |
2ed5cd9ead79ef9592a0faa885062d64
|
|
| BLAKE2b-256 |
78f559bce8a1535dfb38967ac120ec61f66602381fd9615823a3381a3e80ca50
|
Provenance
The following attestation bundles were made for j_law_python-0.0.7-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
publish-python.yml on kmoyashi/j-law-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
j_law_python-0.0.7-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
b8d7f81a4fdc57751ea1946f40a51fe8643e88654c44b97a7809c3e4dcf7b791 - Sigstore transparency entry: 1160806426
- Sigstore integration time:
-
Permalink:
kmoyashi/j-law-core@c54059f2545edade7219e256c7f781e024fbffc6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/kmoyashi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-python.yml@c54059f2545edade7219e256c7f781e024fbffc6 -
Trigger Event:
release
-
Statement type: