Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

py-ephemeris-bazi (Taiyin BaZi)

BaZi bindings for py-ephemeris.

python -m pip install py-ephemeris py-ephemeris-bazi
import taiyin
import taiyin_bazi

eph = taiyin.Ephemeris()
ctx = eph.create_context()
local_time = taiyin.AstroDateTime(2003, 3, 13, 14, 15)
instant_utc = local_time.to_julian_date().add_seconds(-8 * 3600)
bazi = ctx.bazi()
result, result_flags = bazi.calculate_local(
    local_time, gender=taiyin_bazi.BaziGender.male
)
print(result.pillars, result.chart, result.qiyun)
print("Execution flags:", result_flags)

EphemerisContext.bazi() loads this installed extension on demand. The BaZi context inherits the calculation context's configured data roots and source paths. Its chinese_calendar property is shared by four-pillar, Qi-Yun, and Renyuan-Siling calculations, so the calendar offset is configured once.

For concurrent chart work, create one EphemerisContext and its corresponding BaZi facade per worker. Native chart, Qi-Yun, DaYun, and Renyuan-Siling work releases the Python GIL; a single context/facade pair is not reentrant and must not be used or reconfigured concurrently by multiple threads.

For a source build from this monorepo, run the following from packages/taiyin-bazi. CMake prefers the sibling Taiyin C++ checkout. In an isolated sdist build it instead downloads the public Taiyin source archive at the release tag v1.0.0-beta.12, not a moving branch, and verifies its pinned SHA-256 checksum. Source builds require network access unless a local checkout is supplied; no local developer path or Git installation is required for this download. Wheel users need no C++ source checkout. The core is compiled into the extension. TAIYIN_SOURCE_DIR below is used by the integration tests to locate the C++ checkout's bundled test data; it can also be passed as a CMake define to build against another local checkout.

python -m pip install -e ".[test]"
TAIYIN_SOURCE_DIR=../../../taiyin-ephemeris python -m pytest

Custom Shen Sha modules (next release)

from taiyin_bazi import (
    BaziShenShaCatalog, BaziShenShaModule, BaziShenShaRule,
    BaziShenShaTargetKind,
)

catalog = BaziShenShaCatalog().add_module(BaziShenShaModule(
    "my-school", [BaziShenShaRule("day-marker", "Day marker",
        lambda value: value.target_kind == BaziShenShaTargetKind.day)],
))
with catalog:
    with catalog.create_context(disabled_ids=()) as rules:
        # chart is an existing BaziChart from bazi.calc_chart(pillars).
        matches = rules.evaluate(chart, chart.dayPillar, BaziShenShaTargetKind.day)

Catalog updates return new objects. Built-ins (builtin:0builtin:65) cannot be overwritten or removed; duplicate module/rule IDs are errors. remove_module("my-school") removes ALL rules in that module from the new catalog, while existing contexts retain their snapshots and callbacks. Use disabled_ids to disable entries without modifying their definitions.

Predicates receive immutable input containing packed Ganzhi bytes (pillars in year/month/day/hour order), target, target_kind and optional gender. Return an actual bool; exceptions propagate unchanged. Evaluations retain the GIL; mutable state captured by callbacks remains the caller's responsibility. Use close() or with for catalogs and contexts, especially when a predicate captures its context or a bound-method owner holding it. Python GC cannot see these native-held callback cycles. Closing releases this handle's references; other snapshots and an already-running evaluation retain their own references. Close is idempotent; subsequent calls raise RuntimeError. Match builtin_id is None for custom rules.

中文:目录增删均返回新对象,不能覆盖或删除内置规则。移除 my-school 会移除新目录中该模块的全部神煞,已有上下文不受影响。回调必须返回 bool; 异常原样抛出,不写入星历 context 的 last_diagnostic。回调求值保留 GIL, 不承诺 Python 线程并行加速;不要把闭包中的可变状态当成自动线程安全。 目录和上下文支持 close() / with。回调反向引用上下文或持有上下文的对象 时,必须显式关闭以解除 native 引用环;关闭当前对象不影响其他已有快照。

Release files for py-ephemeris-bazi 1.0.0b12

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for py-ephemeris-bazi 1.0.0b12
File Size Uploaded
py_ephemeris_bazi-1.0.0b12.tar.gz 30.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for py-ephemeris-bazi 1.0.0b12
File
py_ephemeris_bazi-1.0.0b12-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
py_ephemeris_bazi-1.0.0b12-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0b12-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 15.0 MB

