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 Taiyin v1.0.0-beta.8.

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,
)

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.

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

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.0b8
File Size Uploaded
py_ephemeris_ziwei-1.0.0b8.tar.gz 37.2 kB Details

Built distributions (wheels)

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

Total release size: 24.7 MB

Release files / py_ephemeris_ziwei-1.0.0b8.tar.gz

Download URL py_ephemeris_ziwei-1.0.0b8.tar.gz
Size 37.2 kB
Tags Source
SHA-256 checksum
How to use checksums
056ccbdab03422c6f82c7ad64fa690ccb249479f5e44406ebac31ae2a5c8dd8c
BLAKE2b-256 checksum
How to use checksums
aa7b110abf736362c490da9db951ad3fa5d557d440088e5a80be4ff3161ebc25
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp314-cp314-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp314-cp314-win_arm64.whl
Size 1.0 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
2b2ea7108136a6cc55833cd9700e916fb038eb26157c6cbd58710f7183229887
BLAKE2b-256 checksum
How to use checksums
c8584147b82d2506ae8df5784368a6cfa6e87e46a6ba0cfb08842406e636d5e9
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp314-cp314-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp314-cp314-win_amd64.whl
Size 1.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c494bf695084e0a52dfe9a2956ce8177bec553711fa2fef58a8f832a4ef3349d
BLAKE2b-256 checksum
How to use checksums
4314121cff697c51600e481eca2f01d4068d31ed756d3571a5729adc995e0119
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 460.5 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
68e8db6825cfa24242f9d8402c04d7b51b1add899186a50ce860239890d1514f
BLAKE2b-256 checksum
How to use checksums
ccbd85815f5ec826822e0c416045eabef5baf0cf024ec96f722a8a99c4ee7188
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 419.0 kB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
971141599343876376169b6b007d785ba1625472685469da828c3e82a8731663
BLAKE2b-256 checksum
How to use checksums
9fd4a23fc70c4b57b097574e75077db707bd3f3520d0e1d5f550b6c7661a7541
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp314-cp314-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp314-cp314-macosx_11_0_arm64.whl
Size 427.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
39e7d0d2bc11142cb76029857205ea514a4f4840713b6effbc374ba4b06a1313
BLAKE2b-256 checksum
How to use checksums
02b806d88f494ba961b963696e875535eab1e7f54c6bcff803c4f1f0d9ffd79d
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp314-cp314-macosx_10_15_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp314-cp314-macosx_10_15_x86_64.whl
Size 444.2 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
af0faf8839b99d77f313fac2b55c8afbefc061b2175e9613f4340e5258d9ec23
BLAKE2b-256 checksum
How to use checksums
166b4dbeaa4c75dba731050c265d51fa1db12e5494646f1238d8e638334c417f
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp313-cp313-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp313-cp313-win_arm64.whl
Size 996.3 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
476b8c7b657cff6e0008d0c7e3447cdbd1c8f25dac816dcd1072eabc42f10547
BLAKE2b-256 checksum
How to use checksums
1a8e96a385f344f68e49c49513838c3f9155ec8cb626dcf11bc6a486b9cd1379
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp313-cp313-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp313-cp313-win_amd64.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7018d170f6b81acb080ae3cf1a474705033bb8b0855e3fcc15244407e1e9c15b
BLAKE2b-256 checksum
How to use checksums
14dccceaee9185f7f08ecc7ec99f4c62ccbeb5b4d5c24478879b195deadcffc8
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 460.5 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7696d0c20181e8d45c44947b8dc29f61aad4c4d02dbf556ac2397d5e50c48dc2
BLAKE2b-256 checksum
How to use checksums
67a3952b8489da7e6e7ea931195d9e18f20f0b7de1d4d59ad09e1b3ca91fb48b
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 418.4 kB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1d9e1498cbfa62a5d8b2a13b06102afe5666a326919b8db9f72577527c1ff377
BLAKE2b-256 checksum
How to use checksums
95c58cb8d930493f2bca145eaf97be158442225d6ae0c092401e85227282eb9a
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp313-cp313-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp313-cp313-macosx_11_0_arm64.whl
Size 426.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
df8c4e13db7ffc1a135fc4ad2175a622bcf84cb44fdd1212e8650818f6e454d9
BLAKE2b-256 checksum
How to use checksums
292a27a6721060a669ed0d2c30f1045b091c2ae61ca077b7ed908243c38a4c9d
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp313-cp313-macosx_10_13_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp313-cp313-macosx_10_13_x86_64.whl
Size 443.7 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
6306635522e51a69c0e4da9b074c547814a199ab557a8235a76201f3a6e847d2
BLAKE2b-256 checksum
How to use checksums
54acde40b8c1457b248e6015f8ce575e26277cbaeefd179d9826020ad5beed9b
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp312-cp312-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp312-cp312-win_arm64.whl
Size 996.3 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
54f6191ae04397ba81402ffe2cc840fae08684d643a3305590dae8adc0e87763
BLAKE2b-256 checksum
How to use checksums
5b167723776e098530ce85977c178212d08ae407e34f4f8a68cf42e94dad1ff2
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp312-cp312-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp312-cp312-win_amd64.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
d725b1f3e0df4bae028021ec86b93150a507d32e2bb79c65f50215b4234a8fbc
BLAKE2b-256 checksum
How to use checksums
b106e5aa758ac9fc24bf79d3da8de9991f42995797cea2e1edf88c59070f485c
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 460.4 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
536ffcd90fe7cef10873a4392e0fc350d78128a0d460d193a2abc783a703a3d2
BLAKE2b-256 checksum
How to use checksums
0417406360de696cad2ae05d01ea130ede5ac8651542b1825ead14193d586a55
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 418.5 kB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7cb7279e49364d24e35f23bee8a01806c35ef91639508ca598ef139f28765b95
BLAKE2b-256 checksum
How to use checksums
1f67366b93877f0650a252024ca81f7dd1e4c9a548ee70ecf0221103187a8aa3
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp312-cp312-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp312-cp312-macosx_11_0_arm64.whl
Size 426.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
97061171e9069535890da7dc0dda025ead4f2ddbbdc97e8c10167346fc19fea2
BLAKE2b-256 checksum
How to use checksums
31b812b4b2f806d095045a178c2e450a189e095e70080f4de26d1f5384fc58a7
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp312-cp312-macosx_10_13_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp312-cp312-macosx_10_13_x86_64.whl
Size 443.6 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f253b21dbd72e7b4bb842d2325fdd5019dbe9359cf580520d3b4f158b7364446
BLAKE2b-256 checksum
How to use checksums
5db862b3c5f0f2e68c337d4a5b2635565da714d6dc99abd138f04a374e81f7b7
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp311-cp311-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp311-cp311-win_arm64.whl
Size 995.2 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
542e28347a02829001516a1efde684042fad279d893362cf26d31588a60f6962
BLAKE2b-256 checksum
How to use checksums
3a9347b612d7e42198c7566dea92b831e2a469f49dc588800cfe69a2086a9ff4
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp311-cp311-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
bdb15fa21ec5c7f2c78fd554086c637bff1b5b04d3c5813ec7c13321014871c5
BLAKE2b-256 checksum
How to use checksums
68302e7c3490c3a7ff86e499098676cefc7f71f92c8d40be9970915a7d06170e
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 458.8 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3bb6a4daaf91d15677b509b1b5855c9eb58a9639d8475ef27a146426d44256f1
BLAKE2b-256 checksum
How to use checksums
4b08cf06ee83fc0fa7f359a6d47a8c03b23de41ce40f5abc48d1cd17d782650b
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 418.0 kB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ba1f83dadd4c3aeed4ff1b87a8385990b79fdbd5277a9b14516e7cc1ff1835af
BLAKE2b-256 checksum
How to use checksums
ca03ea4739828df48a60b96fad26cc1daa42c826d59e73746e7469dc174807ac
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp311-cp311-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp311-cp311-macosx_11_0_arm64.whl
Size 426.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2b0605891304009221d34b443005b25a132dd51cef07339464a34080652ce343
BLAKE2b-256 checksum
How to use checksums
74b477e8915e123333284ace6513be064b8ff42b4d6870a575931cf144dbacb4
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp311-cp311-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp311-cp311-macosx_10_9_x86_64.whl
Size 443.3 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c363f436d5c9dc59ea1c67b5b94f75e71348c9722bb9713b11c9e8cdbedb585b
BLAKE2b-256 checksum
How to use checksums
8ab6ec6fd84a59e1b5eece11bbf0c5210e3c6d505c74dbc0951f4f5e598d3d2e
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp310-cp310-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp310-cp310-win_arm64.whl
Size 993.8 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
0426e6c36079f019d92505eaea98b90a20e1929de69f9a319331d0d17fd939dc
BLAKE2b-256 checksum
How to use checksums
fee9f29073ca9f55daeb51c3ce25f47d75e3bea01a2093daf152f8ce5f453b22
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp310-cp310-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp310-cp310-win_amd64.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
d82ef2bc95dd9720db6482941410ee380b945f493cfefe16cd11b1264d9d9744
BLAKE2b-256 checksum
How to use checksums
4d769ef85f4b35435ac0fae237997fc12f519c52c5c276dd7d482b63df6af762
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 457.2 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ed2671e06976459130cdd964963cbeee00edd642ce0e4a8e4f1a254b0a3cc544
BLAKE2b-256 checksum
How to use checksums
e5743005fac0309a1069939de80b891f55813992e9c90627522241c04fec1ebe
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 416.4 kB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c17c33531cfd1fdfe8ee4edd101ad18dfc0877cda0180f9c07723752bdfb58cf
BLAKE2b-256 checksum
How to use checksums
67ca592e7f472c4e0ca33d27155e28c47d4cff00e59464bbdb612ca11e6484f9
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp310-cp310-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp310-cp310-macosx_11_0_arm64.whl
Size 424.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
55a3f38129e01aa1c3b4df5367ed55ec12c2ecb11190451a1fd66d0f07a827df
BLAKE2b-256 checksum
How to use checksums
2a0c0f4ea8b88452a693af99ae2396609bbfdc227cbb22c9455fc7a59728875f
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp310-cp310-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp310-cp310-macosx_10_9_x86_64.whl
Size 441.9 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9e6340892b5041563e06f9d5af00a7fcfe3dd4890a8d4e16aa7620db1a8c0940
BLAKE2b-256 checksum
How to use checksums
38c3aeb07c36e68407f465494360f685799014bc18d97880b6ba0a9fc498d305
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp39-cp39-win_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp39-cp39-win_arm64.whl
Size 994.7 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
376671842a6ff6d00add909ff512238d3a1fb6ba3c3ae034c48880a4f358d135
BLAKE2b-256 checksum
How to use checksums
2fa1cbca98125bc04219800e7303da06bbee4890e2c0a9dc8a082b8a045a4b47
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp39-cp39-win_amd64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp39-cp39-win_amd64.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
b0b4d5acd2e41d3ebb6b1d5697d17d599802ee7670924d50338ed2659a31f4fb
BLAKE2b-256 checksum
How to use checksums
04f255670f7cf45ef058ffe9f8802d22d4eaaa022549e4fdda3977e956c1ec59
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 457.4 kB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c300a950c06266f521a7b1ab64f63fa62246341b6480be37aeb384c6b04850ea
BLAKE2b-256 checksum
How to use checksums
2c07efe4c32cda84ac56f2a7302371c771bfd7e558ff8472d84a5bd4b6e3bf79
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 416.7 kB
Tags CPython 3.9 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1a20afa4475239b009d45dae4bb9fbb89fc1f4a302ccaad9ae41dfb4ac7f6262
BLAKE2b-256 checksum
How to use checksums
afe248967c3da3840c6e15dad9860615e68ff68754734f50c77e6f89e610c9b1
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp39-cp39-macosx_11_0_arm64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp39-cp39-macosx_11_0_arm64.whl
Size 425.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
16581bcd70509d94695888c2300679760baa18aa6d911b425856f2960276276c
BLAKE2b-256 checksum
How to use checksums
03486028028bee728b3b817949ac95157c928966112822c83f9764d67b536ee2
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 1, 2026.

Transparency log

Release files / py_ephemeris_ziwei-1.0.0b8-cp39-cp39-macosx_10_9_x86_64.whl

Download URL py_ephemeris_ziwei-1.0.0b8-cp39-cp39-macosx_10_9_x86_64.whl
Size 442.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a125783c856e78fb22c22a587150a84e189a3bc37d61a30fb2e8998a8d44ede9
BLAKE2b-256 checksum
How to use checksums
633c71651cfea8555cf91168279ac3ec6a46add0811f8a58bb769440eadcf6d6
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 1, 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