Skip to main content

A Python package for reading and writing miniSEED formatted data

Project description

pymseed - a Python package to read and write miniSEED formatted data

The pymseed package supports reading and writing of miniSEED formatted data. Both miniSEED version 2 (defined in the SEED standard) and miniSEED version 3 are supported.

The package is uses the C-language libmseed for most of the data format and manipulation work.

Installation

The releases should be installed directly from PyPI with, for example, pip install pymseed.

If using numpy features use optional dependency "numpy" or install it independently e.g. pip install pymseed[numpy].

For package develop use optional dependency "dev" for needed dependencies e.g. pip install pymseed[dev].

Example usage

Working programs for a variety of use cases can be found in the examples directory of the repository.

Read a file and print details from each record:

from pymseed import MS3Record, TimeFormat

input_file = "examples/example_data.mseed"

for msr in MS3Record.from_file(input_file):
    # Print values directly
    print(f'   SourceID: {msr.sourceid}, record length {msr.reclen}')
    print(f' Start Time: {msr.starttime_str(timeformat=TimeFormat.ISOMONTHDAY_SPACE_Z)}')
    print(f'    Samples: {msr.samplecnt}')

    # Alternatively, use the library print function
    msr.print()

Read a file into a trace list and print the list:

from pymseed import MS3TraceList

traces = MS3TraceList.from_file("examples/example_data.mseed")

# Print the trace list using the library print function
traces.print(details=1, gaps=True)

# Alternatively, traverse the data structures and print each trace ID and segment
for traceid in traces:
    print(traceid)

    for segment in traceid:
        print('  ', segment)

Simple example of writing multiple channels of data:

import math
from pymseed import MS3TraceList, timestr2nstime

# Generate sinusoid data, starting at 0, 45, and 90 degrees
data0 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(0, 500)))
data1 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(45, 500 + 45)))
data2 = list(map(lambda x: int(math.sin(math.radians(x)) * 500), range(90, 500 + 90)))

traces = MS3TraceList()

output_file = "output.mseed"
sample_rate = 40.0
start_time = timestr2nstime("2024-01-01T15:13:55.123456789Z")
format_version = 2
record_length = 512

# Add generated data to the trace list
traces.add_data(sourceid="FDSN:XX_TEST__B_S_1",
                data_samples=data0, sample_type='i',
                sample_rate=sample_rate, start_time=start_time)

traces.add_data(sourceid="FDSN:XX_TEST__B_S_2",
                data_samples=data1, sample_type='i',
                sample_rate=sample_rate, start_time=start_time)

traces.add_data(sourceid="FDSN:XX_TEST__B_S_3",
                data_samples=data2, sample_type='i',
                sample_rate=sample_rate, start_time=start_time)

traces.to_file(output_file,
               format_version=format_version,
               max_reclen = record_length)

Threaded usage

The pymseed package is safe to use with threads as long as the threads are not sharing data, e.g. a MS3traceList.

The underlying libmseed library uses thread-local storage for logging, allowing each thread to have its own logging configuration.

When using threads, call configure_logging() in each thread to initialize the logging registry for that thread. This can be done either explicitly at the start of the thread function or as an initializer for thread pools:

from concurrent.futures import ThreadPoolExecutor
from pymseed import configure_logging, MS3TraceList

def process_file(filename):
    traces = MS3TraceList.from_file(filename)
    # ... process traces ...
    return len(traces)

# Using initializer to configure logging for each worker thread
with ThreadPoolExecutor(max_workers=4, initializer=configure_logging) as executor:
    results = executor.map(process_file, file_list)

Package design rationale

The package functionality and exposed API are designed to support the most common use cases of reading and writing miniSEED data using libmseed. Extensions of data handling beyond the functionality of the library are out-of-scope for this package. Furthermore, the naming of functions, classes, arguments, etc. often follows the naming used in the library in order to reference their fundamentals at the C level if needed; even though this leaves some names distinctly non-Pythonic.

