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.3, 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.0rc3

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

Built distributions (wheels)

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

Download URL py_ephemeris_bazi-1.0.0rc3.tar.gz
Size 32.0 kB
Tags Source
SHA-256 checksum
How to use checksums
44e9c6f546ffe98f42501a6124713dcc6df77625b37c2dcdbd629b847970ee0e
BLAKE2b-256 checksum
How to use checksums
ae8d16b503f724472d80f84ddac85a6a8bdbc54c6e1c244624ae3786bddb4ea3
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp314-cp314-win_arm64.whl
Size 759.1 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
20335243721468b9f219d95940cd5dc592fbce125cf9d54424f414335d8eebab
BLAKE2b-256 checksum
How to use checksums
7c73c64ba86e8ee46e062e6bef351f1b76902605195b1abf5ceeeeab8e063416
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp314-cp314-win_amd64.whl
Size 1.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
90e413cb13c6b0c0942564f9d5101ad4b5ec85db8a046b0b77b2bac1a771453f
BLAKE2b-256 checksum
How to use checksums
06206cb6c2d2c3c57f5ce13cb94acebb0a85d97fb6cae165802951983a4805a1
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
bcb8527d578c51bbd65a6bb1281a8e7286653b13fba925d44ab5576bf427e3a7
BLAKE2b-256 checksum
How to use checksums
48d04443deefb314f2e3e76cd9ddfd271c8a490057dd33d5d17cc77b4758b8c9
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
7f482d1dd7432b8e08eba312121b9a1c282e8bdbaf77863388177024ee2a5d08
BLAKE2b-256 checksum
How to use checksums
1f85229cc1f4f8b4b063ebcbeaa0e728508d9106359a7135a817ba025a3d4481
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
183445f9d6ae81eb9337b1313761007d2391903fee53dda2fdf5b4977d9b36d9
BLAKE2b-256 checksum
How to use checksums
341057f5524ccdf8c40879548782aa48d718f379389c8e8f5b7fd531ae00bc2b
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
338c09b9ee68ffb587da467b4c41692697e3ea2866d748b6ca6c684f109b5fda
BLAKE2b-256 checksum
How to use checksums
9b58738ed7786c42a0dc824119cb6ab4220a39e12d2c5b8394425a273d7fbb61
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp313-cp313-win_arm64.whl
Size 738.1 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
8d87233ca7e7f18a7e2ad6861a625f57fd207ef1787058277fcb12a4407f9348
BLAKE2b-256 checksum
How to use checksums
b0f0455801ce98897eaa7258dc6325f138d44188ab601f068a2975653353d429
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp313-cp313-win_amd64.whl
Size 1.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
926e81c2fa2bfe0a52c347192affc991be7c4fb24cf25c57717bba2564d352c0
BLAKE2b-256 checksum
How to use checksums
16f8b892723e4d6bff3b96fbb86754ecd9b815e3e99e9e85ded3db484508484e
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
6666b93b4aca14ec9d2669ee9d8d432f9b3e833e27c019270bcb36d94315a76c
BLAKE2b-256 checksum
How to use checksums
67c11d763a10f6a89778d128d0066057b12cc96768364495e07189a95e787f2c
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
196302f35a545594e087cf15f8dc980ba90d21fa5e453e46d6cdf090fcb63e07
BLAKE2b-256 checksum
How to use checksums
8b69b78e5a50636047be0267b28284c9110c12ab5226380f9e925ad303ef64d1
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
8771c3fb94823b8c32d1f2d8889f8c4d7650c0097db378aace057f979e2f2a03
BLAKE2b-256 checksum
How to use checksums
3a95e39c85764d7507562580eea617dff06047e7b2a6dbd61d2a7896a2b38bd6
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
2c0c68ba0fca9737fd05a4b6385124ef72c219c34e8fc22299e6efd2ee955c28
BLAKE2b-256 checksum
How to use checksums
c210e647b4a91f4e9dbb97dfba19c708a57b87e32e78bb52edad07bfd1699378
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp312-cp312-win_arm64.whl
Size 738.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
602bfea490093ebb006ce18f4243742181ca4903e96c68ed092c5f9d35b49af0
BLAKE2b-256 checksum
How to use checksums
36a0dfa0504b2ab3d12bb73b8319bce0126f136749605ba938a27bf94d8e3f28
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp312-cp312-win_amd64.whl
Size 1.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
be80a88a863f902bd88b82227c71111d53482cc7e8cbf248c4f101ef046cdcbb
BLAKE2b-256 checksum
How to use checksums
ba5af8518a38d04d98a40269e592c6a0bbd27e3615346b4e9b08d14abb6957ec
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
876aab98194a60bf4e30217a84c93407a4d7b81f9a70fe12edefaa16bee6f45b
BLAKE2b-256 checksum
How to use checksums
f9d8be1350f164a98b69109259da12a7f4d1904a4a91d9047d2df6032eb0e4c9
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
53bb86f98eb4237b658a936dc4842a66366a8e5d90f30ff25bec3621e38bc1fa
BLAKE2b-256 checksum
How to use checksums
4d8315ee5fc884675cc498736a0d569662d2117e9973f108821e1151f55a6374
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
49f4540db84b716d383d8dc5d2c583a3101bd01b8f8d3de10d7180f01df2def1
BLAKE2b-256 checksum
How to use checksums
0c3dc9e48a994a9b21a0102acb36f0bc82c48eda3028a0006fccc10ff1400c38
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
c95f177491ff109b4d696b4fc4be854dce5133f833b92f8e6deb1301c0302c25
BLAKE2b-256 checksum
How to use checksums
d8b9262dd042920e39ceccedbf0bdab26f43f0c2022728bdda71c94a96a45940
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp311-cp311-win_arm64.whl
Size 736.9 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
a9d54620430668efcba9971906ce7e2bb001eeafae630cf95225ee760f8c8b25
BLAKE2b-256 checksum
How to use checksums
074e47856900b161e4f7a70c1f0d446197dff9a41bf2145f3338746b939614af
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp311-cp311-win_amd64.whl
Size 1.1 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6c4012a5357c2a1e08ed9aac34a7f562600d7fc661dd5da2dfaade90656a16b9
BLAKE2b-256 checksum
How to use checksums
13904e8566a602b009a31eb2622c548d997f9cfe5c3b4c6f715d87788b8f7984
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
611812adfc08a605f11560bb71c5d80099ec70b3021c994ddd7dd136d46ee9f5
BLAKE2b-256 checksum
How to use checksums
26697a1d738205193753837c89f7e262d0cc5b613bc7e391f51ee3262019d77c
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
2e450549e980d4d6f542b58d5285e5431be1f80f8a0293f154475308243e5a14
BLAKE2b-256 checksum
How to use checksums
60f1fe8a81b47d8fe5e67cb23c48b2a8c7a9485f5faa3e522a7b34c526b8eef5
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
41888fc91e384ba221bc97b9d07f5d431161eeb4a023e42e0c04d785cf86ba0e
BLAKE2b-256 checksum
How to use checksums
e942e3bac9ce48f7b70c3f2cbb921550992f483c7cb2759ac3dbea149d8ea692
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
017b04cc6272a3c9bb394d7bd4fd567fb1139c5bd4891907b5397e051cc45ca2
BLAKE2b-256 checksum
How to use checksums
e1efdb177b36eab4a0afcc60f49630545f9b693ec5453d81066f16d8b9863c43
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp310-cp310-win_arm64.whl
Size 735.7 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
8cc3bda43f843a30b79c60a11cd862ccab41c50b30997a8fc5668813e3e2c138
BLAKE2b-256 checksum
How to use checksums
89c73eb7449c2f2b3ea16c649f03fa95cde56f79d688628cbe7d666bc8a7329f
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp310-cp310-win_amd64.whl
Size 1.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
4404e0ed40abefcdafeafab6429ccc144c6bd84bb0e475a626d9cb65a7892375
BLAKE2b-256 checksum
How to use checksums
2fcc36c9d565c58891b5f6acf061ef9b4ad9b753ad59606a1ee5b3ed377f398c
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
e4f5b3d12d2a9b1df64c7dcd227c26ff6c40f21d7ed5a7491c3f07489d92e2bd
BLAKE2b-256 checksum
How to use checksums
5bf0e7c0ce8edb65a3896361c8d64de27d00e6e847348d39f125a93e42ede292
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
9b55461269b52c21ddd2d7a7775bd93ce1a9b2d457e8e15960894aa12ff47364
BLAKE2b-256 checksum
How to use checksums
6fb054bfaeb41e6136c9f6ab4e62b71a1f08064a1949f7bb25f2aef1c8bc9eff
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
f340ebb9076b3951a7751d38cf97f0c82c046c42538ae474ee9026dda0de9c9b
BLAKE2b-256 checksum
How to use checksums
1a16c3e31d5909f2ca7fcf3805e5d0ddc684177db18d8d20dd49e4072352acb1
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
23b4e701e05d47a4f7aab3ef3bee46e6889988873aa8f79a6ae50eba2356c9d6
BLAKE2b-256 checksum
How to use checksums
8682fc72a8e23b78e27e968d19223b5b37235791c47f6614ce3f47e83c229e68
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp39-cp39-win_arm64.whl
Size 736.6 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
84217e92ec310925c9f2685e463eba3f8d5e1cdfb19f58365db50f8fe6106f2f
BLAKE2b-256 checksum
How to use checksums
47c145eacb8eaa541485364cbe69432157a29f9ef751c0e2e9706af4789c21f8
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-cp39-cp39-win_amd64.whl
Size 1.1 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
f51c2bf88e06a038d65edd6121ed0a3a47c74d49ff28ac56ec7f2877876d2f42
BLAKE2b-256 checksum
How to use checksums
e124ae28300490402d32e479b9d145eb0d73a132c65ceee4fa9930017169215d
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
513ea2bcc1b86f53c905d18864beca3f3d79308e5f2274cb7968ab4edcf13778
BLAKE2b-256 checksum
How to use checksums
5a1eae7643f7cbb054e89b9fd7fdcad7179418fa6c9d224b274907c1c038f586
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
586c3a0388863277ef5878a1aaaf2126f53eeca24ba89d387065ca73b0b0ba96
BLAKE2b-256 checksum
How to use checksums
53dfda0cd43acb2e2019816038a7461e941c88ab709f668236b09fd29bc56af0
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
eed1880f908b7155e0ad3cb9d8e67cbeeebe8d84bca8aacd881b7dd633785879
BLAKE2b-256 checksum
How to use checksums
d5384346bb715cd2f8a4a97d1a08f2d87c294ad0609ce3fa8d841b5356bec400
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 19, 2026.

Transparency log

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

Download URL py_ephemeris_bazi-1.0.0rc3-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
a4cf938ae44503cfa8c4c030579206b24c068cf4465fbb09ce17b705da2dcd5c
BLAKE2b-256 checksum
How to use checksums
90e0948608b7ef8d1de6048e5e0e931e316070b1f40de9ab1bf35097ee7d6c64
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 19, 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