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

Uploaded PyPyWindows x86-64

pymseed-0.9.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (314.9 kB view details)

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

pymseed-0.9.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (316.8 kB view details)

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

pymseed-0.9.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (277.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymseed-0.9.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (295.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymseed-0.9.1-cp314-cp314-win_arm64.whl (243.9 kB view details)

Uploaded CPython 3.14Windows ARM64

pymseed-0.9.1-cp314-cp314-win_amd64.whl (269.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pymseed-0.9.1-cp314-cp314-win32.whl (252.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pymseed-0.9.1-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.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymseed-0.9.1-cp314-cp314-macosx_11_0_arm64.whl (307.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymseed-0.9.1-cp314-cp314-macosx_10_15_x86_64.whl (325.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymseed-0.9.1-cp313-cp313-win_arm64.whl (239.2 kB view details)

Uploaded CPython 3.13Windows ARM64

pymseed-0.9.1-cp313-cp313-win_amd64.whl (264.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pymseed-0.9.1-cp313-cp313-win32.whl (249.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymseed-0.9.1-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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymseed-0.9.1-cp313-cp313-macosx_11_0_arm64.whl (307.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymseed-0.9.1-cp313-cp313-macosx_10_13_x86_64.whl (325.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymseed-0.9.1-cp312-cp312-win_arm64.whl (239.2 kB view details)

Uploaded CPython 3.12Windows ARM64

pymseed-0.9.1-cp312-cp312-win_amd64.whl (264.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pymseed-0.9.1-cp312-cp312-win32.whl (249.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymseed-0.9.1-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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymseed-0.9.1-cp312-cp312-macosx_11_0_arm64.whl (307.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymseed-0.9.1-cp312-cp312-macosx_10_13_x86_64.whl (325.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymseed-0.9.1-cp311-cp311-win_arm64.whl (239.2 kB view details)

Uploaded CPython 3.11Windows ARM64

pymseed-0.9.1-cp311-cp311-win_amd64.whl (264.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pymseed-0.9.1-cp311-cp311-win32.whl (249.2 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymseed-0.9.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymseed-0.9.1-cp311-cp311-macosx_11_0_arm64.whl (307.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymseed-0.9.1-cp311-cp311-macosx_10_9_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymseed-0.9.1-cp310-cp310-win_amd64.whl (264.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pymseed-0.9.1-cp310-cp310-win32.whl (249.2 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymseed-0.9.1-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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

pymseed-0.9.1-cp310-cp310-macosx_11_0_arm64.whl (307.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymseed-0.9.1-cp310-cp310-macosx_10_9_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1.tar.gz
Algorithm Hash digest
SHA256 bb9e3642d3ea3827b17804cf6dc4f9630c59359e6a3ccd090da87d29ee50b4c6
MD5 e0ed7e54c1c24e65a457eed4d6dbd051
BLAKE2b-256 4da574c349ee75a5e5c2341464c485ff87b2af72fbd6b198199dcd3f4f7a91a8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1a5d0f003fa72b6786291771a4067ed9bd722e30693642629f01644e7b4dbaa1
MD5 4ff24efe631671fe1b7abaf6d6605e43
BLAKE2b-256 ae172d0ac26efa05c2562a50140ce24ce2b64e2c1c916f442ee5d80facd9c514

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ef391da0e8b33aecd3de053ebc9bc6eb5cc57eae1a72f6ce058638151d03f01
MD5 7a29815f67ed1b62cae358656367a1bc
BLAKE2b-256 9585dd31345dd4deb1ea383cb717b893b001a3bd891c2efd592f506ab8c85ac4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 174190251d38710b1980bf8a88d91e779a88dd97677472fe0b63f6f5fbfd6115
MD5 6eb6b15c5712c48496951092be623eb1
BLAKE2b-256 c68c0655339d8f9fefe466cd70915f7671f751bf50b6539901ecf670eb04a66b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31191d9b57bdfdd32da68d52c8c666395065693ae323e55d5d030be37bf1f4ba
MD5 8dce041182eb8cc708ab09d722fbbca4
BLAKE2b-256 0f38b15ad576fd78312bf2fcca05bf8d35afb3979157cb1648a73e9bda91deb4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 945baa728602e7bba51c2de3bf77b687adbd81d9ebf6b3e852249f0e402a97eb
MD5 3e9f287a5d5b10e7a8001dd1cc12b538
BLAKE2b-256 4d166772a65015d32e77892038f2886ee6b474a30bb77cfe8aaa7dac99379ceb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7148a34b75fd888e8cfd7d0954fc8b6bab5c2b0ff9ef56866e7c9982505a7efb
MD5 4a180905f4aa152d94258a1efded03b2
BLAKE2b-256 2ffb3d6b128aab52e629c3b4cd4f9ff93e81b3712fc53c251efa2978c7d21309

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7de0f04ff24041b1c2b513fcb0e519db4fc34b06a24f7215012ce56f921194f3
MD5 aa3e1949a4c78e0eecaacc498ed7eb5d
BLAKE2b-256 f0b8f06908be0a2f297000daefa3d15c9749f0d7723cd2425e5f9b312ae58a5a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1503e39667851a2e50ef10f24aa235b42c831f13ad2c72f5a2d6acf44c0cf6e2
MD5 d923f482afabb05c0f6b6dac9d0d1724
BLAKE2b-256 8ccd60a235ff171eb2192e4ffe3722abab35cf871cc28c4525255aac966559e4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 987687eb182e6d71d0ec8b1fd8a8c1b20debb1dbc14b59f08abe343c33b11c41
MD5 b5c2e4480f5598130c6fc8d6d4c93c4b
BLAKE2b-256 6caf59a7522558cd54b0e04d745afb54f1d0150c1b430bfcab1712149caa5d35

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c0cbacfa0d7b95c72a001ccd564fa6b0be79b83beff2c9d0d52ca7736d2fa7a
MD5 887cf33e3aa193bc3d5b89e81c231ab7
BLAKE2b-256 b94b2dfa55305d557307aba589200a6dfcc0000b047d90fefaee9926e2eb1ecc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c309ae4928eee994a246210dafec03e8db6fca66155f40e06d8f9cc628f6ae1e
MD5 fcd6f12cca61e0b17d2117a8ae8dc433
BLAKE2b-256 293b89da1e4b993079b059e4792dd8f50e92ce3b8c8c3769d1659637d5636cdd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd77a247bada17add1bad2deeb499f0a81328abb7d9965ec70d401cda1fd3d02
MD5 dd5ae2792718cafb85f0efdef794e5ab
BLAKE2b-256 beae94fa6bd15ee2c8f9c88b003b2976b9d12425fa5f5de6c7025e2e1b1a7ebf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 def8c373b550322e36004c45e1462cfebb2cbf0841d64c1efdd22b3380200c80
MD5 caaf996a46ad6e95fa2950335d619c59
BLAKE2b-256 252c7998b0876d1d2c68c221a457ed2c1a0a22c5ddfddfc70996d87013e41f9c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b054acceff0be27ec932fca5518e61d62f0d23260118c31d09573ea2ede4dfcc
MD5 585831c66365ab30aca31f63607eb2ee
BLAKE2b-256 4c4cb284b01e6d0704c38ab33c0088e7e994957561fd69697440005f6d25c6d7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 316018372f931f171e5ca2bf1bc60de7634847448a88d75f67b4dfb76aa2cbbc
MD5 1ae8d407ac2ab16c3790b026dc44c09f
BLAKE2b-256 1414525b34c354e0bd856e4d9fd2e0261326b7b5062c36f575f5c4e6726771c3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a676348b7a95cdc77076be79aa67328c84e239cb5beeff343a62094967f2cbd3
MD5 aa003a23948d57a3c78f12e0586d77c2
BLAKE2b-256 af90c15acaf6fcf8d05475abface1f852a7984769a72e065311a56aea8c1cfa6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 54cfff47783c6c1bef93b69ad759f9a965b4de96eefd9de828965ccdfc489962
MD5 fca0e65c0ae53a880a81018398ced557
BLAKE2b-256 53c998b194d363ad56598abb33708cc8ce6351ea3e034bcca10cc64182d622c9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af79bf7b9bb071c6970527faa68a82fff59c54d5146c515eb7c05be26b30fa31
MD5 16f66710cea0afba8bafc44cdb7d6705
BLAKE2b-256 a8c686e235435a78a601f69b48699764353f2b2e3251e804c733ac29928655d3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 039631bbd4c781a36b7e91d43695ba047a66e68fdd9b36c5d41941c5b4c0fde0
MD5 dec3b41d096f2276d6ab45545d1b12ad
BLAKE2b-256 0139a9b002115269ed3dbaaf88067cb49a7dc9b7db12d81ffebe0bcd9bdbcfc7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2212f227e1130cc501a2e6238d1f7fe3004a1282122388f3a99d4abcb42262e7
MD5 e021f64f6503d54eefe6b09bff7e1821
BLAKE2b-256 0b58e8acaac156216283a5c8c50651567ce266135bbc6f5fd36ed58cb59e0f9d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9903f50828ecabaf60be9d31701eda77f9e14d015dc34c6d1561fb14a4fe181
MD5 16ee11973739cdf117484916c491387a
BLAKE2b-256 839d22a65991f94330e50cd0426b998252d2e7962052932a1f50eaf3a6138db9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4245de5659500c4d6ef6aff9a753fd140eaa76c57e3bb3531c530cf1296b3aa9
MD5 60ec5d2d05c81f218230b72611685c8f
BLAKE2b-256 97548b07232c8a429cfb71f768b63fc62cbe09fbc33b5eb6d3cb016cddd827e1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f22ce160ff1dade994e369d67766df4b54e8eac9cf23a9c87d61241aebb0367c
MD5 80d8ccccb6bd9f8026e0e5b4e0a125aa
BLAKE2b-256 0babf93b17ba2b4c22816d179ebc43b58eb6c954772aada4a076219f821d22b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f6e156043418eeb1a506dbadf5ace9dc90f78ef3309b5092b3149e75a4290725
MD5 fd9be39cc81089d8613382d887c0d737
BLAKE2b-256 7508d555c5b10a2122eb4722680ce697819cf54ec0d3f689436b019b069ca4b6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7938ab29f2494a56d296669c3d8cefcacad9365849cb60d81275a904e8c60e8f
MD5 8faf4eb739c67b1be5e5a0885fa179c1
BLAKE2b-256 132cd39b69af0e212f8a5b13f1d8f12a81c444bc8c5d74732bf3e34c1387263e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 16c41c852fc018d6c648a0cf0d085109e114140dc46abba5d6297fa72f782994
MD5 7516bd7c33e9c435f9c80dc63f326587
BLAKE2b-256 014bc2af815e347ea93023ec679372fea2d6230ef25d1dfdfa9907d6e45f2911

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c56850dec2c99b88d10e42f435d24e85a9b76e7c1fd76c4f1c884da6dc2a717
MD5 500d7a89db77a9bf4aacecf95f945934
BLAKE2b-256 b8f98ee20689417f6883d209c9ccd5cc8964540551209b3b4262631219cd7522

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a90f7aff2358ac430ffd8208266dd892c02af5249576cb37c11866be7c0ca12a
MD5 b99197031a29362143a194e00997965e
BLAKE2b-256 383bb25dd2fc9604e31631bffd90a817c9a2e7734abd7746126524f2592b9be7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c30b40e006775fbe6e2020a7e764ee67966131bbc5d77d9132ed2d285d54f81
MD5 5c29bc8b5470eb4ee77dd7f74b1f6085
BLAKE2b-256 7f0c93a56cc58e5dd79349c240c1d870df7df05a7a342be7cc5e1248fcb5e47c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afa9174bfd1f9e0f11fc0f81ae1e49d6c85b16ef8ace9c22c7f1601cd5cba6f3
MD5 9a7e62037e68fc31b6eb2244bb5271ad
BLAKE2b-256 a0678cfe16b0f9e3784845fadb53ca4441e923fe99c38ce9a01dd96f965070f0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1fb2a83afd1a26d9c92e78da95e8bff2b155e0453f7f0fec95bf4bd724e26e7
MD5 63f07aa3096f662c859c26e2abcbe25d
BLAKE2b-256 99ea1c672b652626f1251a243eda78a0f1d2c86c674772b2acfb128770095976

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ab3dc82cab3c9c41f4d0359177ccc562a9bca9e7ae3384dc1661f5a7f54ed2f4
MD5 08cb9db01b37af17ceb1c41e99629416
BLAKE2b-256 e35f85415ac8ded15e623a4ac0b2fd25a74580b48277558983b12014a2c29a25

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9be36c979cc9e69af166e5f3210651cabd7f9363e41e83b21d63047e135a92c1
MD5 480e1cc803a7474bf04023d2959eaed1
BLAKE2b-256 b848ec57cd82e526a305bbfaee123d47b980a7f71f4758b640abe0b0f351d9f4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee2315ebfa44c210f9f622eae6a274ab459b4c1f64c70a4086c8573c13fa3558
MD5 9a47eeba16b9e493256cf5454367798f
BLAKE2b-256 dc4c3866f77c94c8a48c4817b0170231d861319b983edd0b88835ede7ef56793

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dbc9aff8df8d9aa6e96c17a0c080c479b183673bffc002d40ab34205f0224e86
MD5 5759d53ddd245554239d579d0548fe89
BLAKE2b-256 3d46293a7f0030cf92075e9cde00bb6bb34221a70579eb89008b59d39a1ae62c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 caa39cf093d2f135d55d62b6f8a4bfde3ed774ef2d0fc0d8b99e59cf16417951
MD5 04a8dcd53c2dd27c9ec68a21deed3992
BLAKE2b-256 a7782673043e7057c71641ee879e8c964e80652e5d107664ebc3625ca458a5b0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c60179f0a15c6a530635d11d7d26f19eb3f830ce444cc833a44cba2bfe7e502e
MD5 62c9d6cd6253dff85651347528959821
BLAKE2b-256 79d4ac8361060b81a517fea4e7863162abe776a50ac12e82ce1244969352f2d4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0825efb2da539b6d5f9d1e0bc17af191a8ece445893ee8adff731ea01390c8ac
MD5 fd0dc9d1392be1af416dfcf8b95b799f
BLAKE2b-256 e586eb9abe371fbbaa9ec6d5a5c23836cd2feaf0044e20d578cc4fd85d4da5f5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35bada60d575fc5057270a79fabc02ff2546ef77572d94d90535bc0a0863b698
MD5 9b5e366fd210bbbc855b81299c110b8c
BLAKE2b-256 5651f7138baacb60e9220f53b75080dbc6c009f5661ef16e6c4822f64de281ca

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f5d1b00df8e57137c2e45123c676f9b2aa2e65bd82f4a1fe4f209d47599dc5c
MD5 8476960331eb39dafb1faf86298ea43a
BLAKE2b-256 b85a1c1be4af8b0706866599ad73c1c083de7d1e707529f183cc49b2844ab58c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 795508d54effb4bcc9a06add8ae99f4f7b36eb6d71e18d85990b3e1313efd223
MD5 af5c49306ef9b57cda4d0211038aab91
BLAKE2b-256 7b30fb344b05b6904c0e51769a27427c411692bd398dd2ead0b7737c7922db19

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1fe9ba8fd76aaffbab969b33805624d231f5755fa5d1890e9b21e2ce52a206c9
MD5 e896a48a3b3fe65ce5e1b70f5143699c
BLAKE2b-256 8e473a5a3cc9b5a80b8f44374ef097009806c03aedabd586ae35ded17f927332

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

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

File hashes

Hashes for pymseed-0.9.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 54c8ee0fc6bb2921b27239e1aa21292c63787a2e63f7556663b77701cb559bce
MD5 e4f7b98ff7b5aa86dc14f19ef5122937
BLAKE2b-256 b3870b0c54475547e561a73950035f69534abe2c379b455e1307daba5c510321

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56a110c5ece7d7eba0dd16416f63f64cd927a9ced1570ce6a5a6090b8fa78ac1
MD5 92cabe5f4478963333d42ae8b8d10dc9
BLAKE2b-256 2fa06cca58421fbd61944e99c66141e162a595083c31626c62712c6d94dac0c0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa47dd4d4fb48cd21e9d5fec44758c30d87fe3da99be22b3c262faf33997d88e
MD5 89ee47595b123e25d30f16f957a1907b
BLAKE2b-256 437b3888557a0e792e96c316bb27ea1d8b1422047a1c0f2f9a053b3670838f98

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1de24667489ea0e82cfe0bc9732a5ad3aa8fdc364a336e967e29d3a6e27cd831
MD5 b0d7665c11d75ae0f11d3bf41c4a3933
BLAKE2b-256 b9eed1866cb51eac9bb985db6dc17cb940d9ec369765d36e5ee05daa8a2d9364

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aa4a363ef7b8641c2bbc5217687aa611984978a31cf8823caa7f65d430b302d
MD5 c5f780582483be3f1fb0d456be758ad1
BLAKE2b-256 d8390a26c5ecf0741bc3539d7a0da282ffd0dea3531e6cf411c76536d22effce

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b83cc63b2b741e631f7b14cf16596808e9f24f8ae1b6fe4cc3733de82da7c224
MD5 fda3d0574b85d95a2637c6ec45de9339
BLAKE2b-256 f8683355c3333e90d9a1cd773c5d21912ed0704ba4a1047fdc618e0a63e56cb7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

File details

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

File metadata

File hashes

Hashes for pymseed-0.9.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a318d43c7807f3eb8a8b2c7e3d73cfc0744ce30fbef0d6e7af58cddb9cb220f
MD5 6b7e0d7873320a3eecb17f407695c355
BLAKE2b-256 4d6312b7c14521423204482017930777f8a6e4727a9f1a0b476309cefbe553a6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on EarthScope/pymseed

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

Release history Release notifications | RSS feed

0.9.5

50 files

0.9.4

50 files

0.9.3

50 files

0.9.2

50 files

This release

0.9.1 This release

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