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.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-ziwei 1.0.0rc1
File Size Uploaded
py_ephemeris_ziwei-1.0.0rc1.tar.gz 46.3 kB Details

Built distributions (wheels)

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

Release files / py_ephemeris_ziwei-1.0.0rc1.tar.gz

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

Download URL py_ephemeris_ziwei-1.0.0rc1-cp314-cp314-win_arm64.whl
Size 1.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
ae0991b0d8eb1639df19c3f486c0f7190f36702d9bed29617c8ffb21e263ac32
BLAKE2b-256 checksum
How to use checksums
9c2fe3da51c9bd3a5121c78352abb803982c575dd408ac291246be707c1434a8
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_ziwei-1.0.0rc1-cp314-cp314-win_amd64.whl

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

Download URL py_ephemeris_ziwei-1.0.0rc1-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
501d841a3bd4890b246274cc379a8304094f82cb6132edc9f426446ad0258f95
BLAKE2b-256 checksum
How to use checksums
5a3504602fdbcadcb367393384e5ccbcde26919b89f582e4d02897e894cef444
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_ziwei-1.0.0rc1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
c90f179b24397afbdf137718e9176b9c221c243df2007c15d308731a9b4bfa49
BLAKE2b-256 checksum
How to use checksums
28ff951386e66fbe59f7a16ee9215d4d0b9bed461220ccad64e45c0085a4bc9b
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_ziwei-1.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
0a7f728f5ed99b0034dd70c5d373ae3cc9d3167ac43df7391d92345035faf1ed
BLAKE2b-256 checksum
How to use checksums
17841b2d74da769946760bfa2968cc9cf06eeeb616cc1767877500619c8329b4
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_ziwei-1.0.0rc1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
4140832888c14e98e9f00b251fdccfa1138cf043aebde6627aca9433abfe3f7b
BLAKE2b-256 checksum
How to use checksums
cacc73c77505907d898136321391d67461645d0d11e950dbf8e7e0cf02122db0
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_ziwei-1.0.0rc1-cp313-cp313-win_arm64.whl

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

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

Download URL py_ephemeris_ziwei-1.0.0rc1-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
85b22d88ee9e85995be032a985513efb4eb2ca33faaff64f03b01024066196b5
BLAKE2b-256 checksum
How to use checksums
8fb3e8bad038858baf54252c28b3e526fc94b287623e12c917a299d2fcfc2739
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_ziwei-1.0.0rc1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
39c72c7998630d5a3af0747821b0d42af06fa3ef34859cb960aae48b3fbd8a32
BLAKE2b-256 checksum
How to use checksums
d6983175d282707738b4699a712564f76e9786c8e0e7b7a99ad4b45697c89cc1
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_ziwei-1.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
07959b82ccca0e91a0b4d1a3ef3bfdf904893655e8e0ab07a53d08785a7ebe8d
BLAKE2b-256 checksum
How to use checksums
5d0e701bf9968a51da58bf1a390157a8f7a5cb664f0bd438bba5fbb824749730
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_ziwei-1.0.0rc1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
62e318db67d97db226b1d3f1ea18ec93d06a025d475e553a239b449bcd21d2af
BLAKE2b-256 checksum
How to use checksums
431f3c6efc32bf4a61b5e1abfbc4ccde86dac7c888ecfe4789882244a8104fd1
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_ziwei-1.0.0rc1-cp312-cp312-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-cp312-cp312-win_arm64.whl
Size 1.0 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
35daa1d898531fff5aee47f29b3bf71913c5559161e693273c327a18188fd6af
BLAKE2b-256 checksum
How to use checksums
4f7fae0000233a91f36e17b071d453fc3ea9f6bd505df3ac6090c03e3578b4cb
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_ziwei-1.0.0rc1-cp312-cp312-win_amd64.whl

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

Download URL py_ephemeris_ziwei-1.0.0rc1-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
b4eecfe77294a5313100e78183cda4df1651904b8183a26825b264623c63fda7
BLAKE2b-256 checksum
How to use checksums
a0fc17d985db18c94272a5bd6e941771c213a700c9d252de5baa3c1c32225ef2
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_ziwei-1.0.0rc1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
77d70dc5ed796e45ab2c3da464d201541353197030002245ca444a9c2ca32fbf
BLAKE2b-256 checksum
How to use checksums
0319e15fd65873447ecf3dfb1816622a24be86ba482979d1123f455fb34dce30
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_ziwei-1.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
62fb9a589376be7dcbcbb3b361a0536ca5ceb120ec6c53162cfa34baa74c09b3
BLAKE2b-256 checksum
How to use checksums
6eddbf081133cb272773ac7980942ba12bffca6b185b95db206756dfdf3bad69
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_ziwei-1.0.0rc1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
5ad8ebeb98b0631bbf4b1dbf8fbcdb9723a5c40f20957cd85afe50d25f471530
BLAKE2b-256 checksum
How to use checksums
08e22a8d27989a04710ed620e3a9c8779c01b9d8eea41b383ad12b1f9a8ef307
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_ziwei-1.0.0rc1-cp311-cp311-win_arm64.whl

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

