Skip to main content
Pre-release

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

py-ephemeris-ziwei (Taiyin Ziwei Doushu)

Optional Ziwei Doushu bindings for py-ephemeris.

python -m pip install py-ephemeris py-ephemeris-ziwei

The extension shares a caller-owned taiyin.EphemerisContext and its Chinese calendar configuration. Its bundled TOML rule catalog is parsed once per ZiweiDataCatalog; contexts select immutable option views without reparsing.

The beta API remains under stabilization. Source builds prefer the adjacent C++ checkout and isolated builds pin public Taiyin tag v1.0.0-beta.11, verifying the source archive's SHA-256 recorded in CMakeLists.txt before compilation.

New explicit UT1 clock APIs: Chart clocks / 排盘时钟. These require matching unreleased base and Ziwei builds; older installed wheels do not provide the new bridge.

New in b9: immutable natal edits and separate manual/number/random casting charts. See the usage guide or 中文说明.

Create a natal chart

import taiyin
import taiyin_ziwei

context = taiyin.Ephemeris().create_context()
ziwei = context.ziwei()

local_time = taiyin.AstroDateTime(2003, 3, 13, 14, 15)
chart, chart_flags = ziwei.calculate_local(
    local_time,
    gender=taiyin_ziwei.ZiweiGender.male,
)

chart, chart_flags = ziwei.calculate_solar_day(
    taiyin.SolarDate(2003, 3, 13), hour=14, minute=15,
    gender=taiyin_ziwei.ZiweiGender.male,
    clock=taiyin_ziwei.ZiweiClock(),
)

ziwei_star = ziwei.find_star("ziwei")
print(chart.star_position(ziwei_star))
print(chart.summary.transforms)
print("Execution flags:", chart_flags)

Removable JSON option modules

Use JSON modules for application- or school-specific options without replacing the bundled TOML catalog:

ruleset = taiyin_ziwei.ZiweiRuleset().add_module(
    taiyin_ziwei.ZiweiJsonRuleModule(
        label="school-a",
        starsJson='[{"key":"ziwei","rule":{"type":"constant","value":5}}]',
    )
)
selection = taiyin_ziwei.ZiweiOptionSelection(
    placement={"ziwei": "school-a"},
)
ziwei = context.ziwei(selection=selection, ruleset=ruleset)

# Removes every option and new star contributed by this user module.
ruleset = ruleset.remove_module("school-a")

The module label is its option name across placement, brightness, Si-Hua, flow-star, and master tables. A module cannot overwrite or remove a bundled TOML option, and duplicate labels are rejected. Removing a module clears all of its contributions but does not mutate an existing context snapshot. ZiweiStar.isNatal distinguishes natal registry entries from flow-only stars.

calculate_local() converts the local civil clock using the attached Chinese calendar context's configured day-boundary policy. Use calculate_instant() when the physical UTC Julian date is already the source of truth. Both methods, plus calculate_solar_day() and calculate_lunar_day(), accept an explicit ZiweiClock for fixed-offset, mean-solar, or apparent-solar chart time.

Flow targets and Tier-1 reverse lookup

# Logical slots understand the selected early/late-Rat-hour policy.
birth_utc = local_time.to_julian_date().add_seconds(-8 * 3600)
next_hour = ziwei.next_flow_hour_target(
    birth_utc,
    local_time,
    rat_hour_mode=taiyin.GanzhiRatHourMode.todayGan,
)

# Tier-1 reverse lookup returns matching logical birth-time slots, rather than
# claiming a fictitious minute-precise reconstruction.
candidates, reverse_flags = ziwei.reverse_lookup_tier1(
    birth_utc,
    birth_utc.add_seconds(24 * 3600),
    local_time,
    gender=taiyin_ziwei.ZiweiGender.male,
    query=taiyin_ziwei.ZiweiTier1ReverseQuery(
        ziweiBranch=chart.star_position(ziwei.find_star("ziwei")),
        lucunBranch=chart.star_position(ziwei.find_star("lucun")),
    ),
)
print(candidates, reverse_flags)

For annual through hourly overlays, call:

resolution, flow_flags = chart.set_flow(target_utc, target_local)

deepest_level can stop at decade, year, month, or day; the default includes all five levels. Lunar-month overlays use the month-building branch resolved by the attached Chinese calendar, including leap months and historical calendar reforms.

ZiweiFlowResolution keeps the written month, effective month, physical month sequence, month-building branch, and palace month index separate. The default ZiweiFlowMonthPalaceStrategy.physicalSequence advances the flow palace for every physical lunation; select effectiveMonth through ZiweiFlowOptions when following a school that assigns a leap segment to its effective month.

