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
)
result, result_flags = bazi.calculate_solar_day(
    taiyin.SolarDate(2003, 3, 13), hour=14, minute=15,
    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.

calculate_solar_day() and calculate_lunar_day() accept a calendar day plus clock fields. BaziClock selects the civil, local mean-solar, or local apparent-solar chart clock. BaziResult keeps the physical instantUtc, the original civil clockTime, and effective chartTime distinct.

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-rc.1, 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

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.0rc1

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.0rc1
File Size Uploaded
py_ephemeris_bazi-1.0.0rc1.tar.gz 32.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for py-ephemeris-bazi 1.0.0rc1
File
py_ephemeris_bazi-1.0.0rc1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
py_ephemeris_bazi-1.0.0rc1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
py_ephemeris_bazi-1.0.0rc1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
py_ephemeris_bazi-1.0.0rc1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
py_ephemeris_bazi-1.0.0rc1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
py_ephemeris_bazi-1.0.0rc1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
py_ephemeris_bazi-1.0.0rc1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
py_ephemeris_bazi-1.0.0rc1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
py_ephemeris_bazi-1.0.0rc1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
py_ephemeris_bazi-1.0.0rc1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
py_ephemeris_bazi-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
py_ephemeris_bazi-1.0.0rc1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
py_ephemeris_bazi-1.0.0rc1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
py_ephemeris_bazi-1.0.0rc1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
py_ephemeris_bazi-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
py_ephemeris_bazi-1.0.0rc1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
py_ephemeris_bazi-1.0.0rc1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
py_ephemeris_bazi-1.0.0rc1-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.0rc1.tar.gz

Download URL py_ephemeris_bazi-1.0.0rc1.tar.gz
Size 32.0 kB
Tags Source
SHA-256 checksum
How to use checksums
045e53da284fa49a6acf96936f3281faa88d9a5cae98dc91ecff0cf2e6ce4f01
BLAKE2b-256 checksum
How to use checksums
0fc9852c311aba649e2b1765e56e37bf38accc72b9e4a76779e9b02e44a5648c
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp314-cp314-win_arm64.whl
Size 759.1 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
1e1513dd810d5f71b54f6c143c93e858bbd3262e33d75eb146c096577ba42344
BLAKE2b-256 checksum
How to use checksums
8f6e07a63a991f122b065b2e6a820d0a8437d9aadfc359f7eff0edc3b90e3c15
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp314-cp314-win_amd64.whl
Size 1.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
ddf4bf8ac9d8548396ebb886c9ffd631ea25115929e8551cc1cc15141a30684b
BLAKE2b-256 checksum
How to use checksums
f1bf7dc8a63219729d759bf242b6963b77b77742ff1e86b4c51d3c26dbdafb6f
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 189.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
371808617286ba572cab8341448eef7e1411fad498e823879811c6c149c3abb5
BLAKE2b-256 checksum
How to use checksums
737cf300be3496144f149814662b3abb618cd9013e87558775ce0ef723d2881c
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 170.7 kB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c1d54221037c31f4307ca04fbf0cb0f198c06e6a41a1eebfaaf1c4eba67098b7
BLAKE2b-256 checksum
How to use checksums
650b35da3bf2a58d799e2db922a23ad2059b32e92a015ac7cf092c15b8c126ea
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Size 156.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d9c12c65adc59d4e89f203175a13f3670bccff09d5d2a4735c5f80eee737405f
BLAKE2b-256 checksum
How to use checksums
7a4e13f2442c1fac740759f578b6e1f0198cb940faf333a8c4c13f08ad989717
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Size 163.5 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
3d40a9ed8f79d2548d1e7405cbf878a020d63299e0eb1e7de854be1c3c09039f
BLAKE2b-256 checksum
How to use checksums
c194abd8d05ed22f15cfdebef2ec2aac232774f0418087d9937936d6df08d19b
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp313-cp313-win_arm64.whl
Size 738.1 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
8ef0140c55b98d1ebf3d5b548a47cd8984df4f2cf2f37909c889b36f13b67332
BLAKE2b-256 checksum
How to use checksums
035f3dd6491d08e513b70d7dc11cbc1b2ae533184c7106c7b9f99dbf4995b6d8
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp313-cp313-win_amd64.whl
Size 1.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
07c27a94afc4767947275f4038324c8ab224641fad6e7b1b8424e9daa438738a
BLAKE2b-256 checksum
How to use checksums
66ec6f29e0817e10cd4258f6557b0e9f3e78c992de86331b0f940527e455664a
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 189.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
7a596bd106a62dd7c66d10889da26ad3591ac2367fa94dc3824d9499623ecb13
BLAKE2b-256 checksum
How to use checksums
ddd5b52297fbb47750b5f580085d83e05e5dd975ed810103e29d170c43f8f004
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 170.2 kB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e6f9e71bc3653df4eadbffb48632ba7f41c1229324a3b349954b2d4b39f47dcc
BLAKE2b-256 checksum
How to use checksums
1dba14a8967a2229dc145aa63b69713727d74a3e962c955adda96441b93b4814
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Size 155.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4686c6e5b68c0748a419b7e7b4f00b403446c6b51d9a8fb9aae987e243d4e672
BLAKE2b-256 checksum
How to use checksums
2dfc450f79c5db98fb17dceb2139d0c3366e2ac189a2f293aa73e060292e50d8
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Size 163.0 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
7208f5f14407a721f097ef90978432bea8d207cfa3af09edb08f36aa7bb5bf9d
BLAKE2b-256 checksum
How to use checksums
f54b860ff282c7658971ffeb75fd5cd5e5aae337817aa5907297d1daf6688ae1
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp312-cp312-win_arm64.whl
Size 738.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
d8c9e55f7c6e3ce5d9d862b24693cc819d7c43445f16ecdf7543141c81afd5fe
BLAKE2b-256 checksum
How to use checksums
772d9ac412e012e4954d451586ec4cec48c24e7fdc6900c5648cbb6a5e4b9a55
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp312-cp312-win_amd64.whl
Size 1.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
89d209f0a5cb0ed796008f623ef39d4b167d5fff0efce72ed185db5d78587cd9
BLAKE2b-256 checksum
How to use checksums
4c72bb3c863859e6e301401260934621643af9b23ede8d52f7cf4342e4484511
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 189.2 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
99ebfa03a5650e22c61b0a7e99ddd57aa687eea54c903079f50e5a6781647563
BLAKE2b-256 checksum
How to use checksums
cc3f155611460ffb6a1ffece18bc7fe8db94a3ccec7a94c586444a3f383ccfd9
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 170.1 kB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
cecfbb1f915756da0f96b19af0459c798933896fda8e95d6e9dc42663b4e59a0
BLAKE2b-256 checksum
How to use checksums
9509c33035845eef238614504fb1b896bc60db21897f8db84ebde32629cfb5de
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Size 155.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aec6a9dcb6a70c3b22fa3785b477c3ae185f1587b05fa14efa07762400e33a82
BLAKE2b-256 checksum
How to use checksums
5f1a5c14c6c33f10d6ce56b3fbf2f860f062701939f753c605dd8761b0894e38
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Size 163.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
990e4445aeb81fc686c097925bf24d1e13d96822b52cfebeb30a8a2e89cf26de
BLAKE2b-256 checksum
How to use checksums
32877294c8845ac35ad23308b98c6918900aab3db57737d64eedf61c9798032a
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp311-cp311-win_arm64.whl
Size 736.9 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
333575d0fbed60ba3121c9b4322e7e3067eea7b30f13db9472644db73a3ae329
BLAKE2b-256 checksum
How to use checksums
96ab006acf2ae029120f3cb10c56ca6461d0c4489ca833b062b0d6bee309c766
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp311-cp311-win_amd64.whl
Size 1.1 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a8486d49af37efa522804c4b33d03569210ef933db48d484e9c7a58a79e2f38e
BLAKE2b-256 checksum
How to use checksums
014bf0d919b464c1027e156efae9c3db7af2ce7cf943428cdd4482bdf62be27e
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 187.2 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b3d29eacf65a65232568a81500a670b759e78a84884fb24827cb02c4f3cfd4c5
BLAKE2b-256 checksum
How to use checksums
907263eddca26a22d57aa52e49cd7e75f806f9f5e7cedc356215f2124df365f0
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 169.6 kB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
becc708da2bc3e93d70a031a537e673ce4b9425cb133b380542638748f614662
BLAKE2b-256 checksum
How to use checksums
eba0d5d2324b1da510e70aa7163fcc5931ab8282221fb846366fc3a9f17a9c2c
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Size 155.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0c96f93cf354825cc3ac6297b46bbd0924f61b8901bb02cc42c4c52f1db36263
BLAKE2b-256 checksum
How to use checksums
668143c7a06d6bce1594f2314f535e66d207320794471829938436eddea1b91d
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Size 161.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
869433d8528735eca796d042d7b2c89e26086e607362515278d0140c41e9dd86
BLAKE2b-256 checksum
How to use checksums
49f7cbc96c2c81104beb16705d54eb7a02f581dd80349094beec4cdb8c595d44
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp310-cp310-win_arm64.whl
Size 735.7 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
12880d67c88ea8e2e1caef2adc8a6fce7841ddb5b875803aa3c3bbcbc535f167
BLAKE2b-256 checksum
How to use checksums
26b7de0fbcf86ab8c6a751b1ecc2061a44dffeaae03f76145325af0e8195d199
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp310-cp310-win_amd64.whl
Size 1.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e876b7b56dbc65db584c797f8cd081ff340d1404f4ac7baad83e05506fe4e5e8
BLAKE2b-256 checksum
How to use checksums
03412ac15e7307b217d800ebb9a735681834d10afd928cae0edcd3d1b4fedc57
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 185.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
2f2af759b5dc3a765de17b703d7d529c564c6ea472b45c1d4ee3ab2d5d4a2d4d
BLAKE2b-256 checksum
How to use checksums
f19111362dcf2d275c08f867daf8d370cde33cf98afa0e85ef83f3261ca1a8d7
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 168.2 kB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
13369768e072c66db8b250d549f582ffede9549a7a43124f7ad56d92cfcb60f9
BLAKE2b-256 checksum
How to use checksums
700f3ff1ea9d06a798beedd10e82d097cdcf431ead7b3cf33d8b52420658565a
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Size 153.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
76a50949d2b409e303fc53e4ac6df9a617cdccb461ea83eb2237be902c41f51c
BLAKE2b-256 checksum
How to use checksums
79f46af7f2a3f8274d851fdd302e1f75eeb5153ee73ab7776944551d34e22c7f
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Size 160.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7ad09eca4cb7187222a5bc434b78030ce53744f77b8bbd429f5e652fac10f5bc
BLAKE2b-256 checksum
How to use checksums
0e8724bfe4cfbd576cdf58dcab06842c178a0836bdd57ac825b3176fed1663a8
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp39-cp39-win_arm64.whl
Size 736.5 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
e134afca14a24ee685a2380896fc686162d9da1b7c23395e10fb1eff1daa4636
BLAKE2b-256 checksum
How to use checksums
3a5af0bc570e66297108088b51879effa7f34214ad55611ce9f470e68420ddd2
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp39-cp39-win_amd64.whl
Size 1.1 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
22b7a33c7e9d78b1aae586508dbd7ddd9bd782181256a697c517f388d93dfa9b
BLAKE2b-256 checksum
How to use checksums
7db79998ca4854b34ac6dcc1598082de2db0005e2fddd7080de5e912bd64386c
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 185.7 kB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
91af6be15b73820538b5aa85e821bf9237a75e53e6154707815d3f622a0dce70
BLAKE2b-256 checksum
How to use checksums
91b045cc24395b97c6a01dfb843d231b5657374bd02247df083b1b641e32881c
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 168.6 kB
Tags CPython 3.9 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b0fad01e0602a507c2d22ace233a628848955a46e70188e6071181e492f16cfc
BLAKE2b-256 checksum
How to use checksums
a08f1223080a269f4598e8e9a87032dda72a56a70d99785dbb1b111271fa6555
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Size 153.7 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4684a1f8e69902676090dec3c88e7f9b01f96703b2bb139ce4d21db25d658ab7
BLAKE2b-256 checksum
How to use checksums
673d49fa02977f5621e36c775858722ba6cc2941a3deb782dd26a434babb069b
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 12, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Size 160.4 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d3284646fe2669cbb639c2b968b0e0e615e5f5f5eae57c18b9f6b18afe6f1b02
BLAKE2b-256 checksum
How to use checksums
bd6217b0c134d99e3cafadd009e8b7183ca318130069e1167d11fe6ca504d509
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 12, 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