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.10.

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

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

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

Built distributions (wheels)

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

Total release size: 26.1 MB

Release files / py_ephemeris_ziwei-1.0.0b10.tar.gz

Download URL py_ephemeris_ziwei-1.0.0b10.tar.gz
Size 43.1 kB
Tags Source
SHA-256 checksum
How to use checksums
67308a05be1cd8e5012d41bbd2c1dba77f7a40a2f1f69ba6dadba92649cb3413
BLAKE2b-256 checksum
How to use checksums
a0ee28f3062fa8cb6f6ea19812e1dc29382f8047e1f2c41c697136a316b07ea4
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp314-cp314-win_arm64.whl
Size 1.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
31bd89411d567efa26c008f18ffdc1efaa388b591435ed4a4f81386d383d87e6
BLAKE2b-256 checksum
How to use checksums
3cc4cf08da7827a2d72017d6eeabb6562e6c78d7f0a4a41ef2e734a406ef15fb
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp314-cp314-win_amd64.whl
Size 1.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
7aebd0e95f6f96943140a7a689c62dfff41c90d7497e7fb01ae9a36bb171d533
BLAKE2b-256 checksum
How to use checksums
77ee717a099e04043639d038e9859a4e3934a0ac5c85cdf7ed0b3cfab0f20b6b
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 511.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
07793b7647c6deb600f05c3f0f2571d08f911a2f40d6038f1adc10f95e740e62
BLAKE2b-256 checksum
How to use checksums
41116337f53fe12578bcf91cd97c4bad18633349b523397e6b7640034c2c4940
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 467.3 kB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5c81c48227b5763609ab26a298857759ab0c12ca22bdc803a358110be8c9671f
BLAKE2b-256 checksum
How to use checksums
5153a767693d6fe332aeb6fd7804bae28f87fe2e3f57600a4c7c8e2116edfe2b
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp314-cp314-macosx_11_0_arm64.whl
Size 458.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b9e19923d75ed8b851aa8758180b0144f5271d6e47d833e85c11696149dfaff0
BLAKE2b-256 checksum
How to use checksums
b81ceb99e3ea1458d32c5d6975aa852da21fbe3753bd194c541a594aebf47f6f
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp314-cp314-macosx_10_15_x86_64.whl
Size 474.8 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
c9420d6ecb90cd2c2612681768eea2a7720eabd7ce610f140e4fd35b588b0aae
BLAKE2b-256 checksum
How to use checksums
4a588269158477204e8e1554761ec474a88ebcdf9242f53b50d12c7d73ede689
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp313-cp313-win_arm64.whl
Size 1.0 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
bc3aa2436c90c4549ba5e8c5fb83444013ab4f724e9330c78663f3e1fb116019
BLAKE2b-256 checksum
How to use checksums
0ca9061a9365c39f6f006c7a5fd2493cd76e155259d44afe2f255cf20211ef82
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp313-cp313-win_amd64.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
98550b183b38d6514245762b83f1f2c7c46890c9b7766935b3132ad5a9888eca
BLAKE2b-256 checksum
How to use checksums
dfffb82c77a12674e75df027aa4c1525e7475bae5fae51be10934ba68cabdce8
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 511.4 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
371b6f7506344559e5fd0ded68c33d792200e8a31752e540099883c648fc784d
BLAKE2b-256 checksum
How to use checksums
f612c7424d746c25e788e26f23b6860b17c7d6b9547ec8872196ca5184d5e132
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 466.9 kB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7835ed8e1a9507681e02803ca8ba5117074acd660526971011809ebba3b73c5f
BLAKE2b-256 checksum
How to use checksums
c693b899445843e321adba33e313799fe8f48ae6c0e0a3b8d1fb7c1f99827be5
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp313-cp313-macosx_11_0_arm64.whl
Size 457.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3ef92fbc3b11eec6fb069bd15ea0370c2f2eb4b47559af0a113896ed1a0c7b3c
BLAKE2b-256 checksum
How to use checksums
7e257a0600642a7e9eaeaf86e63795ec2244f164d991c7d0fa72df59942493db
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp313-cp313-macosx_10_13_x86_64.whl
Size 474.4 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
68d558ba5e05b633310b049d2d28e3b58b8e6b95616838ce78016d0a16aaa910
BLAKE2b-256 checksum
How to use checksums
b21b2189258d1c568b5cd3504aae621ffbdf6c147376f96c9cb2952dd9379ac4
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp312-cp312-win_arm64.whl
Size 1.0 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
dc5e83e9c8a26df2463b698d66d55d697f8707e60aaf8ff6ef7fb5c4ff0c2ec0
BLAKE2b-256 checksum
How to use checksums
3d25e50cef3dbd0614dc4232839ea35a63eecde6c9eb304be7feafb84d10698c
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp312-cp312-win_amd64.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4bc2d9ba6a769d4100c62fa52f3712ebe4d5c8e5995606dc9fcfcb93e165ad70
BLAKE2b-256 checksum
How to use checksums
ab37aa753747ecb02a390aec59be65c57b55df737db8dc7ae529e15c2f17695b
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 511.2 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f0fa6e9f76ec1ea855bb5694560cedcdf622e738ffa745e84c117e96cb949dce
BLAKE2b-256 checksum
How to use checksums
4b9020bd4805ada92976e23f897cd197b22def386114cb53fb705ef267fabf9d
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 466.9 kB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
efe9fba690b74009f64c0b5dd26337c51d1bfe4243f5544407e387deb38f477b
BLAKE2b-256 checksum
How to use checksums
6ecc5044faf394c0b11bdd33c651444b5721d62fb6900483efe412f422af8a55
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp312-cp312-macosx_11_0_arm64.whl
Size 457.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b3e9ba4044b9e1defdb27812d9649cc4cc70784dcf443817c52f18aee2a6078e
BLAKE2b-256 checksum
How to use checksums
ea85f92d7b15378bc1bd0c30788437929cf60a92f771739099b2082b3dc36714
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp312-cp312-macosx_10_13_x86_64.whl
Size 474.3 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
35c7e552f01d0aae63cf4a9de3ef896fa769423eedca0d8e0030bdce0c783ae1
BLAKE2b-256 checksum
How to use checksums
64e9e7717101740a2344a20a1c7a02f7f4b1ee897557175351832ee1571f2aef
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp311-cp311-win_arm64.whl
Size 1.0 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
1db44fe47bcc3a5eb739b7e54397bd82bb177da9f1f893c058b7b8fac849f031
BLAKE2b-256 checksum
How to use checksums
ef71c3438098f08be2ebacb6be7a2834bd34d6e3d589f40f9ad81b1cfbb502d3
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
66db7d32c56a7c7011b304e4c6d4a07c301d9f8b6a7abfcbf74aebf4547561da
BLAKE2b-256 checksum
How to use checksums
df95ee2c3e6a9bbd80d0d58c843e50e3360232dab904da1ba8ed84d31c9b0612
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 507.9 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c8100e5b3ff75b271eff0fe7c02accd95166373014170237dde99ed59d3669ea
BLAKE2b-256 checksum
How to use checksums
6929e8ec747fa13f591236f0d086180d4c311674ca10d661c2ae1671f4256725
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 464.7 kB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a583ddf5ba093209e7cbf6c3a616a8a18edf7fd1d59116fe9e9cd825209d508d
BLAKE2b-256 checksum
How to use checksums
673b881d3870ce24319e4e6fb4176d033003c56f0a9840b26a7ece39e12b2b07
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp311-cp311-macosx_11_0_arm64.whl
Size 457.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5ef71fc77703c8d12285f780062ce8225ff825d3c43c49fbe46146f32bcfd819
BLAKE2b-256 checksum
How to use checksums
1c2fe10ae150348164fd4c5c2c312e40e9b2778f3140aa1cc2f95709ca78863c
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp311-cp311-macosx_10_9_x86_64.whl
Size 473.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5c58f6ebc6f98f734e2fbd9285ca3a9ed37095c367ecbb27009e74c57e23a9bf
BLAKE2b-256 checksum
How to use checksums
6dde73276f877ded02bf2efc406afe29a0823c0d933f0e05eba548f4bd0df0e0
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp310-cp310-win_arm64.whl
Size 1.0 MB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
d1fe7f613019909a002df1d85e977f167450e4b2d299fb9797dce55484a2d33c
BLAKE2b-256 checksum
How to use checksums
49ee3c6d4c177c93e2abe2bea7c6d0005467796b0a852ebbb324329761d3a58a
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp310-cp310-win_amd64.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e6e816f1ca1cc701dd7da85bc6c2856f6921d89d515a8dd8adc7f5144dfcd4fe
BLAKE2b-256 checksum
How to use checksums
d196227af0eb309c68d9446944386ffc51bbf330582b3ad0c97689fca5192941
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 505.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
20c3eb24abad45d7d45b3a67565643949120222e8440c768f0973c82a685888d
BLAKE2b-256 checksum
How to use checksums
d34a5fa39a22ecdabfabde8e3d625b11d98d62228af9ce974119c58b0f70a677
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 463.2 kB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
64157f305bde140d2dc554d70367f3b7e2976fbb91e0522c3cc132cc0b624268
BLAKE2b-256 checksum
How to use checksums
433317f86bff3e2df9b5dfac0b8eff09c9f1cd4c29ebd517fd0a03360eaab649
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp310-cp310-macosx_11_0_arm64.whl
Size 456.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
83872932359d3bc7eb5fd84c39237ff551c531a4a5916b788b097ce905630e1b
BLAKE2b-256 checksum
How to use checksums
4252933096a2a8a7548af62a7825fe7e0fe2caf24bff38262d6428f79d1afcde
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp310-cp310-macosx_10_9_x86_64.whl
Size 472.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a491f71d36061c0c512180084f1f048b31166729c6ae6e479f6fbfee148449c1
BLAKE2b-256 checksum
How to use checksums
463097e936d356afae69f2604c684e38a8c93bf4cbf570591e3a5e155c4ba897
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp39-cp39-win_arm64.whl
Size 1.0 MB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
63e08e00fe5c0cab1c2e64f5b6339a95448dbdc9c4a99249a3465496404ca8cf
BLAKE2b-256 checksum
How to use checksums
51851b9ba00ed1e96ba22b5c66483b6802d74f582860e2d25a36e0f4b67497ed
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp39-cp39-win_amd64.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
526cf93186acf9ed84328856bdff329cbae53fccab0a7739413e3308659f7480
BLAKE2b-256 checksum
How to use checksums
6d31c548b1cd6256362ef71b6fa8e975d28b06e8fc3934d7fc58c173ffea26a2
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 506.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
4bcdb42c2a83b806a2d4b3469b732ecbd27e57e72e2360eb38fe7aad346d55d4
BLAKE2b-256 checksum
How to use checksums
85e5ad780006eb244b2f99a050ec657ebbe6159e8458e29f98698729bca38789
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 463.6 kB
Tags CPython 3.9 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2b7e4e5e465ef8486022bc46bb1b3868c74280565cc16b9afafc4b5a9d25afc5
BLAKE2b-256 checksum
How to use checksums
406fd7186113a4a1d3d6cedeb185fd5b764fe118fa58ac5a417058a4312dad45
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp39-cp39-macosx_11_0_arm64.whl
Size 456.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
334189e6370cd1b0745ddcb07ad03fd64809293b64c83a98ebbe9c2c10315ecf
BLAKE2b-256 checksum
How to use checksums
833181621aa5c1307de70f5d3d4d788e1493f90aac431b48882b15c4bb760f9b
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 6, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b10-cp39-cp39-macosx_10_9_x86_64.whl
Size 472.5 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
962d7f2305e71be970353343ffb71f7e4f21f62d71f09461d5716b4777f5c270
BLAKE2b-256 checksum
How to use checksums
65a0895322e93b7f53541ca8d2d205f1eabc490b2a1d64be5fe46870c78bdd0c
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 6, 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