Release files for py-ephemeris-ziwei 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-ziwei 1.0.0rc3
File Size Uploaded
py_ephemeris_ziwei-1.0.0rc3.tar.gz 46.3 kB Details

Built distributions (wheels)

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

Release files / py_ephemeris_ziwei-1.0.0rc3.tar.gz

Download URL py_ephemeris_ziwei-1.0.0rc3.tar.gz
Size 46.3 kB
Tags Source
SHA-256 checksum
How to use checksums
3065d02a8a05c080bfbc2ec6de7706c6d74d313741a87acd573956513bd30f12
BLAKE2b-256 checksum
How to use checksums
d3169820ca4a7aba600f8f391a7d757923573002eab9b030ba239f3362c493fc
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_ziwei-1.0.0rc3-cp314-cp314-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp314-cp314-win_arm64.whl
Size 1.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
0747487383ab08eb5257be740fe2f97c5485e9156fb4ed3423ca07fa77b8477e
BLAKE2b-256 checksum
How to use checksums
0f47d0e85a4af5cda189a3e4511f3c27caa37c0b37ea8a0e3bb399ca0cd8e0bb
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_ziwei-1.0.0rc3-cp314-cp314-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp314-cp314-win_amd64.whl
Size 1.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
9f7c9cff20e00d941895b08c91d2aa5f151228865eae7bc66a04461052a40d7f
BLAKE2b-256 checksum
How to use checksums
813d7646a5297c312b9fc64e262703573c015564682eecba06d44944e596f669
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_ziwei-1.0.0rc3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 544.7 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f52d5b5ec82a52f35bb837f3616e823efeb2881e7a8f09cb394b4be16a537c96
BLAKE2b-256 checksum
How to use checksums
709f121b3b77f885d6aebcb0b7293b643796ce42205a7b525d93050daac8760a
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_ziwei-1.0.0rc3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 498.0 kB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0486d445f1c244f4fa2f8f80d6a8d3a3008824b4234b41d3fcece569a59bad8b
BLAKE2b-256 checksum
How to use checksums
565f9b0238974cd8473e6b0d41114d54dbd3aa71ddd649d47d6b941fbff8dfe5
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_ziwei-1.0.0rc3-cp314-cp314-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp314-cp314-macosx_11_0_arm64.whl
Size 483.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d2f5e9187ea6a47f8ef51b3b61d3dbc52256d638d036dd609e3548745ee96ea3
BLAKE2b-256 checksum
How to use checksums
4715c31004725c70d0c0cd3f2e9b3f082d5b3178eeb0424ed00caeaba0e0f9fd
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_ziwei-1.0.0rc3-cp314-cp314-macosx_10_15_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp314-cp314-macosx_10_15_x86_64.whl
Size 501.8 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
690daff6df77326cdb2609f64cc22ba4afd7bdfd50aa5687e95ea1ebf823c68d
BLAKE2b-256 checksum
How to use checksums
1c3f8ca99ce73cc23e9ed2d89b1b3f57009663a51bd28b235c77aa8158f9be97
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_ziwei-1.0.0rc3-cp313-cp313-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp313-cp313-win_arm64.whl
Size 1.0 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
cca7d693b6556f5524137c47cda691a362daf9e8e05025dbd2c6616a7a475bd3
BLAKE2b-256 checksum
How to use checksums
396932b0cc62092a043620a0fab6c6ad06a21a3877ad2896b9e6d1c6cc249f59
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_ziwei-1.0.0rc3-cp313-cp313-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp313-cp313-win_amd64.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
18936f07e412da31508c96ca1e280f0bdfc037b9cd2958544052edeb07f38090
BLAKE2b-256 checksum
How to use checksums
44ddcd7e017530a27aa3914d45ede398bc4ec7996e1420407d336ede4478a93e
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_ziwei-1.0.0rc3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 544.6 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b6b08c1ae624d06508cc71cc2e62a2dd788e18ffb64f32fe8c139a0c72dabc55
BLAKE2b-256 checksum
How to use checksums
518a69869c98d79d993e8a7f63fb4251006c858369a18602d2c2ec8da2eed303
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_ziwei-1.0.0rc3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 497.7 kB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7c0f0efe6defddf28e3aeddc8dbfa07b7a92a84745bdbeb937b728a3cf911d5a
BLAKE2b-256 checksum
How to use checksums
f9c63037b3978607e537a9b36b3c1a21743ff5a08560b4b6346118e0d80bc5e9
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_ziwei-1.0.0rc3-cp313-cp313-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp313-cp313-macosx_11_0_arm64.whl
Size 482.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
35d370c81e53ed6225cb0791e52f66202bb8161055c7ad22a4ed6e891ca05a0d
BLAKE2b-256 checksum
How to use checksums
254348c6c488dbe4b85eceae409d148192416b9b5e1491fd297369463b080d56
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_ziwei-1.0.0rc3-cp313-cp313-macosx_10_13_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp313-cp313-macosx_10_13_x86_64.whl
Size 501.4 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
7b004c10ed2bc8591247d8c016e62230187557d6d131402a48690d9c74733db0
BLAKE2b-256 checksum
How to use checksums
e5b6bb8796577544c0c28a9d9c1356d9b8251771b11c2f9dc15a0bcb37e74557
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_ziwei-1.0.0rc3-cp312-cp312-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp312-cp312-win_arm64.whl
Size 1.0 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
5397cebf0e01dd90fff9a3c2aebd600077d929cfd522d13837110cb4f3074cc2
BLAKE2b-256 checksum
How to use checksums
12ceb4505d5dbb630305c0d792c6df9df38b6a6f9779d5f223b81245974537a3
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_ziwei-1.0.0rc3-cp312-cp312-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp312-cp312-win_amd64.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
612527a45ab065da093a350df59b516b8c2749dcccc7138ec384bf4af40d69fe
BLAKE2b-256 checksum
How to use checksums
f65c2c4e71c8e37f1a486888ee24f1a266ddc6728f3e903985cb4eac17301cfd
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_ziwei-1.0.0rc3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 544.5 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
fc276184b96067a55b83d6f02e66c8b3a9325639157125ec9b9bc18025f82e91
BLAKE2b-256 checksum
How to use checksums
2fc2b0ad02a082bec21ac08530fef9944b03157b905df04436a21e3316463641
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_ziwei-1.0.0rc3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 497.7 kB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
54622e7b536c288d0790cd216b46096a74063c37372fe4c0c39d309939d41bfd
BLAKE2b-256 checksum
How to use checksums
4de62eee24e34179964ace71625ca5c2d7ac5fb5aba5372a2cfdad79cf4e0d51
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_ziwei-1.0.0rc3-cp312-cp312-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp312-cp312-macosx_11_0_arm64.whl
Size 482.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
97e47fbd86dbd547422d1fbbb94cff9e974c87cd047c8e80575438f128d18f4b
BLAKE2b-256 checksum
How to use checksums
1d3c51ea867797b015091dd32becbb66c095b0db34e44eeb4a50370c1de4eb8f
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_ziwei-1.0.0rc3-cp312-cp312-macosx_10_13_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp312-cp312-macosx_10_13_x86_64.whl
Size 501.4 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
3de07939b578c45315a810df652e1443b33fefc4208b59b1f2523c1c1570607f
BLAKE2b-256 checksum
How to use checksums
9efa68ee425ba43f0c644d84b33b059f7465c2249992b1cf749afbe9f40570f6
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_ziwei-1.0.0rc3-cp311-cp311-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp311-cp311-win_arm64.whl
Size 1.0 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
aad4a9251541c6e4b69e44eec2fbeba2224c0608d362a0c6177754e754d07853
BLAKE2b-256 checksum
How to use checksums
b68b7a4de6a73004dd21816ff7c636df425e5edb1c5c0e6bdf4dce899b914e84
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_ziwei-1.0.0rc3-cp311-cp311-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1085f4744487d3d03a639659576d02962f013447dc6d285eb50b8de6a10172f5
BLAKE2b-256 checksum
How to use checksums
12bbd218932e8e437c9eec42bb4a96d5e8ab7c976441fc928ed0bd3533c65bd0
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_ziwei-1.0.0rc3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 541.6 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8b93a90a36fea88d84ce30ee19bf5d6a607bb6e513ca9fdaab00c2e937b66434
BLAKE2b-256 checksum
How to use checksums
1cf2ba2afe379673f9f6b470bf8952388b110d085f22a568537caf1211480783
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_ziwei-1.0.0rc3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 496.7 kB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
42ade9a7d978070e0dcf7d3b0a7cfe2a58dadbe8c227515607fee25835e4ba5b
BLAKE2b-256 checksum
How to use checksums
30a4d2274685b26e678048314bbaac9fd0bd6a261507a1738297e3113e2103ee
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_ziwei-1.0.0rc3-cp311-cp311-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp311-cp311-macosx_11_0_arm64.whl
Size 482.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
581b7f91231853227204853b354878e63da91f25742986a49d2e8134784df28b
BLAKE2b-256 checksum
How to use checksums
7e77761cb2b988db2d76a7740b173baad301b3a24d5de310c83ab946e3385b63
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_ziwei-1.0.0rc3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp311-cp311-macosx_10_9_x86_64.whl
Size 500.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
04a2debd749c6da833e31d026f5dfd339e9aa0977a315cb4dcd10045faef3945
BLAKE2b-256 checksum
How to use checksums
7886a8fe1323e3907393f5efda1e5e2f67a09b1b896f2a63931308e3cec6d5e4
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_ziwei-1.0.0rc3-cp310-cp310-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp310-cp310-win_arm64.whl
Size 1.0 MB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
eba5991ffdcee80fbe2c1ba9e1827d680dd95977a57e82cbfdcf823a7dacd887
BLAKE2b-256 checksum
How to use checksums
75bed54567d309abfb90a45d903818a538169f03bc314d2b53f45e3b7eeea2a9
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_ziwei-1.0.0rc3-cp310-cp310-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp310-cp310-win_amd64.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
730c8b16eb4c26447fc34b43370b88afbab4b9ac8e50bb4c634528dbd020328d
BLAKE2b-256 checksum
How to use checksums
ea6f527af5f875003e287da8861ac4871ab283e8ce31ce8fec1e2f9c0658b9eb
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_ziwei-1.0.0rc3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 539.9 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
578df41edeba7033c39b0c31117780ed2a6a9dbafb95b1a6cbac31c05ada2ba1
BLAKE2b-256 checksum
How to use checksums
8181a309ced3ba0a48d52b8aad54a03de82de03fc746c93c2d3f17fd8bf41274
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_ziwei-1.0.0rc3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 495.1 kB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4831a85f20131df5dc9e3c239c28c2f352668e192a2f54556ec4550cd9e1a03d
BLAKE2b-256 checksum
How to use checksums
2021152c5eccdf590f7b29cf67e09d6802b2cec4d7e429a25fa7970a5df77bb9
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_ziwei-1.0.0rc3-cp310-cp310-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp310-cp310-macosx_11_0_arm64.whl
Size 480.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a6eeafe44c004942c06b6f047a125c6c3a38176ca7b3d5de4824d66c1495e55f
BLAKE2b-256 checksum
How to use checksums
226c79166781ad4a2cd7716c508a391608f1969ea63b8a91a3658c47c0b28001
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_ziwei-1.0.0rc3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp310-cp310-macosx_10_9_x86_64.whl
Size 499.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
76b938d3ba0fdceb73e32547e6b37d51f95a8a771c99094146760ba837adb8d8
BLAKE2b-256 checksum
How to use checksums
d34ab4ab34fe08e2061dfc2af38949f071382ab6d6227513d5f9837b8af469d2
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_ziwei-1.0.0rc3-cp39-cp39-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp39-cp39-win_arm64.whl
Size 1.0 MB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
3483b67585cae741feb03f002b4d53d92255d0a8c65dcd5590f3406727214f54
BLAKE2b-256 checksum
How to use checksums
67a748e4eeedf71a7e562148f21ef5acc6a88e12232bc32c357b3bae97572179
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_ziwei-1.0.0rc3-cp39-cp39-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp39-cp39-win_amd64.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
d1b3c4fceb7c925173f76ddb4437c43d10a4d22f566c6dcda1ce987490a254cc
BLAKE2b-256 checksum
How to use checksums
3a8f648620ae62c50e9bfaf5e52542a579d05c575c667e008e39a15a32664c53
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_ziwei-1.0.0rc3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 540.1 kB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0b3044fcae5e96c1e3ef0bd051a1052857c1989c6e4ef089997c6eed48310e70
BLAKE2b-256 checksum
How to use checksums
23a4413dee8b57d2fdfacbc45c906efefcba9003cc964d989f5c52336664a7d9
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_ziwei-1.0.0rc3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 495.5 kB
Tags CPython 3.9 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5a27bc1a51e19b603af1a70762a5081d6c35a7b0dd29c5b74bd4d10e26691dfb
BLAKE2b-256 checksum
How to use checksums
8daf642dcaabc2066dcf4fdaa4c4357044ac5554f6f2f09e7503f7ecb6f54e2c
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_ziwei-1.0.0rc3-cp39-cp39-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp39-cp39-macosx_11_0_arm64.whl
Size 480.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
53509db652886ec72edc123a64af458f1eeb0a8ae939e1081a7cbcad50be235d
BLAKE2b-256 checksum
How to use checksums
18f458ae72e001afafa61ad7f41e32f1b727bf23da1c01f780ff4f5bd3e0e1a2
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_ziwei-1.0.0rc3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc3-cp39-cp39-macosx_10_9_x86_64.whl
Size 499.1 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
34d54796b50282ba4b54e9233ec953504f91d19a76942577a80d14cc1cd496f5
BLAKE2b-256 checksum
How to use checksums
5e005080c1d49e92a0133d4fe0d54b7bf07e8533603b4556165e9b181a52c26d
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