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 record in MS3Record.from_file(input_file):
    # Print values directly
    print(f'   SourceID: {record.sourceid}, record length {record.reclen}')
    print(f' Start Time: {record.starttime_str(timeformat=TimeFormat.ISOMONTHDAY_SPACE_Z)}')
    print(f'    Samples: {record.samplecnt}')

    # Alternatively, use the library print function
    record.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)

Writing miniSEED requires specifying a "record handler" function that is a callback to consume, and do whatever you want, with generated records.

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)

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.0.3.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.0.3-pp311-pypy311_pp73-win_amd64.whl (183.6 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.0.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (265.5 kB view details)

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

pymseed-0.0.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (267.0 kB view details)

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

pymseed-0.0.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (227.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.0.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (244.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.0.3-pp310-pypy310_pp73-win_amd64.whl (183.6 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.0.3-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (265.5 kB view details)

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

pymseed-0.0.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (267.0 kB view details)

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

pymseed-0.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (227.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (244.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.0.3-cp313-cp313-win_arm64.whl (187.6 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.0.3-cp313-cp313-win_amd64.whl (203.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.0.3-cp313-cp313-win32.whl (198.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pymseed-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.0.3-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.0.3-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.0.3-cp313-cp313-macosx_11_0_arm64.whl (251.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.0.3-cp312-cp312-win_arm64.whl (187.6 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.0.3-cp312-cp312-win_amd64.whl (203.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.0.3-cp312-cp312-win32.whl (198.1 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pymseed-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.0.3-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.0.3-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.0.3-cp312-cp312-macosx_11_0_arm64.whl (251.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.0.3-cp311-cp311-win_arm64.whl (187.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.0.3-cp311-cp311-win_amd64.whl (203.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.0.3-cp311-cp311-win32.whl (198.0 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pymseed-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.0.3-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.0.3-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.0.3-cp311-cp311-macosx_11_0_arm64.whl (251.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl (270.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.0.3-cp310-cp310-win_amd64.whl (203.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.0.3-cp310-cp310-win32.whl (198.0 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pymseed-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.0.3-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.0.3-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.0.3-cp310-cp310-macosx_11_0_arm64.whl (251.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl (270.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymseed-0.0.3-cp39-cp39-win_amd64.whl (203.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pymseed-0.0.3-cp39-cp39-win32.whl (198.0 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pymseed-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymseed-0.0.3-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.0.3-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.0.3-cp39-cp39-macosx_11_0_arm64.whl (251.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymseed-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl (270.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymseed-0.0.3.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.0.3.tar.gz
Algorithm Hash digest
SHA256 8f3fe173dd29552043d67ea5920277bfa211fba57f6b26d149bc66e9f287c484
MD5 ad7ddc003612d0bfe022e7b226cd5721
BLAKE2b-256 a4c0cfe5a6d0d43dfc5c78c52c7c6adf1416ec26cb9c525a2dcd4e243660d3ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3.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.0.3-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e3566e7afd5608206d5cfbb1b6cd7c528cc60c8c628dbde6f1342acc5984aeac
MD5 b3a7dc6f7ea669f480d0fc548a0c7879
BLAKE2b-256 64b1b27b2021b436a39453ca9d4e355a5ced7eb3720eaf32d651b73f7c24d48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-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.0.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4de57fe0257b56db84f5be094f25bc35b896fc41a739c731bafbb97d71d00af6
MD5 2350a21276be802ee42fcdb00863609e
BLAKE2b-256 302f398bfa797e0c9f01275c9866626e4362db4a3f83871727ccccc0c87aa5d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f18be1145f4ef79df81610925f18316b08a34a23380820f1753694b89bb429c1
MD5 e4784e8c58c130c14a326e0413ad971b
BLAKE2b-256 6a348b1a6f339e5acc3a3a6f914686735daca0465488f69ccdab9dedfb1c0658

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce424996acd64fd2c004d85337c5a75c5b16e4cd276a408b350d84b1a6e99e1b
MD5 a057b2becd88d16a6d557151177562d4
BLAKE2b-256 a1e6217a10e7a49a9144b3fc9789e4669b2fec311ec37c865f8beef975e663bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2074efc61196813d546a611b8b4e5b55e073152b1c71d93965ca932774920624
MD5 91a16a7dbab18791c91c5063ec26830d
BLAKE2b-256 f21f460297f500feca5c52da1b027394c1431ae62d3818bd6e0290edf5882ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3fc542acf373cba98b05baa2d3c18fc5f447b16c1b812e63e7af52cc4cf9542a
MD5 826840f11faed60b034e88187aabb62c
BLAKE2b-256 892bc7ef1579aebd6a3cfd3dc1fe23f4b6aac6091801a5823d44fd3009074a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-pp310-pypy310_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.0.3-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ebf2fc55067762181a4b6000418bbe26fe997878d341dc0b5a352502977d50e
MD5 d994e0af9d231a2a5b0eedee724663a9
BLAKE2b-256 56de15500b65b26e53cc142880e798ce42f1d9222d1efe25a1ffc9a7ec945977

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-pp310-pypy310_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.0.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93a28b3dbccf497af5f0de728e7f74413549eb4bd85d3864006b247414a159ea
MD5 6a3fd80600ab70221adbc5282b4ce6b9
BLAKE2b-256 db5af6c06e5e2ae333a11c512be95d21775a15075254f98c90adb0622f06b21d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-pp310-pypy310_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.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8120a2d821df4603411cfec3991a5c68cac0f4373d7350fb916aa3903ad4c491
MD5 0a25be0a3b0dad1702b665748b667ef8
BLAKE2b-256 1ff851a9e7015c14aa0bf719bfcde83526233575367f2d7e8070b9b0a6cfd693

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-pp310-pypy310_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.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a910731dee32a134b549efe43e4b9ee144e63d56c09fb46a65aa511c8014bd61
MD5 39c32f8205639f1c5c76fa6bf08aed0f
BLAKE2b-256 ef54e8de03c2fb8578a3351c91e99f4ffdb2ffc731ff779c5b9020c52611a90a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-pp310-pypy310_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.0.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 187.6 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.0.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 286946feebd5ee3a7701ea8c4ca01a7a99317a46606dd8f222088820638de94c
MD5 a1fc146e1df4cb2ded0262db3f1db0cb
BLAKE2b-256 d8d75df72a7189c14be4397a31a68a67820cb49154539128f74b803f1b55d370

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 203.5 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.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7f55e73f5811d077f620cd473c657400b03d8f92e0a611dc11a28453533b1b06
MD5 b48b16ae0a88a5c926289f5ce2579005
BLAKE2b-256 486c43a32e760741ab97f3a75f4178133a7770f6b9fbcb70bc39eff38130ea8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 198.1 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.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6f26e4e19898a18978c973a6e60eb73a7220c6235a8bbac2948f55ec8bf2b38d
MD5 3d15c6c6f166e99b16649885251f34e1
BLAKE2b-256 036f761fc67c968d6bef1a6dc6a84a7e57b6249c72c93ac13ad42d09cf75bdd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f2dda2f4ec09942d81d0c151663fe85d84c2c43c8884fec72ef3b8ac8f2cdd7
MD5 bbdf9daa58d42dc70ca51d06a3328bbb
BLAKE2b-256 2516df793304a9bc0422d385c17e6e642a2cf549caa6310ced8cd2d7e4e9f73b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10b8a5f74603f83cf1a1ee5e6b19e15f4bbe3e964c676fdf77540c1e95b27253
MD5 da9a7c28a75e6eb2c5081ba3e99836df
BLAKE2b-256 3d3269cb58fec3e404ff90ff85612ab4966bc70ce4513b100e82b5d55446b1e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f352ad891465e8ce34df02d75678921b37de4ef6ce6ddfb1ae9c972df42298b
MD5 38ec71eb64764ffa89dfce0d79b0c30f
BLAKE2b-256 1441de4e0bf1b9e8949130e07b6b847dbe1f1569d04a17d91cd907cf06c42ebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9659f4fb6f1658accf05fa0413633699f3c03384519b5f05b317b0680afded75
MD5 49eaa4ad75145a4cfa7011615c71b68a
BLAKE2b-256 7dfd396057a7ddb123f730e9d475065e3210596044d787a715dde1faea85213c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 885246ac67f57347298162c7f15d8c14e27b38e061e050c140997b9e5e304fea
MD5 e2deca7d4fc261b6b6a5cb1f59776422
BLAKE2b-256 6c1648b3efc3b9e220409c774f55ce588429c178820d434fc9a3c3d5c748429f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd99733f6615a8c7f24fdfeab172a825aab12bb1325087c731db22193c6cdbee
MD5 25049f39528796c9ec6b207d311048bc
BLAKE2b-256 1006d3f9759ac359ffbd46266e05ec22713c24bb4a8c7b074274419059d0260e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 187.6 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.0.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1f89b0c8d64018446041e9358f0d4ccaa865515b8c03dbe831464282ee7d3e13
MD5 1e0162fbc2479147f51c771e626eb43c
BLAKE2b-256 5669a001521cda4d5bea71086a593dcdc5a548a4818de6cd857ba51c130d4a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 203.5 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.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eef680aa5f2d0b3298711c65b97c457ef4f57a9c912cab1b37b789301ffe4ac9
MD5 3374fe3b998e4f1afb9f8646818d2ed3
BLAKE2b-256 ee4b075c54c611d925b90c4cfd62711929e763aeedd2da3d7db2d1f38aa2e08b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 198.1 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.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6cb689baf87e4dacf852b53f0095cdc670143c57ce8cfb00bbccca61a69d7478
MD5 6b469b0a8e17366948ea2615105b3827
BLAKE2b-256 1a44b15c73c8b0517b344c59742d3d53f0061c4494ddbe4713cf599800199b87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e781edf11045a4058d8190366a6ebf4a3530660db4c094c537a2244dc731d7c3
MD5 f7414796060ea0e1d23ba342616cc156
BLAKE2b-256 57749a8595461aced1bc422600a2f403bfb483322c9e6c4184fd40376433b908

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2959130c6039f6697ee5da46dcdeee521c6e955538a2fab99f4b415d43b5228b
MD5 dc599be0e7ae9d834085f9b33713c098
BLAKE2b-256 63cc8f1d1ce65c604636ed0be9df84033c89e1f0de360d4b501bb2342269b3a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fa8eb81d9331b3283621f2298907c6b9b274b0b710f1c5d0fc577be457d55d1
MD5 7931a85020edbb08a18fe8e9c1d2d166
BLAKE2b-256 da9729acf68ba5f7daead1b6e355113d9adfbd9ca117a294286211c3d5eb5d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9c84b0359a9d2e31ce972671f86282211f203e8bc28cf3d3da5c77376436da6
MD5 3963a100a9cd490649a052746ec8ebc6
BLAKE2b-256 9875cb0314f41cc51a370b82d7ebdb52dd5ced341c06b55dfed5c3d362488ec1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e24f64df78f4b52a80ff28ffe1507b0fcede2fe4793fb79494b39f111ed708a9
MD5 435c53426c57e6cb495334886de7fd0d
BLAKE2b-256 45fd0676a5fcd7043a7e700ffc03033260bec05c6f1484f12fb0073ded22e869

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d940aad11b497d60e4945a53c505dafa1fe53f054094f8d6adc4436d160d6058
MD5 e956991d3b7bf1122a7848bf3aea0241
BLAKE2b-256 e904a3d8f761a8f2331e998294477108431e1dfb70958deb1fcdf89e21f4a6f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 187.6 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.0.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f4c9c4f9cf80f82106a7fa0cedae294866685f3e98ad85adfb4b3d6dc2da4b12
MD5 a5943c8eb4f516a05c3569ead36ceff4
BLAKE2b-256 220efa55afc8a94c6045ee8739bd085903dc65bc698765a54e35d7d5a0b7a936

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 203.3 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.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c52320d62e8e0621352aba9dab5eff4d98e58d87909bd1d20e94fe5e47992cf9
MD5 7e66e96bfff483cbd82c4196a87b7f92
BLAKE2b-256 ba81fdfcde780103be542bfe5c6a38adb0dfa58f08ad007399fef7f042028898

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 198.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.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4aa9d370f52f73d7908c54a117d4617efcfe54dc969bdbd435af7f81d90e0cf2
MD5 d31c207cd3935c96d34953d7c832a3a8
BLAKE2b-256 0ce3e6bbbd3b4cb9647372424cbad0bcb12a4b8eeeb83463d731348a52eae0a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e9cd2ceae42d56fbf48533672154047add99afa424e0874816bf806057c56e0
MD5 6fa83b386706c2761b809406ac308b11
BLAKE2b-256 b44603b2db2725407f8ce4f66fb2e32db17c323d8e1a4124d6517832f66ab9be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e52acc43962f9eb69b40953d9cebe67d4699119dcd64002075ce4324e4f0dd3
MD5 95d827faa795a6f12917a9c2a905a8e5
BLAKE2b-256 8557324bdc54dbc5e9591e9dd08440e2efad1a1e78ce31117037b9fcdc237105

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1d71526da20c1a967effff466308ede91186adfc10ef41680f7523513e87b58
MD5 f614dd418b4ff73be582db08d230b589
BLAKE2b-256 0417c4b5ebd6fc5fdcc9584889b2b14e3f806b45f1fb483d267199b3f687c7be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b671fad9deccc1e4a47483c902290ca7caca7508b0559c6e01e0cf55e230669a
MD5 2f3cf089fc754d610c2bd90411ba436f
BLAKE2b-256 f13832c820eaa7a398b5f039a453de564780afe6a4fb48ae9c2737bf69b7693b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c28e4a89c6075ff3e768e80e7ec9b35562cb18e01cfb87e0ab092ac34d19ada2
MD5 e612aa0e047d2b95e44eede295072dfa
BLAKE2b-256 ff3c311da62e97be920336c8579ca19cdf6d50fc5efb169f6b4cc2e3b281efdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06fe6d74812c084280314e608fd71704d61cfb30006d29aa5294bf19dd9594ed
MD5 732696f7d3accc83eb3cd9300927c189
BLAKE2b-256 e22d4bbed006b9f7cd94e9205df4e91d4df93c91e5e34e993e4ce12e99f12a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 203.4 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.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4454b453566d31d833b573e1fbff916fc941ac5ce4a5092e290dab7c8ea0459e
MD5 1b6d96aaefe6d448d290d16c4e1f38a5
BLAKE2b-256 e68f00c56c80aedf74b293c26919a97f9bb6e6f761b059f8d299544ef2791568

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 198.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.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 87c2498839107083333a4d06537df3143a961ac4cd47becd4ad7a9d53707297e
MD5 acc969ccccc0af093043ee3447a8dc97
BLAKE2b-256 844008722fef9fc4dae9b778511a7ff95aa34fb16d883b61910482849e1afcbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c4845c54b898563082177fe8fc23184ffb2bdd6fdc9ac3506686313870b6467
MD5 75ec3e0984ddfd584aba9febdfcb8ff5
BLAKE2b-256 dcd20175816a5109d623800086317cc84fe5aeafc5ff67718600dab8774cb5a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b930c2aee078f9175a836ce4915738448fef11a0127652e68eebe32070d6ae61
MD5 ec7dffa20a052a853ce9cfd11f0b4c5c
BLAKE2b-256 4a31077826d4883592d16e501d7632f4def00ad07af05caa94ede92e24d5ecc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88658f25ee836ba587908383f52ddb87e08864f4c851212710b66ce0b5f64f9d
MD5 23c32791c67f5813ac2c3c9deccd3a3f
BLAKE2b-256 4ff533ab73c40d17d3538e8bed427134540a3da27788edbe994ee2219be89a27

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1ea117a32dbf9e867d4a678a50bbe78379442341a7fd4d5fca7a910e5d0461a
MD5 bbb2af8e579f24b1ceb6c5681fdbb24f
BLAKE2b-256 38e631074b128f9687762f73072818d712af39e7514af1d7980c6559c352f748

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49b49e479ee00843664ac4ce0aee4f8bca88961814453f59b76ac7a56f8a24e0
MD5 3361e9520be33c9c77220bf945b9a366
BLAKE2b-256 092e0eb555aebea897cd68a84e13e684ff71e357f70310d49ff5ad2b71284e2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9c7acf43116a2cf2276253d8412af8cdcf01fc90cf5876c988d9d56e9d27057
MD5 b0f02dbe6e177d6a9fb8024f6e8b6e0b
BLAKE2b-256 4430ca554c74f72dc620c1626e5f472e277d08efa03b16c8248e9f9eb3e4c855

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 203.3 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.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ba53547048631ad401953d7f6b74cdd2f99eaebbbbdb0348e99caf5e7143fc4
MD5 b73e40fa69e4bb26844ffaff986a02d9
BLAKE2b-256 751e9aac7edfbdfd79a8e2b6c82ce94e5728587c466d5afbc59baff043f181d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymseed-0.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 198.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.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 89cc7d91868716f8c9aef98a1dbf9f9871a8e1144d17debedf1c1f65c4e35624
MD5 db2e19122a7f51853d12bf7270f1515e
BLAKE2b-256 61b562cb7959bf8a3b4ee6cdabd77bb75704fa4bcc4bb44356cb2ac2d0c6bec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61c03a708503f370d8bf286bec433156ad56b79c714bcebac60cec6306426fde
MD5 151bc1885aa16a753068060eca4e97d5
BLAKE2b-256 28b7c51d9b4f6e3a925049c811fc2f396e87ef811e7e7a4d5c2900c8b4e38678

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e7dd5efa24d11de89bb92c8d2c3e1e64247369701a09996cca4ef1737251b08
MD5 b2366cf7759f7e59d6943b25a90aeb5d
BLAKE2b-256 3bcd3f44528ad8e9968279df1e659a18dd52d38bd4cec9ae4c8557bbc1c1e56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc13349c71c949140bb27042708e7bb33f825d7fba6eabad29341ad6f11adad4
MD5 fa037dc32f02f0c5f1f4517cc4041927
BLAKE2b-256 a4ec94cb80f013483fe0076e5e252d4410d93b723b5c5b2a4b11db85bea105f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a399bf06c8dba49d8b8a4f09af52d3b394467b345362fdc06cd800cd1dea627
MD5 04f80530f94792b6e308a395632e3191
BLAKE2b-256 e4cd1132172d03357c9427ef053c8fe95a05ee13457dc07446fee9eb53779f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3cab4d0bffa7343798445635f5582fcd5c948c269ecc33f714cf48ef3e8e684
MD5 a696eee8b26f4c1df326e6146c68d73a
BLAKE2b-256 dcc4bc78b1327d21b3374ac876daa68de2edad7ec712183dddd260a4103704c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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.0.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89ee3841c3f2e96f9e118c5053a1bb445ddf13c159f028ef8565ae26b34a8b38
MD5 a9eb0b5c88f9ec6b2976b7e942fcf8d6
BLAKE2b-256 8a33ee4ad4f76621a1d84b677ea8f582fa4d9172884acaff2ff4308bdde44d14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.0.3-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