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

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

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

Built distributions (wheels)

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

Download URL py_ephemeris_ziwei-1.0.0b9.tar.gz
Size 43.1 kB
Tags Source
SHA-256 checksum
How to use checksums
89691fa462d082f8af9d55df4fbe7104e5010d9649044bfda58eb75b11c6b187
BLAKE2b-256 checksum
How to use checksums
7c4fe45c3919a38d28c571c46822a0dee6f693a56dfbfcf2c8c065e8eb061b71
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp314-cp314-win_arm64.whl
Size 1.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
0f84dffb549076eb219e8a9c8abc86c2cd869fbd3acb5a400ff2d29b477bbee7
BLAKE2b-256 checksum
How to use checksums
2668edf0ab928a345b4995144b9cf4b99b53866acd833f2724a9b3734f91a82b
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp314-cp314-win_amd64.whl
Size 1.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
faa5fb2c34e5772117e3c03e85bc3c5a3b751de36afdc333485fb23f8e9d9b81
BLAKE2b-256 checksum
How to use checksums
7f0c9164054e7c09dfa636b7762f9f2de789645313c63f5662dce5341488ab4c
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
b3b09df89eb513e931617754ba088f015e1f85d86f9692aef450cb725e191bd6
BLAKE2b-256 checksum
How to use checksums
71ac37e4079893f2d35d5c7e92c545a05079aa801a3c168ddd78ac9409d86261
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
d0a7a7fbb12ef2c00c0dad6424ad5ee4c79e40f952b3e424ebaf984a42f9eb8d
BLAKE2b-256 checksum
How to use checksums
6cfebe6d75510eb915a21ca8ac3711db359709ca5b28c8dc69549233842cc2a0
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
7b74ef537713a5b512d55f790e553754548a762bcbd0db6516f791c2cf8b1cf9
BLAKE2b-256 checksum
How to use checksums
8ef5fc81d5dc4426aec7d482346f110d7dcd2e939269dc5eb75e76f4c4cd35ff
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
d293bfda4a8ce94fa815c8141eb8d7155de6b1800cfd79d3639b19c9b6aacdb2
BLAKE2b-256 checksum
How to use checksums
0298f14c0e570e89ecfae931586490f7927edb1dd9622a2b5e69e231e98a6c1a
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp313-cp313-win_arm64.whl
Size 1.0 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
be8357aa5d8158a969218e6a0da36862c388893ed3d0656ee1473550a55498d2
BLAKE2b-256 checksum
How to use checksums
3cac585a163f021837639f7558327e10b7148886243fdd226616582c2c9da313
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp313-cp313-win_amd64.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
0473bce473ec6bc75d7f5586425682fcd68def56d6f935a2f96d1c8f2647c258
BLAKE2b-256 checksum
How to use checksums
bdb2d5388ea44bd3d856c7f87e3a615a17bfc6bf0367ef03ae7c5523c3ee0f3a
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
28cb66e0b6edd9602644f30f4b2cd98fc9c84c30cf628277c5cec23acbc22eef
BLAKE2b-256 checksum
How to use checksums
7931dad5138d381f93408b10e215226a07b66a7b78469cf96018fb66643e4059
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
0e3cc01f873cb46d8284b6a5bfd563388219590cae06966d41db7aa90c6ce801
BLAKE2b-256 checksum
How to use checksums
7c6b4322eedf6d5ac5287835e624c92855ec0760e55f6ce5c3dc07426859acbb
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
dfeae91ed4ed7f5b6cab6aaef851d89ea881081991169894a8e0815ee89eb4a9
BLAKE2b-256 checksum
How to use checksums
9b518fbf72bdb54f50c56a4ba619627d77886e8b01c73ba9c62fac61983dcb3e
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
df0581e3cf7d802d48e88104cca2010490abe64c5355b4c76175158d7ea7a128
BLAKE2b-256 checksum
How to use checksums
29277a142cad1ae1ab44ba8ebca8b4c3c6e01eaee6784aa748b5f078dd035f68
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp312-cp312-win_arm64.whl
Size 1.0 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
041efab01206448397c4119c4676a596a71aa3f9f705c3d4c7360d5503581704
BLAKE2b-256 checksum
How to use checksums
aad79ae8ec8fae1681002b05632426212acd6e1856aa11e17f528553121c8371
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 5, 2026.

