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

Converting between Source IDs and NSLC codes

miniSEED 3 and FDSN Source Identifiers use a single string (for example FDSN:IU_COLA_00_B_H_Z) to identify a unique time series channel. Classic SEED-style identifiers split the same information into network, station, location, and channel (NSLC) codes. SourceIDs are a superset of SEED v2 codes, all SEED codes can be represented as SourceIDs, but not all SourceIDs will fit into SEED codes.

The utility methods nslc2sourceid() and sourceid2nslc() support mapping between these identifier systems:

from pymseed import nslc2sourceid, sourceid2nslc

# NSLC (four strings) → FDSN source ID
sid = nslc2sourceid("IU", "COLA", "00", "BHZ")
# 'FDSN:IU_COLA_00_B_H_Z'

# Blank location codes are represented as an empty strings
sid2 = nslc2sourceid("XX", "TEST", "", "BHZ")
# 'FDSN:XX_TEST__B_H_Z'

# Source ID → (network, station, location, channel)
net, sta, loc, chan = sourceid2nslc("FDSN:IU_COLA_00_B_H_Z")
assert (net, sta, loc, chan) == ("IU", "COLA", "00", "BHZ")

# To accommodate practical identifier conversion `sourceid2nslc()` does not
# strictly require field lengths for SEED v2 conformance, instead converting
# fields to their most SEED-like form.  For example single character
# Source ID fields of band, source and subsource are collapsed to a SEED
# channel (B_H_Z -> BHZ); but if the codes cannot form a SEED channel
# they are left in the "extended channel" form of Source IDs.  Furthermore,
# larger-than-SEED network, station, and location codes are not truncated
# to fit SEED v2 fields.  For example:

nslc = sourceid2nslc("FDSN:NETWORK_STATION_LOCATION_G_SR_1")
assert nslc == ('NETWORK', 'STATION', 'LOCATION', 'G_SR_1')

Invalid source IDs raise ValueError from sourceid2nslc(); invalid NSLC combinations raise ValueError from nslc2sourceid().

Threaded usage

The pymseed package is safe to use with threads as long as the threads are not sharing data structures, 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)

# A list of files to process (silly example)
file_list = ["examples/example_data.mseed",
             "examples/example_data.mseed"]

# 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) 2026 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.8.1.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.8.1-pp311-pypy311_pp73-win_amd64.whl (205.1 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (287.6 kB view details)

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

pymseed-0.8.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (289.4 kB view details)

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