Download URL py_ephemeris_ziwei-1.0.0rc1-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0db55ee47f354c2259912c2563c562b3d5fd5263b84a57aadd588287960c8d1b
BLAKE2b-256 checksum
How to use checksums
898d96aa7846a2835e979f3cd7dc8dab6f5bbf4a73c41d0a858b4ac18bf1ad07
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_ziwei-1.0.0rc1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
7908dcbb9b65b4e6cff1a80136b09afcb7f8d359d819972079b847488f66d91a
BLAKE2b-256 checksum
How to use checksums
16772501b31868f7e2a7b6ebd362c9ea4ba20a5b0ee9c12811c03c6a6b93dbe7
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_ziwei-1.0.0rc1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
8635ca68ec1ee5767a3b1e8d3c7c0defec81fb70d260ecbee73ce645a1169495
BLAKE2b-256 checksum
How to use checksums
0a26eaab72e52b61076a91747f610a5e699786d61d310c9c90fce26dcbfe217b
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_ziwei-1.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
8439183dfc9e230e0633d3bffb0d220387a60e6e5825087ce1a8845e31df1c78
BLAKE2b-256 checksum
How to use checksums
182acfc6af8ebf1d75f6dac74ed5048038313f7001507f9a8ac3e6fdb097686e
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_ziwei-1.0.0rc1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
72076ca3ed9670e81bec25b99febf9c74732452f71d9b87e7ce4f9fdcdccf27f
BLAKE2b-256 checksum
How to use checksums
723dac9ea26c8c3f918581810c0865b1ff5b57f6ce6c3e78281aa97f7339151a
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_ziwei-1.0.0rc1-cp310-cp310-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-cp310-cp310-win_arm64.whl
Size 1.0 MB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
9b68f9d2cd0863922d18015e245b1f0145c9c46e9b515774209db5c92edc82b3
BLAKE2b-256 checksum
How to use checksums
3d686cc1f7974844df677af5558cea8da8562f5ccf5a332ec0830cbb0f773c51
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_ziwei-1.0.0rc1-cp310-cp310-win_amd64.whl

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

Download URL py_ephemeris_ziwei-1.0.0rc1-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
c6bd4541b976b182b9e91cff457d2ec4be90572262652f8d394863acbbcaf79b
BLAKE2b-256 checksum
How to use checksums
9ec9a389a183f043c67052d0cbf520ca0e73ba2eca9e54b329913a6170097171
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_ziwei-1.0.0rc1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
4a40fddccc1bc59f8fc86fb2914d31319799fe093ceee3210201dbeb480cdd58
BLAKE2b-256 checksum
How to use checksums
126d13e299c758e556e039908c93195198cbe5c9f91da56570f5f1839bfc0b70
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_ziwei-1.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
08f0227522701bd762c283df9026b4243e3aea198113f55db6491dcb81f2d11b
BLAKE2b-256 checksum
How to use checksums
06a73401f58e1f7376e24fffaeef1bf7ead6f8339179136af029c6e4f4f2e4d8
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_ziwei-1.0.0rc1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
7af4e41d2f4882eb3e37f0678179ecd63a2695c2d0933fd9ae140a59d5e7d783
BLAKE2b-256 checksum
How to use checksums
978c6681d2205d486041b3a39a713a6796f2370bbe21cd251d3a8b97f98ffc8d
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_ziwei-1.0.0rc1-cp39-cp39-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-cp39-cp39-win_arm64.whl
Size 1.0 MB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
75cc19525805320c79ca387bfa1cda3a0d812814a793a9f8dc1ada023c8d7aa7
BLAKE2b-256 checksum
How to use checksums
0eae05b722fe18ec64d18d3af2555b77ce6dc12663652c38bb22647e55344e2e
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_ziwei-1.0.0rc1-cp39-cp39-win_amd64.whl

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

Download URL py_ephemeris_ziwei-1.0.0rc1-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
a7fa46969f559706538e503e67a0562a47598c207c2a312156e74d2c20c91508
BLAKE2b-256 checksum
How to use checksums
0ea0071dab40bf4bb2e687900a08573941dfeb12538651bf13ccf12d5b876f45
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_ziwei-1.0.0rc1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
cf6a392f051a5015f86ea56b2c234ae15afc2be11517ebd97746d8becef146fe
BLAKE2b-256 checksum
How to use checksums
8f05bb61db61041956af5605412e5763591f9026f02a208e721bfeb594c27beb
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_ziwei-1.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
c02c91be5868409197c003084d7a184ab850326d7a7866aefa5e22f06da1347c
BLAKE2b-256 checksum
How to use checksums
2a7ebf3473a5fbccd9fadf70eca34aeba7df060c653c6334637838e55f8b904c
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_ziwei-1.0.0rc1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0rc1-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
6502c39df7635d3f068c033510b104de88b015f4cb38e19853fe934a4a44e173
BLAKE2b-256 checksum
How to use checksums
55cc1710ec151914b1ea7b159c166459e1154c6b15066f2fdd44f3bd42f6556c
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