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.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

pymseed-0.8.0-pp311-pypy311_pp73-win_amd64.whl (204.7 kB view details)

Uploaded PyPyWindows x86-64

pymseed-0.8.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (287.2 kB view details)

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

pymseed-0.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (289.0 kB view details)

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

pymseed-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (248.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (266.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.8.0-cp314-cp314-win_arm64.whl (217.7 kB view details)

Uploaded CPython 3.14Windows ARM64

pymseed-0.8.0-cp314-cp314-win_amd64.whl (232.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pymseed-0.8.0-cp314-cp314-win32.whl (226.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

pymseed-0.8.0-cp314-cp314-macosx_11_0_arm64.whl (276.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymseed-0.8.0-cp314-cp314-macosx_10_15_x86_64.whl (297.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymseed-0.8.0-cp313-cp313-win_arm64.whl (212.7 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.8.0-cp313-cp313-win_amd64.whl (228.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.8.0-cp313-cp313-win32.whl (222.7 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

pymseed-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (276.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl (296.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.8.0-cp312-cp312-win_arm64.whl (212.7 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.8.0-cp312-cp312-win_amd64.whl (228.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.8.0-cp312-cp312-win32.whl (222.7 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

pymseed-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (276.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl (296.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.8.0-cp311-cp311-win_arm64.whl (212.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.8.0-cp311-cp311-win_amd64.whl (228.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.8.0-cp311-cp311-win32.whl (222.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

pymseed-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (276.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl (296.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.8.0-cp310-cp310-win_amd64.whl (228.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.8.0-cp310-cp310-win32.whl (222.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

pymseed-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (276.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl (296.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0.tar.gz
Algorithm Hash digest
SHA256 5c8c13b9f99c9d8f299cc38da8eed58edb22c09cf03ad6784ecfa3fe5c25ce31
MD5 31df822826f67869753941aef2d86f9d
BLAKE2b-256 ac3c1e3b1d1eb2f8db5d5ff66b0edf85f812ff4fe4d21f4782d3d2f1f624d978

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 56e40b438c5aab67d02a7febd1d448fe0dd9d76980a2c1558369cde012951939
MD5 622d9a04fe7b63cff1c26bf949b969a5
BLAKE2b-256 0e83e9d9da13e2b5819d36c8654fc6a752efa67fa59b6a0efd5dc7e6be6eaa05

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37cc5a329a6f1bd6f4e74349eca2462d529ecc81d4570bf3fdcbce3d97733b72
MD5 83ab37e0b6c496f10b7cd59c4d90dcd6
BLAKE2b-256 4f74566263f5ad167d9bd3d2f19dd72bacf48c74e9500f5d6b6bab6f079e006a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 477aa74151d35dd6100e9bbee2357ccc5cf54f6b1169be2f52b90e40e3d46bc3
MD5 3151f5a49b3af78be891a449d293d68f
BLAKE2b-256 73a4d94aeb5910dc410a3bf43401e8f1d3a077c004e6cb937acddfe44dfb9ae7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6061afe266da2e9a88aebe6216b4cc09bacece102a1f4f42fe0ce53497db359
MD5 1f9b06414c157af8c6e7bd234f158b99
BLAKE2b-256 600da9bac48cbd9be8be0d6f5335afc42d68c723f14bd67158fd0c965b10fbf5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 575b15088ecf4beddacafe2eedd2c9a251851210b65bed4e7f254026aa85de37
MD5 f06b2f1fb9a79088af7ad20defc51e26
BLAKE2b-256 e4f91133e5883dcdf0913cd8bdf56a416f02504aa8070a12062f59301d7064d5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a2cbfb29b0d4ec3279dd4ed2e75773fa008029e3edd94644cb380df02a8a9624
MD5 a5fe034f3bb4f2c6291848a60e38bc76
BLAKE2b-256 4292b7886c13a2db6744b5f313f4f4c0e4142dfa8ee172d2dd62d272a5309076

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b91f39d02d3b7123d92bd3be43de7557eb39099bccb502c25dffe7def85b7333
MD5 aca416b78efa61597cf3aaf3d70c6209
BLAKE2b-256 f9da7467ad67787b458d0da32f7882caec41367f5de08fcfea0ce6e909c01b6d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 44bb72c1b15c41ea32c1f42fd11dce69eeaf906940d2ed5a485fe2085d915c03
MD5 657e3d25ae7918f6998c163936a7f981
BLAKE2b-256 98cbd21dda32e3c1db3986008237d2f49185e0320386c57ddd984c0f52f231ee

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed4468633b204d0e1786d3e9da9b5a5911d822b76dcbd7da399db51f3047f92c
MD5 7c9cccd31f114dae706c41ee4b4c1a6e
BLAKE2b-256 d7b7a1105eef7272d66f694369585caa900bef4e705af22fd805f994902616a9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1bc5ff617dc6f6a4a1d8d57e350895cd3980c2376f1eac15bc791459dd2be35
MD5 8b2d01da28adca45bb0c01c75adaea12
BLAKE2b-256 f89382489dab49c6f863d433fe7592e6728c86d4d40d7bc128ee5e7f227ff60a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fdb0a3249fc6cf4424ea19f3113ac3abfb12b9d9cc7bc0989433ded3faa2593e
MD5 a6e2eab3b173536237c525e25471780b
BLAKE2b-256 f1c151d66df9e974fb777fead1a5c97db9dd84e4bf1f50aa361c775fbbfd2f5b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 546c387258d1e090dce06db40dbaaa43e7f971863bb0242108ffa16b6ed56a3c
MD5 b9ce1f237f85b06e88cdd369b043e7cd
BLAKE2b-256 2ab09a1894e50bc2cc2b4d70a8ac04e0565d7060b26ca38cf80cedd5e9b84ddc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e2d69c0080b3ae5c53e49068cd8781bf7fd125ecde2b7eca2dd0f20bd7d3071
MD5 d83e45cb79c88097d70341b2d5ce760c
BLAKE2b-256 c823c861ef2fc24ef4499f76f87e10e908457e8489997981721f58d0e2a66a73

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 44cb19670c4bb741d835392407b119f07114f251a0b50ab1be906e2adc95af6f
MD5 141c4faa81579f25ca3f2183d891fc85
BLAKE2b-256 6b97962923249aa91b7d26ef983f1377d4258dc43863de0ca92a4c34dc864d9c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 865cd5268931629fb8182de93f71df52693247a432efe92c66391cb7882df03f
MD5 a51446fbef6ab62715b2bef5912860dd
BLAKE2b-256 3f3cc21a93f7a2c17787314b7311bd132a7ecec911cc6073b1d7a8d75434c5e6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88e9e0e97e7cb012e7035039281d5f13ed792575c70a8e3530a9ec14f0829f41
MD5 5093f3c46352d05b9d2b259a4d7bb3d4
BLAKE2b-256 d5ac92315bfffe6da1e1851239371d277cd7789e6d4245a13b9ce7cd796221b3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b5b8d64e7ad3edff93ba104a0b2d1117aa420b5d11277fe36d5a2ffcd2749568
MD5 1536e1b9714ebe3b668f49fa09532278
BLAKE2b-256 cf2187ded95649dd42144985331fb6a45ad20b4c41611f865e5c2e7f10790f09

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b98e589d917548f47e88662417b32175ecd93c6c1da11eea9341cd192bd7c73
MD5 2733b55832fe71b3abf172c79524676a
BLAKE2b-256 1b276608cff5393cee47c64a606d59de80923d04e72757ae45e4386cdd7b62c8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53ecb8f2e9c1cbae2f2fd7a36e98e25460deeafaaa5ed3225ee1f42aeab73377
MD5 be0d5256ab53f675a60123840705e346
BLAKE2b-256 b9ace1e377af93059cb6cc2a9873ead2bb3c7f78a0cd3f3a36f11624e68e17f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91203e3c3f5640d5c3e7eebec85f5f0d83e18756570d1dbacf14360865dd690e
MD5 690361adc39f34513f77ff1f02159cd3
BLAKE2b-256 ef07df40fd603f0a3133389579591f8299a572c8a32da4aeffbfe6e1dd203873

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 943ffc4f49aa985a07ef5fe314ca471421d3ea6e6b816a29e4b54f39d43d7273
MD5 26b56a99354090b30400b1a3b59a0c43
BLAKE2b-256 954f199ef5700b97dec6a7375162da0e72cdb7186de5295362cd649ee3a4fd59

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c06708efcd555c63f62c27d9958d83552ef3996e85ff9a9ee1e6b0dda8189a17
MD5 b83365e68f7eb3d9274c6b4fbd8e5c6e
BLAKE2b-256 12364a9719fd016b73dd6a4581c58bfeb356054269d63170fbdd6f769324333e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7f9f74790232c4cf04260018f5753df88ae691c84586709db78534434f864d7b
MD5 1fd6b7899192f1909ff5fd74037d9ce8
BLAKE2b-256 27eaa86f110be6273dd2c4f3e2c931661ecc8b7f4a1d8542cebc727f39f28746

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 55fd53d4f0f255f33b3b7ea8b58ecf740109428a98a5f037aca7be42279734c5
MD5 ee932d5dfe136ef2f4081137c35ba860
BLAKE2b-256 ccf81cf6265f984b0a73ec15b37c70c0e5bd0dae6a12370376c12a7f64dfcf02

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be4d413bf2c9f867b5b66396c31609bc1fcaee922cff4b5d4f982f22f6197017
MD5 4a34a93e2bdd18474d353084430cc588
BLAKE2b-256 3eb1ffd7fce31ea79617c4ae00347ac61787f5207527a34d9a32530f75604972

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2b84bb3f51eb9494c7d37e259deddbeaeb81b40a68257ab67d11c2a3a8ff620f
MD5 dbcb257a36579ad0a52f817585eaa1d0
BLAKE2b-256 fb6ed854ee75e97ea3fd9b32de1e1f00dea23343b69600103926e4df8fcbc456

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 244bb43a6ceebfcac11069bac953b07d7074771a393ed93ece2931e6b1616b36
MD5 20582dab1f9024a1b51f89dcc59d0ad9
BLAKE2b-256 4d5e5e7fc8ecab395ccb565363fea4c06386cd6ecd972c8e9a5bb42e2e91ccf4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e66d51bfdd589a768f8f88b188d11f09fdd52eb1e781e6df9677085a9bd0ead
MD5 dd536542fb01bd6444fa96cf0af16bb1
BLAKE2b-256 ddfca210c22a8e43fc26fed73b714f0ba43d52659b228a760da6e990475a34bc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c03614edc11d31275e5538d2c4b1ebefea2ee8d20f0e3ffc1a76ad7ba534c037
MD5 7b86e12b1d3be192b3f606ee13e28fdc
BLAKE2b-256 d43c16a9251a260995da2ea0d4a14f043af6fe33030a4d6d9d95e5dde23439f3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a1f406f10ed6fe234c30ac6bb304960298d23c1ef39edd9ac4fdddaac776f01
MD5 e07272c696b60ba3fceb71f3ddb4bab1
BLAKE2b-256 234c184431d00357d47255ef04fa2e35c5e7f2f0751262a551e708c18a09efac

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dad86213cc47fd80be95bd5060360e68a5073d794d846c4f63b29a60283ff10
MD5 5a5573037b2708e1066b88c0864ac23d
BLAKE2b-256 511900c6878d6caf089a75d723ff5719c581158bd021e66226d78fd9fc00c7bb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6e9efda176a7f2c3209ba19684d8d4b720d36f58c2b47c8e9febef1f0ebecb63
MD5 74bb660443096e85a0f1c290f81bf26b
BLAKE2b-256 1d024b831aea669d2db6488f75dd4be820f8d4c7da2e0aaba80e2edb401afcf1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 922b83007f5a4a862b3bee08516301c6eebe4ae5b6702ef9e051b8594cff2c8c
MD5 069919b6ebe9b9caa6fcffc06331302d
BLAKE2b-256 9e47b69b91b6758fbcaaf9181b533f1770458a4249d8ff179f8ce7000b5ac2b9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dc174157d934c980c2a8e88b234fc0f8b2b195425b8acef1192a57f68f43c77f
MD5 7e0cc00e4f1fde2030e05666d3fd6b60
BLAKE2b-256 abd2685e345d306dfc58380148fa264838c76aab302fdbcdb03038f3cb1c10d4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 93be5505bff77e03baaa36b4138ed0750b47ffe96e14fdeb3b18c88f5d9bb4e4
MD5 e5a1c1d2cd19766acbc0fcf4dc759240
BLAKE2b-256 e134d12c3cb0abf1f4a5acc99ec3dbb75111fc6454f2b2af179386ec3d225efc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4765d66c4718d67eb336c8ab6853a6358225c5008d177fde0f594c957d8058e5
MD5 f6c960761a4eeea739c4dd2637ea81d9
BLAKE2b-256 ad2bea6418559bffd878460822c866df45ccc4d497f2b34b12df04bd695beffb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d567569d65c93bdfeff74687f8808e46883d53375836622b0b54b15f22ab3779
MD5 771d55dee4171909e1ba32f748f34aef
BLAKE2b-256 f3e875f86c41f94447a81cbca0a702ce2d9ec7e6bf88ecfd87c4ceb2a73b0249

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56ec8ff4e9ab6f3062e1d831139f291711d16b95e9add043f3c7f0dc11630054
MD5 c915fe9640800677e23be899ae3aa8ab
BLAKE2b-256 f06ae2dad379521f720c812437c482c5dd58d2fa5944aa24e8d2d02a631cfe0c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2daaa8751c75f62d713b27f19cda641db3176b3c9c0080d06bcfde393f26350
MD5 c86b1693478af0d9ab0bbe0957381ae2
BLAKE2b-256 077e2b8e7a5f50a6c4df7599eeec7023e0af7efe468d6f3429985cb62e18793c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12cb1e6506df6f2bd1c3d68ce9d4b56ff740545884a5c07e9691bfa50b4af4a9
MD5 96cb61353ed631d1d27573ca586cd1c3
BLAKE2b-256 e62f357e23fe5866739bbdd2317c7f2f560e24e6f340434098ec2b56462e23cd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 823d45822fd82425d8a159743d1a955703ef400c4088efa0bc50e48db8b1d3b4
MD5 a55b82414be13bce8b8e44c4bc77d34f
BLAKE2b-256 be3395c9e57072b7e565f5f85b9a14b6e6afe2f30b55f68983828b4d8331234d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5dcdb650005e5ec99f6b660913b7981e873120b34e9449ffbd4084331af8bee
MD5 4c0c3be81bf07b2362d007161b55f63c
BLAKE2b-256 cfe43bc33d1d80e1ef3211e885e037bc13c5b27a3d0274a821300e7ef9c36b76

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 925575fa21f3b74149f4faef976321f2adfbc950d19e684e2c5205da02bc6902
MD5 84d208a46233d10c73cfb4c95fb3dfdf
BLAKE2b-256 6c46392840dfde051c5a4746b9bd14a49a3ddf357fc776ffa2835a12ec2afd00

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e10cb65c312651da5063d03054a5e0c2dda1acedaa9ec0fe7ca7ab42620d2ac8
MD5 67a2f254dc793cb41576b53a675a7d13
BLAKE2b-256 a3ee2a07ea95460990d2bbfa273190103f40fc02f8b734bd93c0a98aed921497

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa8d15e7c5b1b1d1febf2eb846cfdc12a1e716f2cf47386a4a18c8cf7738b592
MD5 d8090e99c2a165c6cfb980589ef78869
BLAKE2b-256 53f782b64377a921159a94ffe1a82214bbf2ec9a05b708b5b5823b8e1f7391b6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60461c720f5cccd21d45df939f38747646c14a9d3df2299a90639b6308606e19
MD5 94c7c8fd6ed631ef2bb5710b87714937
BLAKE2b-256 a5dda372bf7545a40eacb97b04bd285ae2f6563c122fc4214a91c108230e0feb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14a2f68d1050e66edc927c6b4e547778523cfb06759f8df52125afc6fe9f049c
MD5 b9b87004fdfb3102d3978aa240da35a6
BLAKE2b-256 0abd1aab6ed37136599e2f44a3233b0a3ae84c8a4d2098bcbc1be1ccb1b8f4ab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8a5a5bb681bb28b967b84925da62bbd0fec782df32ed142182cb6771191ca4e
MD5 77486119125eaa4f44f92c0361b4e6a3
BLAKE2b-256 7820fcb489059b0fdcaf22be27085eaee1b08cdb68bb4ce94e449560922addde

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 414779da51e3db74b0fbdb4aab8c5a8b47630bbd8eff0da2f699a16d1aef12dd
MD5 3cdd2e5a417e2a7c1ca6f3610751449f
BLAKE2b-256 4a8bfa9ce106f650c249140ab233ac0d63830fb2a549e6537a08bcc038f5943f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

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