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 first release is still under active API stabilization and is not yet published. Source builds in this monorepo use the adjacent C++ checkout.

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)

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.

Release files for py-ephemeris-ziwei 1.0.0a7

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

Built distributions (wheels)

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

Total release size: 22.7 MB

Release files / py_ephemeris_ziwei-1.0.0a7.tar.gz

Download URL py_ephemeris_ziwei-1.0.0a7.tar.gz
Size 34.3 kB
Tags Source
SHA-256 checksum
How to use checksums
f445c360ee58cf92dd6b2e9ddb7a4218ec33376f215405ea164ccdefa68c8ea6
BLAKE2b-256 checksum
How to use checksums
4ace483a25fefb6d5838d6982ec009529b37f7fc918e5cd484b2a219fa465dd6
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp314-cp314-win_arm64.whl
Size 974.6 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
98bb192fb59be1ad59d8ac9198affe3bc9f9a837bc297f92875c359864616aac
BLAKE2b-256 checksum
How to use checksums
767b9f7a1b06afb3a2ddd6b19afd52753eb4a332f97818c953f4199e3a3c18e1
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp314-cp314-win_amd64.whl
Size 1.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c33b81fefa8e3bf02ab1de6f440beec62e39e6c7b28eede8504ebec888c804b0
BLAKE2b-256 checksum
How to use checksums
164c7b1e092e03b6ecca3f3501171b5d549eaa97c496f47b69596c8587bc89fd
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 395.0 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b3ce173a8850f188996b5262c91d2add6c47847bceeca3ed0edbc0fb8dcb1cd9
BLAKE2b-256 checksum
How to use checksums
eadd3fbe52877f6f43174c8cc20cc3435172af71f53afb8b037d704db2ac7582
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 357.8 kB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4f9b212c08c47a41a63e38af44a3aaf8701b58e27d8e8a6ef0ebdfb4431f9207
BLAKE2b-256 checksum
How to use checksums
86e8d2eeacb53ad51d8081e9bb6f6bcfa2624e5f88c197558713f05c601ce9a8
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp314-cp314-macosx_11_0_arm64.whl
Size 376.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6d73b98c482a3098763f13521bb0dcf7b0306e85333750e41b99240225432253
BLAKE2b-256 checksum
How to use checksums
b311753cc4d89d682a33a4dea017b9dbec77421f164b9d43347bf5f847aab772
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp314-cp314-macosx_10_15_x86_64.whl
Size 393.4 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
42a4efe3188ebe65a1c4539535b8e9cf0fa790fa3d2de78562dbc6e4544aa020
BLAKE2b-256 checksum
How to use checksums
93f03d1d8f852fb677aa8cb340c20e9bb7795c7ab9a3e6157d8b2b5b42974f89
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp313-cp313-win_arm64.whl
Size 946.6 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
cc311c6d77a31dd0440d4d5d17c81da850efb625072195395eb6e0befa7f0930
BLAKE2b-256 checksum
How to use checksums
52e893fda83571c2e8a58aa5ef1376a627bb9eb7aac46f64d7d95ad926c2005d
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp313-cp313-win_amd64.whl
Size 1.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7bb664898cf5b55d4dcf0b0ef6d13ea965aa640fa58cb056cb5e459801c611ef
BLAKE2b-256 checksum
How to use checksums
6799c0802fd1ee1010ee3cc85dfe11a16becad73dbde10dc35e59cdf98a2396c
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 395.0 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e6f525a161e668e82aa243880898e77175c7b20d967b9d61cb46de93dc990a70
BLAKE2b-256 checksum
How to use checksums
e5db9df814d37a5c95ea5cf667efff42a978d273a08d713a31cc42b30c5a99c0
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 357.3 kB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
791fafaa6d4ce62857097a5ed69c666f5195a557b9dbe628ba3d6d62bbbc8d3f
BLAKE2b-256 checksum
How to use checksums
6a2fbc326000815823b8b159ae77872fcab0d46c56a8cf8fd709e2a9830bceb8
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp313-cp313-macosx_11_0_arm64.whl
Size 375.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
da6bbf682f0bd24b53c1f6b2418a2766bbce2db192b3efa1a464db5cbeb3c316
BLAKE2b-256 checksum
How to use checksums
116a19c9c4f04f112d9e8b2a4308a42f29a952a69977e57b7474393b8dc5f3da
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp313-cp313-macosx_10_13_x86_64.whl
Size 392.9 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
1c380463d9f180dbadf58eae44533519a89dd16468141b06db6c521df941486f
BLAKE2b-256 checksum
How to use checksums
43f1c251fd33aedc776c5c1d5bc97777f2f4a6f0e4498a1c36bb3b3925972e20
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp312-cp312-win_arm64.whl
Size 946.6 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
e0c0e30544b7e5eb0ee93c021eb66e6e3633c3c2de2c140b9da50b055fe6b252
BLAKE2b-256 checksum
How to use checksums
776f6f681c5e13b45b786e5a401e10fd2aceaf7cb65e8c6c590d16008e4548c7
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp312-cp312-win_amd64.whl
Size 1.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5af63088da550c8e40955e39f0430ebf9fb49b1005e8cdc99c90e78bb68a7ccf
BLAKE2b-256 checksum
How to use checksums
5433eb28fd54c1eb956ac7fca084fe105c55211d20e43ddc29b90911def759f5
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 395.0 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
85b417536ebdb4591605eaefefe5ea47523f688268a52c34d3a5c1965b2c15e9
BLAKE2b-256 checksum
How to use checksums
fa671f37cbb3da8b4697a47dd975cd470ebf8cbe570adf86bbb54bab7a53cbe6
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 357.4 kB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
60e7eda696095b89cb9a68a10e4408a25ee5d1755d77ac180f1c198619c4f03e
BLAKE2b-256 checksum
How to use checksums
efdd6f5838b0438783018ab76fee23edac3b768686ad5a601e31cfbba8ca26ba
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp312-cp312-macosx_11_0_arm64.whl
Size 375.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9e5ab956531b5055caf74fb22c344c291fe52cd6e4fcb322104b1c75b44b745a
BLAKE2b-256 checksum
How to use checksums
c3a833261936b5e1fcb0410d9d0d1e4bc78ca0cf9593376a7ce227d61927b117
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp312-cp312-macosx_10_13_x86_64.whl
Size 392.8 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f4806a617d97d9803676498b428205aa92533380de6d62aa599f825ae60c0ecd
BLAKE2b-256 checksum
How to use checksums
2a90984c52df998ecf7aae4f69aa28ff9bcfa9e76c90b8ca5c747062fe36ef54
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp311-cp311-win_arm64.whl
Size 945.6 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
157e10fabfb95f66531a98c101b8be518422eef8510c4d1b97c2497c1c93b1ed
BLAKE2b-256 checksum
How to use checksums
12a5a8a399a1bffe8d99af37415d71c999270a54595008fd036bb9fb09ef2ddc
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp311-cp311-win_amd64.whl
Size 1.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a936b47e4e3ca6526be5e3597544d61426207c44e9dcac3d5ce8a8f29c3bed20
BLAKE2b-256 checksum
How to use checksums
e363a7f2832d6f35318c2cb0723468f9c255c4bf964dcf0fbc6839feb859a431
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 392.7 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
134e24e922c7092155d2ec6eb55ee15beec10012f83f265b7133643b4064c010
BLAKE2b-256 checksum
How to use checksums
c3e488794877a10b902ef19284e11f9f1412cbface2e3565822842907fbd25ea
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 356.5 kB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a7724be485bc10d8fc9c30286a02eeee10dfa84d1959d2704bb7f348c6f864ef
BLAKE2b-256 checksum
How to use checksums
5f35f9703eeb8f982d8da7fd21666ec546aa073afaee3e6574be30568ca0238f
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp311-cp311-macosx_11_0_arm64.whl
Size 375.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
922c8d1c2a1f4ebf0af354b4ec01d451a956bea4c991f1f5eb814fc936cf5fea
BLAKE2b-256 checksum
How to use checksums
d7335f79a4f019ba2eda56347b8f990b1ce3e5b4c917ed1989f770c3fa271bbf
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp311-cp311-macosx_10_9_x86_64.whl
Size 392.1 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bd742e7a11d768b01dcf4e9d777c1ce35835cc60d9187f67c1b9ab7bbab3feeb
BLAKE2b-256 checksum
How to use checksums
f8bdbd67269f33d0f409b579dbc3617fe5b45d3a869c2207c1ba9f6c3db5b639
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp310-cp310-win_arm64.whl
Size 944.2 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
9a9ca373d6252f91dea5115ec7bb5112b57b8a41ad00e9c44d26312843acd32f
BLAKE2b-256 checksum
How to use checksums
4ca02f8670a90c0f64eeb15c3fc35bd8a67143024b29a495723dcb6a001359c2
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp310-cp310-win_amd64.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
daae90cdf83b6f42ceadf047c486043c3164eedce70d10bce9a87224dd8dc211
BLAKE2b-256 checksum
How to use checksums
256fe7052eed50a10013be6f5f98f33088d8c085ca98574f8894874c1ae96f31
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 391.0 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1aa6d528b8ebe0b6f91d508464cf859472860cda233520a8f764a8381ba1952d
BLAKE2b-256 checksum
How to use checksums
789077f4abf85d48122613adecfc6cedc21772739826d5d913fee4b6e11f0488
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 354.9 kB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d77ffc17a616d9c9b81e0ddb70c60aea68d084e4c1fab3de51b61e297905d4ba
BLAKE2b-256 checksum
How to use checksums
5965e48ac4f6c35b4286ccf98cbd0d650d8146c2542ba5759537db80f14dd33a
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp310-cp310-macosx_11_0_arm64.whl
Size 374.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2c55fdd63be51fae78cf7225d244128b0f5369984287ad95a53e836be843acdd
BLAKE2b-256 checksum
How to use checksums
cba419424db2fb1f446fb29d01870ecceaa3f865b24cd1bf7e54f9873af4c77f
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp310-cp310-macosx_10_9_x86_64.whl
Size 390.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
dc690f277949d4264cde9fd9b2e0176c013ca98b5f6515aae648ce6ee993211a
BLAKE2b-256 checksum
How to use checksums
6e6c1e073ccef42cc03548ef011aacda405fae0a4b950e9ede787ac06c182d70
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp39-cp39-win_arm64.whl
Size 945.2 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
d2d2dd950a4b1cb623aac637359dd27d91dd39352de5b4d419c2e521ef6e3fd1
BLAKE2b-256 checksum
How to use checksums
744db944626a3a458558ceaaf51796270ef47ce0bd290dd084f92e969d04bde4
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp39-cp39-win_amd64.whl
Size 1.3 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
d513d4b2c665086d044b1476e8b4eacd05cd0d0e944e545225c1915c0df8cbe5
BLAKE2b-256 checksum
How to use checksums
dcdca6378dc33b26c404a05232621e7616cbf6d1d28d8e6c93ffece6ed510291
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 391.3 kB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d1b3e4e3ab94c6b500629133ee2f36d0bff1e8c0585455d9c6edab30043d62be
BLAKE2b-256 checksum
How to use checksums
fe820f2e2dd62c9cc22289d6e32e3dfbb653e5885bb67daea4219e700bc85802
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 355.0 kB
Tags CPython 3.9 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a50839ac038cf7ff4b0db5050763ce924557b21bc259732d5e5fea1cbd57ad12
BLAKE2b-256 checksum
How to use checksums
0b3ffeead63a2a770a9850e5c0916f6b80deab722f559024dd1ea337af06fd98
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp39-cp39-macosx_11_0_arm64.whl
Size 374.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
20bc653b01e4cf84d60e9a57912f95e4a5e7546c25dc2172888a841372bc8268
BLAKE2b-256 checksum
How to use checksums
9da419552b3f7042c9590bd027a3844bcfe13151a521456adb970a0293a8f256
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 Aug 21, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0a7-cp39-cp39-macosx_10_9_x86_64.whl
Size 390.6 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e7649a3e36326564d652f1de831a46b49cbbd5085d0be65a3a8f795852c46967
BLAKE2b-256 checksum
How to use checksums
cb6fe9d29d07f461c0aa960f70b87d8dad344c890d329567bcb7db8b5e18b5df
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 Aug 21, 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