pymseed-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (248.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (267.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.8.1-cp314-cp314-win_arm64.whl (217.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pymseed-0.8.1-cp314-cp314-win_amd64.whl (232.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pymseed-0.8.1-cp314-cp314-win32.whl (227.0 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pymseed-0.8.1-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.8.1-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.8.1-cp314-cp314-macosx_11_0_arm64.whl (277.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymseed-0.8.1-cp314-cp314-macosx_10_15_x86_64.whl (297.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymseed-0.8.1-cp313-cp313-win_arm64.whl (212.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.8.1-cp313-cp313-win_amd64.whl (229.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.8.1-cp313-cp313-win32.whl (223.0 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.8.1-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.8.1-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.8.1-cp313-cp313-macosx_11_0_arm64.whl (276.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.8.1-cp313-cp313-macosx_10_13_x86_64.whl (296.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.8.1-cp312-cp312-win_arm64.whl (212.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.8.1-cp312-cp312-win_amd64.whl (229.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.8.1-cp312-cp312-win32.whl (223.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.8.1-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.8.1-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.8.1-cp312-cp312-macosx_11_0_arm64.whl (277.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl (296.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.8.1-cp311-cp311-win_arm64.whl (212.5 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.8.1-cp311-cp311-win_amd64.whl (229.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.8.1-cp311-cp311-win32.whl (222.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.8.1-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.8.1-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.8.1-cp311-cp311-macosx_11_0_arm64.whl (276.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl (296.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.8.1-cp310-cp310-win_amd64.whl (229.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.8.1-cp310-cp310-win32.whl (222.9 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.8.1-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.8.1-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.8.1-cp310-cp310-macosx_11_0_arm64.whl (276.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl (296.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1.tar.gz
Algorithm Hash digest
SHA256 417a27a88516e2b52fea18e3fe8b7adf937d85933311bf7563c92c1a6bf8058e
MD5 14a7797ff25835c7c36f46ea387f171e
BLAKE2b-256 6bd4ecbc0a28b26b063b0b6411a1940b9062c300501ed6922962c9ea30c0df14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cef2f8981b1d6d8b35fc669a6120d989e7b56373883c3b29e012fb933b7b0df4
MD5 09c0f36ec3ca880f825a3b881f8bea62
BLAKE2b-256 6c86e8474d254b265f72df399799bdc2ef19251e438f1682f12bc77bb347af04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-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.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b5af32d89936cb7b4e25584f59768176e1b19eae66328fed2c03c798b6c8068
MD5 94f1f74874fe7c1256e19dc3418b245e
BLAKE2b-256 1d72935dbed7fa5f49ec3188ee4f8a1598f38fd82f33dd1e6ec623646c365af7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c655832a132c1ec9b066078652ab773068d2d0ebcbfd59f97f24fbb937283a6e
MD5 71d64c6f6b6c9901c6382282b51b0197
BLAKE2b-256 3f7cb9c4453ac89ab7c5c30de1bb43408cea7204da23032cdca54b6359ddf75d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad470a8c608131fe10d3bc57cd58d1ec634810cb6957db3a2d37658dd80a2598
MD5 6ce51fe7b6d2529563e7b2ed02285d0a
BLAKE2b-256 290766f6c757ddd50aa1898ec66a691652cbf2c84367b8911d46658fbcb97aed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5da30ab7acdcdf7e14192f4fefd0388332457bc896af448c6e60fa7eae3b2752
MD5 9cb89fb974db2e570bcda07b0280040c
BLAKE2b-256 59e567702d1dc2bd952ee70351b55285045739336245156f4cd757ed915dd326

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4e14782dff68e641fbb4268635b505506a93a2ce2ea3ce0e65dbb23fdf9657ee
MD5 8c89022b2552d5a0d3bf65456d51f77b
BLAKE2b-256 38c4b54d5206d6f501f3d374fa91c0f2e96e5133abacac96862c11dd4682aa04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 44c236962398859d5494c08c1425a13d974ef7467e0e19dd2ed7ca8b788f4687
MD5 4f6efb4d4fb6071c3e80d4a176e11730
BLAKE2b-256 9cce301ae833d5ac4babf7abf1a82d60e96baa037c73ee46f599a5b1cc642fff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ca14a4fdec6ffb3f54b8c887f260a87dfc8dabac11911b31bc371cd11d9cf5d9
MD5 aba431f633a095214c86e43d0b92f66d
BLAKE2b-256 e39e016901e5f82fc4faae203588858df387a50ecd32f5129adfd5fb196bd867

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 550a3889cbd1ee15785293545cba63a41520f8a6a1890e271348a39608342a1f
MD5 bb75d13ad7838ca82fcb03bad21caccd
BLAKE2b-256 5baefade1cca87e612904b75523f62ea2d030baef3adf1a44b8fdc945499d23e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5438342319130def34b8c9b8391a1b32bca80cc1d4062f96b5207b85c8b94201
MD5 b1d83cc6035a2da6cff3a438ceac5a1d
BLAKE2b-256 f88dae2d9271da854cf8d1df1f1cc8ad72ecf887eda0a0bfae391cc92571c796

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f8aacc6f589dfadc01f42a7b5bcb7315a50da8f18e311f69104478ce24ef60d
MD5 1a895942aa50f97cf06007c8c53f2758
BLAKE2b-256 a4408c6ab6aab79f77dd2080429618b97c13a576fa3ba4458e74a69723d80fa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43055c64bbaf28536faa0c6e0a80746c57182855d9d91f8572b547d704eb77f6
MD5 36f72fb27ddb6261ec748f32d46c8e12
BLAKE2b-256 3da640775ef57c1e6d4bc4d0c95b9198031a987432c0932a9a5ff60eb5ebecc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17bdd2d0aac8d4b78d8cd1bb9aad7e4477b30fe88f6344f3ff87068beef01428
MD5 b64ae8c77de5ad2a95d10b5e9c61dee7
BLAKE2b-256 fb197bf85e1ef8d97b79c3abe40389ff92e69d8615d9c74e226e83859bd95c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymseed-0.8.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fb8c26144a255105d819b3278c338ae8eab0e9cec3cbf8b4e4ecd3be5c3f0488
MD5 e75e6fa11153abd6c5e15f9b2ffbaf39
BLAKE2b-256 6d28674fa8779680e1630cecc02274b82eef0103c74feaff47f505e5390989d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.8.1-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.8.1-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8d6b887442c490b791df1a0de92ce2eb9b3036d1e6ad4fafd82effbbcfcbba92
MD5 acf2f6db014b22647f813483e1d20156
BLAKE2b-256 550de9270b1b6a57f229480b27668aa14b3cb4fb224d21bc9dbbaebf4cd39297

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d2ec0f99ca7fc91f2000385deef1216c362c587e80110fde4d00ae991ac81bd4
MD5 e0d56bb8ed106fac9b2e0c1c2b23e994
BLAKE2b-256 d618c105f266ee76ce692718d2e942151a98d49d8d6e76115a810ea9bb7c7683

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3fb6b59d46ff2d2de5e1044228d14673a82fda262e056bd1b38721a15f2d68a5
MD5 8a57ad86ade0c285668547953a6ec8b4
BLAKE2b-256 62d471f729b7870b031d2a5f126d0b64f7a2e20f182466133421cd9d69c87d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 153c4cb5bff3b2387a4a0eccff27f22fd8771145fdb342c1ba497cbecf7c5a0e
MD5 49879d60d355aafa18ff2183b1e675de
BLAKE2b-256 e8813687a1f9c1a654449877643dac2077d03279ad7e4338f5eca5ce34128dd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7476dc9058abe1f85e96821b2505eb1d18f03e500a23edd64a185ccba5ec5e98
MD5 c47f2cc4b9b1c812556385950225799e
BLAKE2b-256 fb435fdfef31124307f98f952513565c10a021f59ddd3a15dfcaf38446ef0846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ddb09856b7d3923f78945d41d34a74647ca68b29c65f916213989a3f2096284
MD5 16837631cda39447846404b2f85065c0
BLAKE2b-256 278b02ece154f8b808b2a10499b83a7eaa43f3950520325c21e7914267e3b584

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d65021e848325ac58d21d4b0b99d5dcc5a89ce5fda469e1b259eceee0f23b246
MD5 e21063c080495911924f24a3bf1e2ae7
BLAKE2b-256 ef88fa54bdbb525854996e78ebc872a4328c8a1dd7aacbf5585b670fab9584e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c14ae6766bf67604642a8fc225d1191cd20e0fb340030fb0db49836f5acda2ca
MD5 3d8488470309789d61102de8627becb7
BLAKE2b-256 31b666fc438e10f94ff0d49688efb2d02395344d2bb3db5f6819f823541a7389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 80b5d0763f502b8dc4cbc32f2aafa53d7734d3c12edd88b4f81913a10a86f42b
MD5 aa794bf8b8aafaca765add002d574fe3
BLAKE2b-256 e90eafaa24bbc1e23c79bb3f596d260d968a5d63fccf45d59041176f6d86db44

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 07258f1158ba9255c01d9028392e2148c3ddee9bc48f235d7ccb0d71fb5e4dcf
MD5 ee296558d9c6a1ec15bc06f9de074732
BLAKE2b-256 1a31c9eea6858827bbffa85f0dcde22885daef73164c7e1a53db40158ed50e41

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d02556d24aec862e91e3648a6368100008a45dbfde67199e77c9df737718df5a
MD5 017833a4a2398e3cd56e1d41789ef0ad
BLAKE2b-256 0ba9a68bd8eb3c6d52935234bbeb0abbb7c636fb795337d660d56701b1034869

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 79afbcddb42048310a29c8b279252530944f576089d8e357ecbd25ed99065c3e
MD5 487657e3adb7ba4d7e4e8e81bf97c481
BLAKE2b-256 f67c6b759d732a4b337926be7301f81cf914edfad879a624b504219735164bc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1893f8cffdd37ae366c17b0765a9e22bce8db6203de5bbb9ef685e5ee5751794
MD5 01fd9d6ea0b3572a19e2260745270493
BLAKE2b-256 2bcfea293d2dc5a2242f849b6d4aa80c190c5e12039b62c555d2e0d4033ea346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2b3cf27e9ced4bafca16843cb75241888a0d8141772283b40c88fdd5a9c8147
MD5 cc03fbdc90062848ef918fc3fd3d9593
BLAKE2b-256 8d1e8287b10430ed967a7d9cd97765fc55ab0845bc0dc9b981aa596b159e0e00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d97fe17019644ebe68f21c2e8b3d74d758131b4d521275250c28e6032472fdd
MD5 c8fc4102fc90ddb45777a91c5ae14311
BLAKE2b-256 adf6327cdc4a816d257a5321a0a6edfe38411eee0801be2cde9d449f2afa77c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79755b36f1a6cb3094c1faf25834095203473e723ad6864936accc956f0a0748
MD5 a085e694a4376b700fa29cad752490b7
BLAKE2b-256 6efa328644ccb7e75aa573dcb3b419ba44ed0644ef7491ba9973c38a786fdbe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce91daa0062460a871f57cf565b982f7d393eb9081ab242bcc26eb9f6b6a9413
MD5 56d1ac9e415a0ba4091b4a08bf5d2bdd
BLAKE2b-256 4aa9dbcbcd666c0c582962f3dc64e023c11985c7195fdc10b2e6908da24fc55b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 529ea3f177d506deb5fd8d725059b3a3068094f33ab9b5247cb3315b1ce1c799
MD5 f1b2401cee7671c5345f0a5d9051c2d1
BLAKE2b-256 002d0bbfe3dd993150d505080106e47bf794eb3a029a4358104e1cc1439994c7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 852d3d29ff0f678af0098696f424221f7f5abf27fd9f4dd104110f76e4afaae6
MD5 0314ffd93c166860fdd84ca8e0f8475d
BLAKE2b-256 673fa503eb5bb95453553384286d02320a7d2056427535640acc49c8f35cf2fd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a4b45e75ca12f43de8eac3cf99b1b12881d8439710f7490f66040ef9c4e10547
MD5 804e432754e1e730727182dd9cb0a428
BLAKE2b-256 84b5e144e59ffa101ef41374beee8bb631f010114467954f9b5a35173963202a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8404b686ba0e6a072fd523c7445569b3a95a3997ab8d6189729bfe06b73df817
MD5 7a8e79e2fed8efaa68da9e08e9d35ff4
BLAKE2b-256 17ede87ecd1166dc4218b8746ce21a5113c6a5b082f1193566cfb4398027c884

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0038a1229509eb4869c3b2f7c13cfbd8d1d3280b8dcd98feef1eda8710c2ebcf
MD5 9f35adfc4d57abc0612cf8d7c6f14c89
BLAKE2b-256 8c82d175b07495d974389211b58914483ffd0f119473efbff01d822ba0afc291

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f2d38b571292c1b3e8b6490c8731a9242fa53b1f2191c5f06754c6a09d69abd
MD5 08c339acf5d089b2f854c0768bf16b5f
BLAKE2b-256 b37d2587a7499294406cc9a8667990d5b4d2dbf6fe3d2c271e3194a65fca13a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1865307098985c2d08ce50b00e3ca081b253fbf13fff68e58ee5f09494b96d68
MD5 e131957345f82eca0e81dd1c8ee2981b
BLAKE2b-256 bbfd09ce9b2388a74cdc026f2a6430fe0106b03eed92b68c0f5e314d235cc38d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34f1bc4ea259a0c5f61a08705dbccd92a8be1a7d0fd0178b28f121768ff46163
MD5 6fd1f9c13156abe69c5d46b0e2156851
BLAKE2b-256 91b6419e5c177a586b85919106cac73bc75b9d3ebdceaf48b23e63fa037c0d58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e1278455fd12aae71da09d0bf00226d81be08dd2783d73a68d8ad5e61a377eb
MD5 4a21ac8fbf20e44708b35068272bae26
BLAKE2b-256 6d1473c5609645a969679513a5672e75141add55e74f1b901c0f119d9e0b6201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec2ee21eacce015553054b1300f175f88f074b40c8b9017a62df7b56b12b3319
MD5 4db592cbeb2005cf1a5d6b652ec1048f
BLAKE2b-256 48234f8f30a3fa6e080a47c9744b2ff779a0b39dd53eaa19f18aa515f0975f68

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3f4879b60e36b23ada2a7ebd5a09f6e52b3f8fc5c5375fb5e412bebca1aa8ee
MD5 913068c4848661f937237bb465583627
BLAKE2b-256 e3765744f1a6d6c9bc13300f321a14e7c3046dfc19edca2d89cf2720842cd86c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pymseed-0.8.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8f614c221daa7cbc5669e4a9b9175c304c3f765d6f80fd55b9e3e97cd4933a34
MD5 1e036ae907e695f55bf434f28535230e
BLAKE2b-256 380e829d36b9bb3853892be0432cfbe7f4313b4354dfab8df8aa087221c19324

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0ce11292d01a5149d31706b4c2a4a560b0ae993c09a597e9eca2f9e876b0faf
MD5 9df8d942374f75cf2077c78ef2e52aa4
BLAKE2b-256 6eb458250081de6f4dcb547f59b53140adba48cda566a5d6b0fbabf18441ca71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d02d63ce7a30c366205dd2e106066e99df991598cfea569287ce9f6fe21cd5d7
MD5 b91418af93c2fe34c8e6867673c884f7
BLAKE2b-256 601a92065b47a3fe3b706c8873b0a5fcf0f72e261ee2a452c9765be8afae767e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e3ae21fafd60e8b716ec1226ba8c1410dd893ecc18bf5bcb7cfbf582a752518
MD5 20b7d131fbfc59c5e426ff139b72c024
BLAKE2b-256 f340b8795adb0ada24886ea58173007927e01a6d92f582d25aa9dd115323f032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8381da43092302cbe1ddb8dadeb0a8e31097b9acefe269cd7b12c53b989a272
MD5 79970fbdb1008e426300a56a26e10934
BLAKE2b-256 570c45dabd8ee13d9400403d9a402a212d7c1bd252c8f7ebe35a12cece286026

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4739ae3494ff0f9eaf9380d42b886f2cdf7d90142cf614c210a51b7f1f3aaac2
MD5 5b1d4d4064717cec99168892d1f195ec
BLAKE2b-256 3f3fe08323176bbb97b7c2d8a814b3b2678902f39f0861df068677e9c687b7ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73eed73f1154bd018bd49a3cfea821c836c9eaaa993552a15617affcb7a8015d
MD5 1ba5b44e4a23265591480f60860983e6
BLAKE2b-256 87d0bfb8cd98a23a8ea02f7e290eda26b7feafd6fbd7d24b804d4e784c165fdc

See more details on using hashes here.

Provenance

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

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