In a nutshell, the goal of this package is to provide just enough of a Python layer to libmseed to handle the most common cases of miniSEED data without needing to know any of the C-level details.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright (C) 2025 EarthScope Data Services

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymseed-0.4.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymseed-0.4.0-pp311-pypy311_pp73-win_amd64.whl (202.9 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (284.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (286.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (245.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (264.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.4.0-cp314-cp314t-win_arm64.whl (215.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

pymseed-0.4.0-cp314-cp314t-win_amd64.whl (230.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

pymseed-0.4.0-cp314-cp314t-win32.whl (224.5 kB view details)

Uploaded CPython 3.14tWindows x86

pymseed-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pymseed-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pymseed-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl (274.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymseed-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (294.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pymseed-0.4.0-cp314-cp314-win_arm64.whl (214.9 kB view details)

Uploaded CPython 3.14Windows ARM64

pymseed-0.4.0-cp314-cp314-win_amd64.whl (230.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pymseed-0.4.0-cp314-cp314-win32.whl (224.1 kB view details)

Uploaded CPython 3.14Windows x86

pymseed-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pymseed-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pymseed-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (273.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymseed-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl (294.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymseed-0.4.0-cp313-cp313-win_arm64.whl (209.9 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.4.0-cp313-cp313-win_amd64.whl (226.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.4.0-cp313-cp313-win32.whl (220.0 kB view details)

Uploaded CPython 3.13Windows x86

pymseed-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pymseed-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (273.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl (293.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.4.0-cp312-cp312-win_arm64.whl (209.9 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.4.0-cp312-cp312-win_amd64.whl (226.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.4.0-cp312-cp312-win32.whl (220.0 kB view details)

Uploaded CPython 3.12Windows x86

pymseed-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pymseed-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (273.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (293.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.4.0-cp311-cp311-win_arm64.whl (209.9 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.4.0-cp311-cp311-win_amd64.whl (226.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.4.0-cp311-cp311-win32.whl (220.0 kB view details)

Uploaded CPython 3.11Windows x86

pymseed-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pymseed-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (273.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (293.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.4.0-cp310-cp310-win_amd64.whl (226.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.4.0-cp310-cp310-win32.whl (220.0 kB view details)

Uploaded CPython 3.10Windows x86

pymseed-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pymseed-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (273.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl (293.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymseed-0.4.0-cp39-cp39-win_amd64.whl (226.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pymseed-0.4.0-cp39-cp39-win32.whl (220.0 kB view details)

Uploaded CPython 3.9Windows x86

pymseed-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pymseed-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymseed-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymseed-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymseed-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (273.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymseed-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl (293.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pymseed-0.4.0.tar.gz.

File metadata

  • Download URL: pymseed-0.4.0.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0.tar.gz
Algorithm Hash digest
SHA256 5e7fa008c13682072b6af4526e0c3b8147e7c4ad436de123f57f48fa7ae17e1d
MD5 68b4e788b2eaf9f046b6f619a88cadf3
BLAKE2b-256 67fe055c7aa327cc0f7f776feb4e57d81c6c0276046b041ffeed6633f8c5a43b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0.tar.gz:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f3064dcc99a09d5b693f4c925290115aeeaee7dbd4cd5b3ddad685c13322d3da
MD5 5ed9eb78ea1e3b50fd9a826567e471ed
BLAKE2b-256 88f0bf59cc6197e84e73eecb29ccbff83d3db368eaa6a0e9bb036fecee921fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f647f02e4f0945f111160e312b02b5642fce320d66a934dee014864c051ef198
MD5 1ab23fdb03d8e77aeaac3c1f6b53de60
BLAKE2b-256 47b8a2e9619919f1d11aa743d6cc8411e547eddf1067f3cf8d411f43885ddee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f991a52bdddc7ef73c136f03ffc088f4c294f6d0b73d6eaae4645a0ecf4b95ed
MD5 0f7eb9d7f3c0e779f17858ac11012e96
BLAKE2b-256 f9a25026dcf17aefc62550ff05ce92d16d71a1b0d058236c56c376d26ca20c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b72408d7f3feca24baa521bf3ef0f641c61228f115ab65bb3402310b7a613f0
MD5 54468e6dfe90a59a142c6ded51fe4f5e
BLAKE2b-256 b75a68977ea3c8dd95af697ffb4042f2e4a0763babfbbced19aaa7890a615e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c69fb4beb72c867eeeb57d72d3cc2a023dd8a090f6919ea8992d01b4f7193636
MD5 7e0f1b5d7ca3bc64a142838fc8058a0b
BLAKE2b-256 9447e642e998bdd6eecee913eaea732ae42afeed3d49f78f0cd203f8a6bea9f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 215.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 479bb2807cc6fc7eebb07db586dc749d9a551cf088343493d7668de6ee6af453
MD5 9b9a86838d10523e30c3b345869ac9bb
BLAKE2b-256 9c14b9ffab4773ab8c09ec6a44f7ae7d9e90025064305cff0c562fdd612de2fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 230.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 52f545b975d8bdd2dff0154d663cb5e38b13d937851bf8b2da9aa1b5d108735f
MD5 0471ef668c5ffab33b42383e72de6d84
BLAKE2b-256 58e11379a607345b74042fb88f089d76a47a623106d6a3e43962182e9b4d39a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 224.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8e6a669d6dcfaaf11234552f8392d252fcde372bd654f6d8f85f89abed42bd3b
MD5 cf65b5aa7e14b1bd97410672186addeb
BLAKE2b-256 3221d626579751645b0e8a4ac831f456e69acee57d22c8581386ed36205424f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e37e1623c95b3983942d1ba9e31652740e266bbb14ac18bd9b8dc2169b3c0f63
MD5 d3a871241d0a238d26786d3da61cf4c6
BLAKE2b-256 169b0d1b842dbddea7c6be7b2cab6e317285675dcede0ef466ec59df62829438

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81066372ab33b2060d56bfcff0eb61a11cefc0063860d7378a2e8a0244d7472b
MD5 26a93f9a7f643bc75fcca94e55cae5dc
BLAKE2b-256 ef9641e68c423b74de951f2e512ee9c12c9aca0a651cc8624e9d63a75f0925d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f01bfa24447b67bec1ab838e1973dd1614b93122ffb87c30aeb237cf3c10eb40
MD5 d6be4d6fca2f7006abc6424c77c4b8a4
BLAKE2b-256 9c1116ab2a311bad45b9d9aa2366e1637997d35db4d6e245b178d1258becfaf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6b88d59e0d46f0ef2aa4318c0f4e21ffd47ae040473ed59bdf3facd84d4bd66
MD5 a8f7230f502d07541a14aee29266b3ab
BLAKE2b-256 fb098eab5a4fd845e82cf6e212d6edf0ab4e1045c3ad6fb70226feb35f20bc4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db83a53d14703896e00668641327b552ecc1ff29080e3aaebb7ae5aa5125aeef
MD5 31bf801029b3e742b24adfb82fb6407f
BLAKE2b-256 b9b24a1fce94abcebbc24f7e680a00a91898122c95299020dda8ace8c71db378

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8f4dcf694158562d85085da2b68d6628d66cea6194e5a56416c32017840eb6b1
MD5 7b06e4f689f4900b06fbe631a6e7989a
BLAKE2b-256 0cb6d4c5efa7604f6fc5c2f6119abd0546fc159fe816963f203afec6127b1060

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 214.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2964b2a1d91cc477f2b5518e6814b51cf1b0b2d3fd58c97b4b3e9a11fe3dfb2e
MD5 31f96e465dc13796feb6e924491c9c30
BLAKE2b-256 6bb802fea3cdf2fac025f542cdf71751f617e61e51a06e445cd74e3bd4ce624e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 230.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 114788305025a68a477f2a051a218ddcede60cc32abfe3df1bc0c3aef0982f92
MD5 864aa243effe52481c24c062e22a2018
BLAKE2b-256 e6967c8b0be435e1e9e8a9eee335cd833109edce6121b17413942453f3fff23e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 224.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f0a346eae63eb4f6c296e7a3b7183b20948208fca8e8faa68bb3c39f48e47ce3
MD5 22f33e47938fa106df6fbb0365001281
BLAKE2b-256 9faca6f659efbc747997495ab6244dead16032f6ebf2f9344ccf776bf3746c69

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 902a051654eb03664e70222d5a964f43054dfc9b30c1defe3d3d40fd1cf18ffe
MD5 bb59ee3a8c2375c4a6bffaa51b7385d9
BLAKE2b-256 28effc9896cb43f63e70ffd06a37461bc4be6d1c202fcc13f23066364bc5fd11

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccf6d8009775e9638c4a48fb53230cb44973525eb6bad1862db6f6712a2056fa
MD5 7bac33c34f965cafacef2176d7c6c857
BLAKE2b-256 33aab121b583051059f1a4c1bd7d40ab68baae7724ec56a80ee2a5c759d2d427

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 560784cb487f46bb0c187cd9fec1c3dd4bcfa4d18fee9946c6e58857db1843f5
MD5 e3899ea319f280a9972f7e82512ceca2
BLAKE2b-256 f0d98f08b67837f942caebc85a07beaafda05e70cc50cfdff73a606e06533470

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09fc4b9f1e8fee4ad9b8c35fe8481bf23928b1ace9a8942a1ce5bcd8a2e43bca
MD5 d72b88fe543320c6fc8fc41057f1af2c
BLAKE2b-256 35e684d35f84ab90085310cb620aedd42a8eaa5a194b07f8250119a426395a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c6c73e67a4a3e5b6fcb464969df1dc1b2223fd745b879bc954d9188134b6827
MD5 cf1c100953df3514250b632bff9ded0f
BLAKE2b-256 fecb8df5b859672b9876c812573a4bc6b979d7bf5cd3e3290ff4a090b07bf586

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9fd051e73d1982ea5796fb926b27415c5b40f35656d53ca9f9f64c7a09dbf130
MD5 e1a946742ac5ded382362847d9bdd272
BLAKE2b-256 ecb416191cbc35550591dd5ef60a32c6b2927f1b2a9a401602b9b9c3d48cd13b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 209.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 94c457703a99c630e0fbe071a034d53aa875f3502bf0d235c6d60d6fb24a3903
MD5 42130dc7fc987588bddcef448e23dd69
BLAKE2b-256 080b153010a5d9c4ec07017c313b0d76550f9721efc7662abb701e3bbf882e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 226.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9ade9c06b93165db67efc5b9a776911bd5f9843642420d7b902fb0c4812bc0a2
MD5 00fea16eb6bbfca4be0ae0e67b578b3c
BLAKE2b-256 0f191ee304458360bac093e3b23e07b9009e2e417ede853c14554cdc1f987080

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b354be93f685b61d0333dd27131dbaac10457381c00ede26e21dce8764792866
MD5 6b639e0dbc375d628a4b1a047725f9db
BLAKE2b-256 5738196d0a08a57ab4198a54d3c49304e5bfc3ae0cb32eb81c3ca4d8c2e3087a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dbd407bd071fb690b7bffbb4ac1c413e7ceb8a430b5bda55312f030c505eefe
MD5 c0d75eee1e34c96aa2b98964d963d1b2
BLAKE2b-256 d12c07eb9a88582c903a9e771b747db02dfd44ccb057bba343ddce82eb099b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b279d0ea859047a848e7686f151504e8700ac0c80b3f08b62ef5401047ac510a
MD5 7cd16940c9bcde515a5d4c24e5233ecf
BLAKE2b-256 6301485a02286db454fed81ee2633a6be904e9a85e687d756ae1a2598c462813

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d61880a11c228e82183f1f838f3294dc531611975784bcaae0a248bf8ec7a73a
MD5 bb799c7e534ff9ce85892849eb296a3c
BLAKE2b-256 f7237e4eb3c0ce962682832d39098de6a61777ddc6b443cdbd2d07c9b1c48ab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9de5e4479375d28dfc72dbc40bbd04954a0594433ec9f40f2303e2b6949e59b2
MD5 8e167b802008825d9f7c91b95ec09f0d
BLAKE2b-256 1ce443b4ab07aadbffacf3df4681e8d283fcc52dab93f02e5d10a2d6f19df04c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebad23c7742310be4ab7e4ccf7c3361f011e1aae0988e1ad6d22954cb50012ac
MD5 ce92db24275b78ded856da96da94e06b
BLAKE2b-256 01d2444675635d178fb9675ca1f0c5900e4ef0cf46900a238ee459b9b4164b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d28216821577903a4b84da9d5fe651aa3719a261b0ea09479cc21ced4df8e49
MD5 0dcb8b34f15031512e42f38ab148b164
BLAKE2b-256 ad4cf8093c1c1d936cc2b690b0a87c737edf431f0754fd9cc4846461b991b1cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 209.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 44546d725a29e4bfbd0d41e1cc0f5196689a90e7aac8cf09b5d1af9ae4a2221b
MD5 a93bea36819d8bfea714234ad5a49afd
BLAKE2b-256 e2039b88795b45f5129cc99696a988b263706540e17d399dc2a548bf4527a265

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 226.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e9d570f054bee47995aae656b8dac861eb1ce8d447694c15ff2711d8bbb97c2f
MD5 d6a16d289f5e923cd37173b09e99d1b0
BLAKE2b-256 b789976baa9e83aadad4b8d6957ee1c5da034428e1ec522e49699a7188443845

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8c80cfbafd2d1db032c1b66f6c81e4928b84b623297ca4b4a7caf8394256c198
MD5 1a1b9ac3e353da9822854d127ddbe88e
BLAKE2b-256 2da96370258e4a7aabf0e4d6bfc191809f206457310411e7b81f45c1d058ea47

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b80434f4037ee1bb5724c89fc42175c1acf86aa270fa8055f3a23cd99eabcc6
MD5 0725d26043a22b019d0075f2c8bfc481
BLAKE2b-256 f08384e79d4f9fbfa6003c3ed625b9388508bc992cb03699eaaa85f7bbc42b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fe07bb41d944b8b8d310279d55ba61318b61a2b6bae527f59ac19874022a579
MD5 a7995bb0d773fd4af8ff81ab823ef99a
BLAKE2b-256 899f1439c08285ae6a3884ddebba817e7c1200d3e2a01fd911ddf2eb4e3acf91

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22be4a891e28c477534b36064e18dd0c7c5d60f314e22a9b69bacbe4211bf94a
MD5 39a0ddc52afbf1270037b3ba59c3df98
BLAKE2b-256 d79c842b7ce76e22e22acfde9059afaa8f8e1af76451c8c81dba5c3b3cacc923

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24f854add56b56a007ae8a9dcc860f715f50c0cc197cb9f5f9ee3202219761bf
MD5 9a37144d26203602be029b23218e2477
BLAKE2b-256 ce8dfec2984dbbd4c28a4a37fb8708537e51874d5c71b01aa88b6bebcbf5861b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eb1074e4878a2aa92cf7f113107cadc18aa46bbcf41694c48dcf8e7a3aa32f6
MD5 8871efb1d26c3dd0bf28e64a5c3c7266
BLAKE2b-256 c72024b1398284b632b0d93b57b9a66b7d633b8c8206ecb3dd5c6a1633a1f01a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 278baedb2a82f20accd8f942b1d53ec2af4ac6c69f00aa00896cb18e6d1a514c
MD5 f367fb17c42cf32323b0c88eda39196a
BLAKE2b-256 a1fc3223761a87cbcfe5f7477ecc4d4477d32ee7e20b8cbcd467404d0aeb94ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 209.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 34b5a6256fa0d86934aebbf99b06599b4af47e838e4f84ed7db6f607f434c53e
MD5 e35f730ef1685067a36f0412c741962f
BLAKE2b-256 a70ec20365e7a2de6eb6b9aa69a3bc38d174918e5ad34dc0f366ee66b2ae1df0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 226.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec0c7f0d359686465790fde939021c8ae335181f065f534f6f45613d9edcec59
MD5 bff687208cf0957d0ae105d8961bb99e
BLAKE2b-256 203d5547cd4de72261adab2ca753ff276895afc54284c6e6304220845d09cde6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7f316beb1b36d431d2785f40a6167239ccb99971e39abccd799585253c7558b1
MD5 dd660ef5503cc20e27105bd90b55ab81
BLAKE2b-256 bf79c1ee598db0fded93c304bc22d87e342d0d1b342ee670125fabdc78b3de9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 599dd6e1370cc55f0386aa89d0cdea78cbc577b6a93d4b413adb4b8837d52955
MD5 4200d6fc449e730c2b677a56cf01b2a3
BLAKE2b-256 7a25f0d9e6f5923ee767f0a21683621f740f45aafc53c09bdc7503f3823bab5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be04386d07be0497f5c7eace2243192d93dcb0401e207dde180d469d47c4a3f7
MD5 942f05bb49539607ce7eddfba3a824ba
BLAKE2b-256 4279f2dab200d4477eba8cb3780a04ef34fa00cea2c316c8ee66757a66783832

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12cea51747a94853ac1f884de19c9803aec0305ae242623314953856dc75776b
MD5 57e071d7a0e4ccb88721d8cf6b391b5b
BLAKE2b-256 6e194e635c07eee00c538aa52fb9ae628529535ef11898175f78259eb98d358f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e96fbc5d65cdce8dae104c13201d79efc626cc18e1e47ca27d1f76478754ee9
MD5 9f24cd9939c5495a8ff0c1e3e4e77cf0
BLAKE2b-256 2b86f440619ab6dd6345b425a24f55546ac343d7e69dee93eb8906195a86d36f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28db5edb0b104df121c3d1dd49b8b09041c18284df00dcbfd2870d20491e7865
MD5 cad6d210aa2e62c82035ece391d5f071
BLAKE2b-256 4c873923c691e2f775a76dc47b5af5d511d40a542373bd8c6047531c4eb7b141

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f7613155178497ba88cfe591e4354dd95d67b6db19891bccf73450a6e872d4b
MD5 3098e6c5eb2a0cf82a7d4f15ad62dbd1
BLAKE2b-256 a9423b29be3a4a8a2a9dd9ccb787a4015012a37f5787fb37e42cf1e513a8b785

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 226.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 056720339735a27d6c056b14153a9ac27fb8a6126e6abfda2dbecf4c7131d953
MD5 9ca4644d22ac5d037589f0c036e0d96b
BLAKE2b-256 f52c15e99d0bbcee19017ae2aa314c97484ac5ed5d57e1d381c14e57a9577c90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5031d08c7c75185b0440ad0916dc5ab09ad1ad156045fc8bb69b264f6bf6274d
MD5 de46499213ee5316a64b6182cdfb5286
BLAKE2b-256 3ba96384e7751b71ea0100725b640cbebd07c3f09e61d66fe847c44d7f7f7a7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp310-cp310-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f01e047a6812b337202d21791271b6185d45ab53300ed77ac721ff32e9ed0421
MD5 77c700a7760371f3782fb0a9a1e362ec
BLAKE2b-256 2566f690f9657b25adcbb54836c7dc738f985dc0bd0927fdf2781ff44a7c27ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b168c02152d2d887fefb46ee62784921c2a39fa917bf36bf51cebcc9a17e7207
MD5 9badc9a381cdc5b4393a2a44f0992e2c
BLAKE2b-256 f809e7107bf33c4480ecfb0ad27884819e97f176b99ef9d5282a6330ebe774d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a828645f9f844a1e1ac2a8de58aca6777d95915cb69dd29a5406d2a84ef6db1e
MD5 500197ec760110534f915e11eac325e8
BLAKE2b-256 a1cd9cdf89017392b4984cee161a49454315abb315ed15d005a8474c3afc2ab9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3f457db2ba69a6b18f264a3ac94fade660dcc71e75a003a6bca7a679b4267e5
MD5 72511365326fd8b216c1b5281b79ea42
BLAKE2b-256 2730284f3cb22a4b27a1480b93ec6c7514f5115d906737a07a55fde5a59d3e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5d313fd9745d27789ae14e8d14b657ad4bf26bb2f78ccd2f9645cbea5a0d0c9
MD5 722e8ef4775965acad1b76c1e8a9182a
BLAKE2b-256 4e6d1f603f0ed9f96ab57bb2f2a6246f18a194855e009fc5df1269205f2e05bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 167138fd91bee8b48a3659a4de61ff0b336cca87004345798c289c9202eabb1d
MD5 269ae47feba709625c8d0d5904c40670
BLAKE2b-256 b474435c5b136dc12f09dd4bf1e899fab70afed221cf5230a74b6def1cf09ba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 226.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cc76deddd28c3a7832ea6d49bf85bf3293abe90c8e92c6b956d38b009d5a680e
MD5 2c15cd43bd8ed7e5b88186915681f246
BLAKE2b-256 4eb40b64fb2f3d044ba43cb385e31aa98da9ef71b1aab39a67fda8ccbdec7a04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymseed-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymseed-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4d0af699c93831cc31510a390357c896716fe0f84a6d1753433ba525d9cf41f3
MD5 275872e3b8c5180bd2eb23747776c0a1
BLAKE2b-256 87db91c227fdf018cf389cf79058432780f55d4e15d25b4a416a597bf3d050ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp39-cp39-win32.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c44f079487275e2858e2be74b4dabe48a64113d3d960ba110e27c310922269c
MD5 33b1d24818f6b7a4dfe63d17d192c295
BLAKE2b-256 d5471bfa39be90c7a13c8f86dc535037cc0a54fe5ae8c6742c2c6a88bd9d6e71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32dbc9738bdf4e0cb651c84f092d8d3e7629d027db5d7235e4102483a71c29b4
MD5 1c36cdb37a454bf7a6bfb9d54f6b9461
BLAKE2b-256 a03b313e0b34e2e71faa734d5069c7a50f974d9bf68a4b319170525bb3a2b624

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e36e64edb018aca787791f07194e8262472ebb349d26ca377ce5dfb5ab7f8126
MD5 fe84687cc57d28253110b5c6525df0f0
BLAKE2b-256 83cf53ac22043a57fc0d5f7e9efc5adc9a152a79cea82ed5ab847f610f607fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d392ab9a85d34c265ef6b5173a09ba5e47a30611d546a743bd33fb7a97626830
MD5 f35f358ec88c55ea84631db07c29fadc
BLAKE2b-256 7faec133732af1f0a3861061b4d669d83c0eaa4f660c9680a71af37fc2bea6a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3412a41b914bc433f50c964c5dca50328e063c0a64b407746ab6381aba9d83f6
MD5 5cd35bd7d97d46107d8bb6c5b0b90e05
BLAKE2b-256 16dff1290e25a06c77ddf56ffc1c53393f0d91acb3e2ec285efcbd03a6acc8f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymseed-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 713cb1541b3b4896c6edfe7ed09f75176f7e67f79f9bbe56440ae82b21a9a776
MD5 e6a3ec10bc7785876becc98d7a5b016a
BLAKE2b-256 59b5d0cff87ca5c154a697bef11b882ccd42c5aabc4d5a140ab2e88ceb14324b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on EarthScope/pymseed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page