Skip to main content

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
starttime = timestr2nstime("2024-01-01T15:13:55.123456789Z")
format_version = 2
max_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, starttime=starttime)

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

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

traces.to_file(output_file,
               format_version=format_version,
               max_record_length=max_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

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.9.3.tar.gz (1.8 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.9.3-pp311-pypy311_pp73-win_amd64.whl (245.4 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.9.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (320.1 kB view details)

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

pymseed-0.9.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (321.3 kB view details)

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

pymseed-0.9.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (282.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.9.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (300.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.9.3-cp314-cp314-win_arm64.whl (248.7 kB view details)

Uploaded CPython 3.14Windows ARM64

pymseed-0.9.3-cp314-cp314-win_amd64.whl (273.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pymseed-0.9.3-cp314-cp314-win32.whl (257.4 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pymseed-0.9.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp314-cp314-macosx_11_0_arm64.whl (312.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymseed-0.9.3-cp314-cp314-macosx_10_15_x86_64.whl (331.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymseed-0.9.3-cp313-cp313-win_arm64.whl (244.0 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.9.3-cp313-cp313-win_amd64.whl (269.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.9.3-cp313-cp313-win32.whl (254.0 kB view details)

Uploaded CPython 3.13Windows x86

pymseed-0.9.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.9.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.9.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp313-cp313-macosx_11_0_arm64.whl (312.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.9.3-cp313-cp313-macosx_10_13_x86_64.whl (330.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.9.3-cp312-cp312-win_arm64.whl (244.0 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.9.3-cp312-cp312-win_amd64.whl (269.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.9.3-cp312-cp312-win32.whl (254.0 kB view details)

Uploaded CPython 3.12Windows x86

pymseed-0.9.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.9.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.9.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp312-cp312-macosx_11_0_arm64.whl (312.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.9.3-cp312-cp312-macosx_10_13_x86_64.whl (330.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.9.3-cp311-cp311-win_arm64.whl (243.9 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.9.3-cp311-cp311-win_amd64.whl (269.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.9.3-cp311-cp311-win32.whl (253.9 kB view details)

Uploaded CPython 3.11Windows x86

pymseed-0.9.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.9.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.9.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp311-cp311-macosx_11_0_arm64.whl (312.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.9.3-cp311-cp311-macosx_10_9_x86_64.whl (330.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.9.3-cp310-cp310-win_amd64.whl (269.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.9.3-cp310-cp310-win32.whl (253.9 kB view details)

Uploaded CPython 3.10Windows x86

pymseed-0.9.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.9.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.9.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

pymseed-0.9.3-cp310-cp310-macosx_11_0_arm64.whl (312.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.9.3-cp310-cp310-macosx_10_9_x86_64.whl (330.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymseed-0.9.3.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3.tar.gz
Algorithm Hash digest
SHA256 911f8438466af9c14c495583f1cb57b5a3f121fac2db138432f7a466ed759dd2
MD5 b3f55587d08aa1e3dae93133a817f6a3
BLAKE2b-256 f8adac05cd841e5eeedac4225bd03e498d6721fc56ce4de848cc4aae1b45edf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8840571d51dba04801ef1136b38cc4aa475043ad247b1684cb3f618a45757771
MD5 c55fcd1c6a5e9a241c6b4752c50573ff
BLAKE2b-256 606beed402af61b9debeac4b76b453ec43bec955553072e7abe64169008280f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.9.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.9.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.9.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55f8a114b697aa9fcb25589a7714f42cc711c6eab79dec5145199adc62d7dc91
MD5 a50c5e51d95cc37db0551bbe238af317
BLAKE2b-256 12bd8f5dbe0fae2b52308f86c9727aec8fa8df6f25dc6d0bae50880bc35e2419

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 632b7bb77195fa83f27410282aad3e95fb873548743291413b607e464a75df23
MD5 0b8c68fc0777d2cb3eaa592835fb2a59
BLAKE2b-256 ebd723847d3e7d4a1c6cc870e0f142ace7d550fd268b124aace8e85ea0b23fa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe15c49208dc2d062e4291cfa7a324027db0e5b804e46172353e97c917f008c8
MD5 247be1812b104356c14316e0e90aadee
BLAKE2b-256 2fde05d38eddd75a2bc9667ced5f39aa75d18f5dd0c2439867736c7b4acf8c7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1cd2a3f16bf7e52d269b0323f99fb22b4944ca1e5c64fe902ce0cbcf81c2f915
MD5 a5071a87d5674cf41a69204ca4bf2958
BLAKE2b-256 6b7044d2015057d6c44386e261008704c0607813da41232a3f58c773d342006c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 248.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5bcfb24cb17d2cc7a2caf134c04738a324bcc1a8edd04e90fc38662539a0f3ab
MD5 0e1944c970cc185e556b2374598648a1
BLAKE2b-256 b01d15ca6e5e7f8186d4885e9f701d7ed8e2b779de975584cecbb592c75acfd1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 273.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9626deb1e9fc09320006b28b72620d839b7ae22e030fe25fd3d8db7412d40dde
MD5 8c67107201182e501cb32fd15ba67c19
BLAKE2b-256 67ad65632ac93c00a9f0e366c062c74e0afda738252427b81e8939da780f08e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 257.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 46f14ff9458034a52a52275d497330db71cc8aef9b65db9f93c2d602be377849
MD5 f2cb2af249d7f16bb3fa49273834ecac
BLAKE2b-256 a5d3fb29d6f8e3b5dd9a8480f13d3616621645a72066d37a8edbabbbb21e9373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc0cb0b899fb45c2563387dad36bc8206b9d07e240feba3fa9667f142cbadcd6
MD5 0b396df39bdac60422fbcbbdd8ea0331
BLAKE2b-256 e7be7f3f3d68ad2f40c8ec92321165a70495e202d3b037eba1083c4986c26ccf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30dccc726e4151a265dc5a0de0b653b9bbcb0eddf681516d12d3dccb3cc1b739
MD5 7d3dd9d7c5719f8c8c4a155ef243735c
BLAKE2b-256 0bbb372e0ff25570a959bdd7b67d6e3f7258ae161ef0c72af93c7f8fd73b12cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e60029de22c227ab1c78dd422822e22555d9d1495c3b9632ab84a3b9f1b4996
MD5 17ba7c64aa832e40e64983544049599c
BLAKE2b-256 7eaede0372075eadc28885e2f7115a1b1237a04f97f33d04483de2d334f061f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c869cd126d03959cd842ed3d19ed6b79396c9c6b1d5aee9c1ad6aee6d0383332
MD5 6b70ad23fd724489a21fc509798f68b1
BLAKE2b-256 95dfcea5ec7a819d582532d42fa432fa73ca6f9cc5b1584ede0b3bbcbf8fad62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 260efc5d6a11bf88333068bbf51ca98a004d512d6a5da3d11615f52e208d133b
MD5 0c19698e73f8ed696fcbedaf0baae101
BLAKE2b-256 ddfc1d60f3e5805d761f361983b14f68a87f49426b90bcc5f696f3b6aa0598ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 35cab963b1592186fb40681a9cbf5e008aaf70516d4597a521f7fa4e61cd2a79
MD5 6ea2477680bf94c043268888273db790
BLAKE2b-256 aef00890f87d901a84a4497d24839f14f4cf153a0e8272653adf4eeec190ee01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 244.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e5b64cd93a6e1b95635712e58b6483cc87dcac506935e51cced10bd4ee23fe2b
MD5 adb1ec0d61fc19228046d1841c3844f3
BLAKE2b-256 b259763bc0601436e8cf3329cde422a91545351b06a8a4c696a23094e5f40b25

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 269.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 25811a02acce91fc26f77d5941f35553249070de7f69725d2caa3e19b9ebd891
MD5 32fb1f78bbc61b0923f40f828a9a4188
BLAKE2b-256 be28ed99c3453756160b90ef7039fe6553cece920f991147a9aabc7081288027

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 254.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a9c88989c7cebc8468a3879cd43ed2ff783462590496f8be51d83348a6a3e68e
MD5 d1d3cd190feeb0dd0cea4e693150839f
BLAKE2b-256 e55a48c52fab16f9e1c1d2900e9b74fb3b12d30025e6fd49611413696e1c6a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cecd29bb8bc9ea227620bfe5a96ce711fdcbc748c5c166e902a8e86187030d3
MD5 07609d72fb96a98e044b3c273c2a8fbd
BLAKE2b-256 755319f1b6a450c7b79d45f000416b59ac4ca54174f2063aed80fb1094b32c89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5fd699e4d84662bedeeac1dead3a2d3c17067486c6d7081fe4ddf4dca9c6dc4
MD5 9bf9e53b1316a8929643e11c64573a5d
BLAKE2b-256 4f6199ff3b8aeb9925a7e2283b65355745467528ecd29970f770354d89f26a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.9.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.9.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.9.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f83c4cbb3a4e050e5a5aa37bb2ea6d1b344a414bbbbf174e408c6b91aa18d3f
MD5 d2550a6df08c12705af561a2327af9ec
BLAKE2b-256 8579797825354de156fecce88b16a78058f2ac75862375513ba553bc0db7315d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f16dbc7c63aa864fe06fe50388bdafc3347799b8461732342325cafd329a92cd
MD5 8eb3e88c67fb3199fc900ee4f0b1ea7f
BLAKE2b-256 fbae825828d6f25341820f07beaed0582cdb2fbfcdf1cbff01fcdde85874a64c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69c58834efa2e0a342d4eed70fca1fc64162dca8b9d7c85774937abc108fd829
MD5 5f1706a3474b761c645f8b7aa2310082
BLAKE2b-256 0f8163c553633f5ab7cdcf3db3743d1ca7d49e38f056705586b61fdf0d486068

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 457e6f4ebb9fb7f4ff38bccb14d4f9ec21f0c5b2b56b266e09f1e8b445022838
MD5 8d37de5135c04b5eccbfada93d4df590
BLAKE2b-256 813be45f696a0ed9c0fb65d6b5efaa51b6637710bdd6877a03b1eff92ebcf71c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 244.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 64d59cb9f24e7cfd051f70937efad284b9d5f5be4fce40deb7c3b0997f0ea0ab
MD5 558d11831fa83aa341594548a2358500
BLAKE2b-256 b4096eb4aa6fff79ccdf2437ddecb4e35dd7a7a40ef999b09e79505b8e84a544

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 269.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1f4170f203db6f15590220c7f9ad37093c66584a802b69ce85d70da40f63b6c
MD5 9d77cd992389c5d17a59b4380903c606
BLAKE2b-256 aa57b2e98768273b4c1d202183ef2a2d37301ef0acd0e93301fa4e9399879861

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 254.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b980480d53755d90c709ee1e1d506983930f422e3a402a60c2df2c049a4e3d0c
MD5 e11833eb443fc9ba84eec9329610a4f7
BLAKE2b-256 2d6ce7b2351e9a0efb4ef6ef5bbd929226b3c71789061d3abf6a38668138f44c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53d549c6bdde85b014c98b2bb7861ee2563a36d8827cc51aa94d9f7c6637f881
MD5 435f237e3b6d116f275c853a7636201d
BLAKE2b-256 4f8a374301b919352b673b8b37ef7c554ae856a520b23a6271c2ad3f53f147da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1912c7c1a72ddfeee5bae8b8427ab1d29b1e5c3137af351ec17856f839a20386
MD5 d852ecf72dc30fd4cb895ac834f38a99
BLAKE2b-256 4ed56af54fb7d964786348c5c6314fcb17b5ea4d1fa19713ebe989ef920f84e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.9.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.9.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.9.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7c29065831663f664087a09c663c5711038a32aff5bacfedcfc4f7284005340
MD5 25adf5e09f02e8574d1d289d839d40fa
BLAKE2b-256 2767e04c26116fa13c48a8a33a18ebeca14944e0c3ab77936fb99ac0a409ea7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20a5cb1950782de551515613615da91255c84e3c658a412ef541282fa69115a0
MD5 5a3a178ba7693c64bff9d411edfa186f
BLAKE2b-256 304bb743c6de8cab52037db9cc83d8a0172d1988975d39d2319a1fc91f1ec410

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67dc48d2981a7aaede4e2dfca86209a2cf1627ef1bff4d52395dd4c52e792b34
MD5 ec5302b443ba8fc6b095c1ca4334fd95
BLAKE2b-256 cdf16280df051c123b3cd4e8676f212aa2fcaa7da2c544603a8d97fcabab0744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5e25be1d97b3dfa13f6e5925ccec07709b69a125393b376858eb327dd4cdf36
MD5 644f7e58cd0acd62d2de2091b3041747
BLAKE2b-256 e5221a01dfeac870472774ac83b26181373a9d6116b29e8b1b59c4736d444116

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 243.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 38455c41d373970d0366c03ef174a02aae54e684be80e2fcbdafc92424e7bcfc
MD5 2822621fd65ed71f348917d962e28fe8
BLAKE2b-256 2045941f86801f9bcd00d8d5fccf9925780f724588409c257fec43bf022bbc4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 269.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8b9d10c181502cc9ad247b995acc0f2d67c76220cbfe48ce48f6a34f5b09d2e3
MD5 abfa4e4815753066c19a3d0484ddc943
BLAKE2b-256 51630f035bf3456fca13e1e0b2a9148b7c3b48f61d7c542caa2cdd49a6cc0b7a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 253.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ea4d1dc746da86f9b675f5351b0f34974094d303d5169ea3fe4be9bb536ef43e
MD5 d0d7d49646ec716fde1a0fae71115cb5
BLAKE2b-256 72524be9a01804dbf0727c171cd80c64ec370662d7222d9ecb2dcc54850713e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 967da4682d09ee2779d220e731ba3272ec843e9877aa4cb9da41a82617ec0d14
MD5 68aecb3d0b3d41309e6486e240fcecf3
BLAKE2b-256 1330d035022331516f87b8f63e7ea6935036e8a2460c7aa37035ad72b6975d89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c1f506bb304a72eccd13fdad8347ad38b6147641cc8be8372635cbd1492abbd
MD5 275c38c7302766dba81ebabcc4354599
BLAKE2b-256 b86e07f270277ea38e88f7202c346d8e86cf17746518e1ceca0750e20411ffd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.9.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.9.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.9.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dff88db49bd95ce2f4bad27e804aecf77183a5dc2066041cdcbfac8d1dd4b818
MD5 96ae4dc0550faf3c53cea375ecab9600
BLAKE2b-256 e4d93329cbeb973da4ab64d72abdfd6bf49dd6f3149ac92bbee2a196acac8296

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8237fa3e0dae8d1176caa72d147384d1489af97ee7c0b38eadfed9a0a139479f
MD5 b863c7c32fc6c5285ed3781bd8e55502
BLAKE2b-256 14d17763c6c81d7083dadf163942d0d6395e72313b1dc8c6bcf0aedf3ca26822

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73bca2bfbc6a7a3f5bc63e3ff58bad5123380623581ec297ba950bdc3d1b2d5b
MD5 22c653c13c5cd8fb838c6dd2640bd9b3
BLAKE2b-256 f1f73f657039311cf00a8a6eb6dbdd89ad8b3d287b80c6e64f0de775feff78cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df3632e79fe420dcf67ec31dffcbadebe88f6e58f2acaabe6f7d818dbc90695f
MD5 3c83fd7328aae087695d41333b56e35d
BLAKE2b-256 47567a664c6cc40da5e7f736262d355e852d8652a2ccfd879d228a5adf0d3422

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 269.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 06edc727d067adc9bd72a668bc9380f6c01ac4c31c442516a025a956e09863b7
MD5 c0b1f588727f122f24df77107b01e8f3
BLAKE2b-256 857da75d697d5dbdd9b7186e5345789259b6873e7976d69e02fdf2efc09a4222

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pymseed-0.9.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 253.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymseed-0.9.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 596a2c2820f1d3e0b1e633ca92fc05521c5be6bac62e682b898e36849212fcd7
MD5 eb392f33935c1848a0c94a412a90d9b6
BLAKE2b-256 496c87280cb106503d98ef187fb1bba5f09f7575abdf6a30a31d1d49a52ea9e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f315eb36a2bc58e304e6e2d381586081d6cd3dec1f23a4e8e504b0cb5d8aa5c
MD5 c8a24cb15df8ec528a61796001fe6880
BLAKE2b-256 151db828f44b5fb9b530aeb6eeb124353c1e6c84a197fd4c2422d6e63090d03d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d56b072affd2fbc18aec503898b5a0ed386a3d25f32f00c0989c8e45904a8e9
MD5 95af81533be191e7bdbb13f8dabf3b47
BLAKE2b-256 31c5e620488e4bcdc4698c11ee204c892fc07b0f0dd7738fb56efef8133b6245

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymseed-0.9.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.9.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.9.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d32f336ad278b50c9398f809f43d280336a2249b9e5fe5b1297539d3d0dac4b4
MD5 243057158e742ebd26b8ceba1680c988
BLAKE2b-256 b9d0d6b9c46626a287e71b3c393cc638fa6d549eea6bdc3fc643cba1f8f9b9c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98f68c88fb7df5c15883fb3429c06b17e9cba537f1a25c5ae0209c0afe5ca050
MD5 8686ff4fdcd81b3b27a9c67423b9076a
BLAKE2b-256 d31d5f44453bafd02d8f3ef04a4dcedded75a854b4c0a5740bee13b994de790d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fda3d1a1e558dea8ad2f43784431ee99a0b8c4d31486344beb8f61fe13328d6
MD5 c2d8761d4447a4d89875652138eef3ef
BLAKE2b-256 289fb8885a59703a22667c1428464b66351ba07a38551a1681840bb5ed168412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymseed-0.9.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e96df7e71a459cd69bea6dc9c08474b3c6370ba6eaeca2b606d312432a0e408
MD5 4179d793234388c5513112f4a0b9ff73
BLAKE2b-256 ab16bcb84e07bdef414ec4b66a0ffab887205f06862ce0c648902ff9804ab71f

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.9.5

50 files

0.9.4

50 files

This release

0.9.3 This release

50 files

0.9.2

50 files

0.9.1

50 files

0.9.0

50 files

0.8.1

50 files

0.8.0

50 files

0.7.0

50 files

0.6.1

67 files

0.6.0

67 files

0.5.0

67 files

0.4.0

67 files

0.3.0

67 files

0.2.0

54 files

0.1.0

54 files

0.0.5

54 files

0.0.4

54 files

0.0.3

54 files

0.0.2

54 files

0.0.1

54 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page