Transparency log

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

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

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
f046ee33c424c3bf5fc321bba9c1b915c79800bef3185d817752c2bb3eda093a
BLAKE2b-256 checksum
How to use checksums
2ffc310dede64e8421bb664f05a119cfb3803b1dd0316184ca23c2afd5057344
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
7447a8d0391a4b6987cd4f08928513ec3087e38c03b1391034f95da54aeaa884
BLAKE2b-256 checksum
How to use checksums
6043dc7d4f69ad11bf1522746f34438dc99d5317b4f9e912b3a841a8baf06df4
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp312-cp312-macosx_11_0_arm64.whl
Size 457.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fc488adbe744fa090d6e6cdbf62425af584a3f7f4315e6385789d2635a8bbbd8
BLAKE2b-256 checksum
How to use checksums
f1d66c7e7971b5211ddab55d25825e8b9e3785627a1094b0040e972fe717b304
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
20eea83a4524eabf158b4716d786e9a19c831af7fb9874f3a7284aeae8331579
BLAKE2b-256 checksum
How to use checksums
e81120cf6ed868a6e1a200ba3faf54754f7f5e7e2d178ac472a79a233d9e61e0
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp311-cp311-win_arm64.whl
Size 1.0 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
daffe28fa76e0066766e00d13f4c7ea1abcef0a13901aff2c4973a41ef875991
BLAKE2b-256 checksum
How to use checksums
bcdc2d03dd2aa4684c04a3c002650a0b66d191272583df9cc595e8c4685337f7
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d934e26c4fb3a1c35d67305ee9f3a24880675aac63254963448c792f34fa0197
BLAKE2b-256 checksum
How to use checksums
35a23d334d56ef9b5a635430c869822d241aff49fd1078259ebd8b4faa66560a
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
c6f21d3ae794cb6a123db7336ffd7a34bf81909b41e4f93c1ef7eec6446e8f23
BLAKE2b-256 checksum
How to use checksums
eb03eacadea2596226dacebcf5093822ee413e1db14be5ff80a39511705ef062
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
270186176eca513d22e2d580c1b7a0eb5d7295b02430ab06591b29ab1a4ff6f2
BLAKE2b-256 checksum
How to use checksums
b6cd47486ae1d0f81de84ef1551828b46775499eb9a4e4864b896df60e45a704
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
1d6378da05dc7f96aad83e189e1b7351d5165dea8d265b80c5a7a2ff003d5bb0
BLAKE2b-256 checksum
How to use checksums
7a84d6bd7973c0f73a0b8c6f506e76cfc0c4ec3b367d5f6eb1131f6329e6b448
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
3e8174f9aff8695f68f106934d61c9fcd996bd296f17df71eb4c77853f5895c8
BLAKE2b-256 checksum
How to use checksums
0951aab72d4360f6ca8548261bf1442852f45b6a370699f934a2b26f21800b7e
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp310-cp310-win_arm64.whl
Size 1.0 MB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
55b56b7aa41da1dc3105888821ffb3fe3affddd4f990a87663fdb5c0281506db
BLAKE2b-256 checksum
How to use checksums
8fa07e67166ca0a639f167e0ba649c21c736695fe7e962d5c24fd026d607be2b
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 5, 2026.

Transparency log

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

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

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
844866ba3584e6ecf829dfaba14bffd228ab8c6d5225cf88e9d15e05392ef7a9
BLAKE2b-256 checksum
How to use checksums
30fa314eec8c144c1881bb4a60481b1468ba36f363cd63475a3dd5ff15acefc6
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
bd984e7833f9a08c8e8dcfdbe2dd8579cb637dcd56c95465fd93b052a9b1fa2b
BLAKE2b-256 checksum
How to use checksums
b7b192cc02c4b8af7c655383a9b0f4519d85b36a8a84670f6b555b4a07c4de8a
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
192b6e5b4a6542e18604475056c5e667149cf45eb9c8fec62a0e6c486c928f16
BLAKE2b-256 checksum
How to use checksums
9e3ae2c919f559bd2156a7a3490f6e0d3b9981d51f882914b8bac07e3c0292f2
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
8564ea58dc578bea11456baff548fdc0ad2929db6993cc8a3b283d92b51f1d3f
BLAKE2b-256 checksum
How to use checksums
ca52e55329027a8ef0e1f78deb0217a002a354eb7ccb8c52077ce0f9ed13ac5c
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp39-cp39-win_arm64.whl
Size 1.0 MB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
1173cc2ad3a060ffc6f35f75d880f440c0286acde93d6117cc209fec4fa6e6a5
BLAKE2b-256 checksum
How to use checksums
0b73423c80b8692c645b2c2534eec9c645fbcd09471693f0d43822decd289e2d
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-cp39-cp39-win_amd64.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
05954f9af6f81c10b6edcc9eca5d329d8bc15dcf0397952023681402fb6a2736
BLAKE2b-256 checksum
How to use checksums
3d9091a895840b7ed493c4c53b2e759291d1e06df3152aa812e001281c11ac43
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
264142701a352af4885625f7f3cbab9a2ae8edf5f95fda9d3d4f3d2c8c666e28
BLAKE2b-256 checksum
How to use checksums
647df86522801364f2974de1a425917d42306ed833ea2f7f5613a50b5d0b2c8a
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
6b8d6d5144ab950661fbce567494411ffc1ff5eb7649ade833ac58026b7c3378
BLAKE2b-256 checksum
How to use checksums
0c5733f545bd1538a8825c4abe7b968b0d647e6f097cdde7fb8141e21f0bba3f
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
996dacae7d61c1f3ded9b883603e8d384fb208a61a7ca174fabec1ec4e502880
BLAKE2b-256 checksum
How to use checksums
c25ec709302868c2f09b12e2651e2ed80bb503bba9fdc04d106d6e8742f595b9
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 5, 2026.

Transparency log

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

Download URL py_ephemeris_ziwei-1.0.0b9-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
f5f0850b32e65a60ea6dda695999bbfb28b64075dab54530f91deacfd07adc47
BLAKE2b-256 checksum
How to use checksums
d5eb502805dcdb7ef939780a1b4ee6ae3234f2ee832a85144586c297dbe74a1d
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 5, 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