Release files / py_ephemeris_bazi-1.0.0b12.tar.gz

Download URL py_ephemeris_bazi-1.0.0b12.tar.gz
Size 30.5 kB
Tags Source
SHA-256 checksum
How to use checksums
729e848b7d4d2e5c84169e2fdbc36e8a89054fb06065dd7839636ba7cdc76314
BLAKE2b-256 checksum
How to use checksums
213afccea5d79a776cc07a5bf9ac98c1e923049a914551b63bbbbdf5839bd7e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp314-cp314-win_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp314-cp314-win_arm64.whl
Size 758.1 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
837ffe38a5bb021998a590f8af7ab5b0c311b41a2c281602234e06275af49766
BLAKE2b-256 checksum
How to use checksums
8be0633ad96f5de6e34061fb13058f085a58e0a4a78e1d49e9fe9061d4d3142c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp314-cp314-win_amd64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp314-cp314-win_amd64.whl
Size 1.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
447c70eadccc772db6305fd67b4cfe99a9193fcd1be47454772c7bd965e322ba
BLAKE2b-256 checksum
How to use checksums
8c0f77fdf7a95ec5ef36f441547b367f43c8c0e545f442b90448d0a483a0857d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 188.3 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5f344864dc2b16c6706a98c4bfec491efb4ab296899dbebe0433c0f8b52c0319
BLAKE2b-256 checksum
How to use checksums
f0b74dc4947e041592326024ae0b2b49f46ab0014c60ac040f2059bb40f994bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 169.8 kB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f00f2d0888cb14a9339bf4273df2f0f61fd7533a29fd6f88c5a8250afc26b6d9
BLAKE2b-256 checksum
How to use checksums
69d18ecc2ea1597588514cfb5c63e5bda958ed3d46df084a5f0eb089cff229ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp314-cp314-macosx_11_0_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp314-cp314-macosx_11_0_arm64.whl
Size 155.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8339ea0c8618418f08d1f5ef42c999dc29c383646017b26814ededdc42d24a12
BLAKE2b-256 checksum
How to use checksums
5080eeb69d09e6f1729297fe9e2013d4f7cb9e3ca6452cdc17e05be4f71987a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp314-cp314-macosx_10_15_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp314-cp314-macosx_10_15_x86_64.whl
Size 162.6 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
32f606f223b2c0ab5e1f5a24fa90ab85cac7208ed45b50a479b6b9bf40e89ca6
BLAKE2b-256 checksum
How to use checksums
6a65bc406a51ed08b8c3bd23079d16ee210e4532e08abe4ced08e5d18f42b200
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp313-cp313-win_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp313-cp313-win_arm64.whl
Size 737.1 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
ccf43d8abbf459c263d2f0d1cbc8032bc7ce71d1396d14dd0a03a472faefb590
BLAKE2b-256 checksum
How to use checksums
33e3353323fa232d10db7e6e101d49805260660eb08984c22501ac2642c49723
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp313-cp313-win_amd64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp313-cp313-win_amd64.whl
Size 1.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
e349d32a664fea655106a8940261185abdb0aa14525afd78603b52da5edadacb
BLAKE2b-256 checksum
How to use checksums
39f0794e5ffbc414275591b728db499b3ab2e60a149846039e693ab26707560f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 188.3 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2dc7f11fefae90f3cdf76b84a594ca510a9d5b2200705b2c73fddb31a262bd5f
BLAKE2b-256 checksum
How to use checksums
ac72f65e98b662b92ae52471ecc1960e0a41db4c3458f239e133efa3b5524516
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 169.2 kB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8f4c2d22f2005ccdf8af12057a9658dd6646017d3d67fb24fa105b42942474ac
BLAKE2b-256 checksum
How to use checksums
de45e9489860165724dc68267f6cb39d226742076968498a733bc31a12b03f8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp313-cp313-macosx_11_0_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp313-cp313-macosx_11_0_arm64.whl
Size 154.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
002b5bee2d10d69cd7569551ee550bddee96d1eb78fcd2d60f39db8096214379
BLAKE2b-256 checksum
How to use checksums
40d7f7e46c5040e120df995d501cc45456127ec1c5aa0e4d2fdb8b50a92c82b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp313-cp313-macosx_10_13_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp313-cp313-macosx_10_13_x86_64.whl
Size 162.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
d401e59d60d7b091473fc343f4371df9cb5d0184c32a479a0bb38f6da7253567
BLAKE2b-256 checksum
How to use checksums
36782bd83ba8584e906f2b720d3422b8bc44456304efff82e8bcffc51ee84715
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp312-cp312-win_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp312-cp312-win_arm64.whl
Size 737.1 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
942bf1680caa85e9515ced24f9c0521e2bf52a4e37140bcb4b564887b8061c4f
BLAKE2b-256 checksum
How to use checksums
783bda643e8e70b4c6bb94a0fbc9341e31c8efdddc4331190fd405d590b6bf8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp312-cp312-win_amd64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp312-cp312-win_amd64.whl
Size 1.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
80e444fab302ab605dc66fa2079798034abd8f28ff1fde9b26c6a463b20c267f
BLAKE2b-256 checksum
How to use checksums
46fbe6e2d7d41c3339e3d538b4184e8f4a4a792b4793b32dfbe6e721a5612c06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 188.3 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ab047ea4051e357587fdd481eb59032068f31d7238f918c99a906def1ddc53d7
BLAKE2b-256 checksum
How to use checksums
362b38ebb76cf25eae3d54578a0facc3c5a8a570163778a4fa31e39aaabb0774
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 169.1 kB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c2cb50948b6196ea74f1f622e6526ab028fdac37352794a7518991f52785dd13
BLAKE2b-256 checksum
How to use checksums
4a724c5e66189c9ce807006d5ba65e1d74df273408956e7a75ebfc42631b8f9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp312-cp312-macosx_11_0_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp312-cp312-macosx_11_0_arm64.whl
Size 154.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9827ab2629145f134db5c758984481bb6d5ac0d8defcfa35ef2c43df422645f8
BLAKE2b-256 checksum
How to use checksums
6f91176fb56b19632e531cf9a88d393dc041dee58fb6eb9a29ee3a227bad6018
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp312-cp312-macosx_10_13_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp312-cp312-macosx_10_13_x86_64.whl
Size 162.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
04636b2f082f62fdf5c57acbf6e076ead500c3e2a018a4bcc0506d6459978fba
BLAKE2b-256 checksum
How to use checksums
e9ab4ae37c81ca6233f610725972a9e64dffdde76fd4320d9a368627bf1cd161
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp311-cp311-win_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp311-cp311-win_arm64.whl
Size 735.9 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
798e354e26ffef2ba93c0e6c7ea960597e36f474143119c99da42080aa26b6f1
BLAKE2b-256 checksum
How to use checksums
3add8684d2de13ededae23c1b3c8bbd4a2c586eaa3042c2b995762f9441f6d1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp311-cp311-win_amd64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp311-cp311-win_amd64.whl
Size 1.1 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
38546c4586df2dd662c67e77d225e9d32257bdb87083dab8db2cb1788265ce4a
BLAKE2b-256 checksum
How to use checksums
b087b63e30d53dd2e53b8e582d60fa82b4d4a3a5d035d2bbd3e7384c470014b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 186.3 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
737934c089be1bed4ad97fc0bc9c4d26a573b98901340c82707e8c0482711376
BLAKE2b-256 checksum
How to use checksums
e15608a322ac27836fd19247336d8f0633a53b0e76f722cc348ca02e339bb2eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 168.7 kB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0bccea91bcaa97d89b7a0ee0530b17edb331c80b39d5729949f1d27842908226
BLAKE2b-256 checksum
How to use checksums
282ba60d2f216082049562e60a268a39c615a58ddea6a1e457486974ba38e867
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp311-cp311-macosx_11_0_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp311-cp311-macosx_11_0_arm64.whl
Size 154.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7131c44d28e5058047ed6e062abb70338c9621f570ffd6cbe866a29516e30293
BLAKE2b-256 checksum
How to use checksums
b1f411a5b005b6fcc1d0adc9902735b0150f47b51c3458d4e133233ccd6e9bd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp311-cp311-macosx_10_9_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp311-cp311-macosx_10_9_x86_64.whl
Size 160.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
227aa069ddaccaf700b2e3fc7f21ec959affb2f657d89812ce7ddbaf97b69c1d
BLAKE2b-256 checksum
How to use checksums
cc803bea817b0398552341d2c6d64bd7302b2f7c9dda638295caf699f5a98344
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp310-cp310-win_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp310-cp310-win_arm64.whl
Size 734.8 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
e7e7d124d5cf0e50aaa1597c4b17bd933d44d14bfe6f7e63aa5f3d56da240131
BLAKE2b-256 checksum
How to use checksums
e2e604162e2feee7466fef203bc630c26d7b6aad3dee916b17d80ae06f6dd792
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp310-cp310-win_amd64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp310-cp310-win_amd64.whl
Size 1.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
74af2f314c6f47239c3cf2c564e5ac37d5b95699449a61b5f5b98b3af3eea6e3
BLAKE2b-256 checksum
How to use checksums
05bf4763c181dbc6e05917000908790b34067de8de24514b20a79a99e57ae113
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 184.4 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
bd9ca7a89de1beb20d83061bde35b0bd38b797e36f6d31bd54e95057ac62db84
BLAKE2b-256 checksum
How to use checksums
75df659d68a461eedcf85c4f8c5055f38a17cebc70b622a92df3bea373b74bed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 167.3 kB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1b9c207c9eb73aa549186cbd7f3f5693073a496f89e715fe75b07ecf95763d69
BLAKE2b-256 checksum
How to use checksums
5868c7d438e93cda6dfa05f90b8158b232dc925d7fd2a02f3ac065a4a3b50eee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp310-cp310-macosx_11_0_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp310-cp310-macosx_11_0_arm64.whl
Size 152.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1d5d6125975b5f5bb89f45affc4d808a6dc9a941251679fe3887b30cb833b234
BLAKE2b-256 checksum
How to use checksums
b7ba491af8d525ebb9af4fdf8354510dae39fd4610663866427e47dd92ac15e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp310-cp310-macosx_10_9_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp310-cp310-macosx_10_9_x86_64.whl
Size 159.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
dc37ad84adb742cbdbc20b2cbe3445e04b5a3bdee766583dae88b059696e3aa0
BLAKE2b-256 checksum
How to use checksums
a0840e1b8afa9925518b9037b4cb6544d698e930444480fa6ddfa37be3ab63b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp39-cp39-win_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp39-cp39-win_arm64.whl
Size 735.6 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
02c1b2b1aba6fbd6f7dd53b5fae8e1bd9ebd35eff15125d252656fd0ac392dbb
BLAKE2b-256 checksum
How to use checksums
07f9513bb4aae0af8f1fefae49f0f4c4e012786d4bd7761de381bc42834d7d7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp39-cp39-win_amd64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp39-cp39-win_amd64.whl
Size 1.1 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c97e9ff9215759359605f410aa2d233a6681e2e14aee0b1698bbc3206f2ca57a
BLAKE2b-256 checksum
How to use checksums
5c1b55aa911b7219bfbcb5348692fc22b77a1172a5c81f4d1707a617fbbcd75c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 184.8 kB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
52d1c7267423184cb83001b61520b82a5b179006bffb62c79a71428d60d9fc94
BLAKE2b-256 checksum
How to use checksums
a961ec66815c069c2909e1bf071e515f059e40b9dd9867040074d486ee1a0e1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 167.7 kB
Tags CPython 3.9 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f9dfc0d493cb16f74977fe6d31a3cd6c0748585b579e338fa90bbfba2f66253a
BLAKE2b-256 checksum
How to use checksums
6090eb94a38653057d5f5d858306ef7b40906e5100d39edef2acf6aa5e267ee6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp39-cp39-macosx_11_0_arm64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp39-cp39-macosx_11_0_arm64.whl
Size 152.8 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
31d2ac57ab6665c077d681249c887b5489bfde1a8cd21e41e507dc07ec7311fa
BLAKE2b-256 checksum
How to use checksums
3009668fcfbbdcf3717ba140714be40587d98a3bef9b91f1049e0e1ae46c6f92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log

Release files / py_ephemeris_bazi-1.0.0b12-cp39-cp39-macosx_10_9_x86_64.whl

Download URL py_ephemeris_bazi-1.0.0b12-cp39-cp39-macosx_10_9_x86_64.whl
Size 159.5 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0ab341c6c44d4ddda47f0c45955ff09795955c1cbd597aa7a5a9fd5dd25a4149
BLAKE2b-256 checksum
How to use checksums
72174f945a7156758c160c84cc5827ba2feb6abf3c229b25d8190667e5ca584f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 11, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page