Skip to main content

Python interface module for Ocean Optics spectrometers. This software is not associated with Ocean Optics. Use it at your own risk.

Project description

Python module for Ocean Optics spectrometers

Conda (channel only) PyPI test build deploy Github All Releases PyPI - Downloads MIT license GitHub issues DOI Github Sponsors

Python-seabreeze is the easy way to access your Ocean Optics spectrometers from python. It wraps the SeaBreeze library provided by Ocean Optics to communicate with the spectrometer. It also provides a pyUSB based reimplementation of SeaBreeze for easy extension. This software is not associated with Ocean Optics. Use it at your own risk.

DOCUMENTATION ON RTD

You'll find the documentation and more detailed information here https://python-seabreeze.readthedocs.io/en/latest/

Changes

The changelog can be found here CHANGELOG.md

Install

# via pypi
pip install seabreeze
seabreeze_os_setup

or

# via conda
conda install -c conda-forge seabreeze
seabreeze_os_setup

Using the backend pyseabreeze in Windows

The backend pyseabreeze requires the libraries pyusb and libusb

# via pypi
pip install seabreeze[pyseabreeze]  # this ensures installation of pyusb

Additionally, you might need to manually install libusb1. Go here https://libusb.info/, Downloads -> Latest Windows Binaries. In the zip file, enter either the folder MinGW64/dll or MinGW32/dll (depending on your OS). Copy the file libusb-1.0.dll into C:\Windows\System32.

Usage

The following example shows how simple it is to acquire a spectrum with python-seabreeze through the model independent Spectrometer class. For a more detailed description read the documentation:

>>> from seabreeze.spectrometers import Spectrometer
>>> spec = Spectrometer.from_first_available()
>>> spec.integration_time_micros(20000)
>>> spec.wavelengths()
array([  340.32581   ,   340.70321186,   341.08058305, ...,  1024.84940994,
        1025.1300678 ,  1025.4106617 ])
>>> spec.intensities()
array([  1.58187931e+01,   2.66704852e+04,   6.80208103e+02, ...,
         6.53090172e+02,   6.35011552e+02,   6.71168793e+02])

To use the pyseabreeze backend (requires pyusb) simply run this before importing seabreeze.spectrometers.

>>> import seabreeze
>>> seabreeze.use('pyseabreeze')
>>> import seabreeze.spectrometers as sb

Supported Devices

Spectrometer cseabreeze pyseabreeze (usb) pyseabreeze (ethernet)
HR2000 x x
HR2000PLUS x x
HR4000 x x
JAZ x x
MAYA2000 x x
MAYA2000PRO x x
MAYALSL x x
NIRQUEST256 x x
NIRQUEST512 x x
QE65000 x x
QE-PRO x x
STS x x
TORUS x x
USB2000 x x
USB2000PLUS x x
USB4000 x x
USB650 Issue #47
SPARK x x
ADC1000 x
HDX Issue #133 x
HR2 x
HR4 x
HR6 x
SR2 x
SR4 x
SR6 x
ST-VIS x

Reading spectra via ethernet

This functionality is currently implemented for the HDX with the pyseabreeze backend. The following example shows how to read a spectrum via ethernet:

>>> import seabreeze
... from seabreeze.spectrometers import Spectrometer
...
... seabreeze.use("pyseabreeze", network_adapter="192.168.254.200")
>>>
>>> spec = Spectrometer.from_serial_number("HDX12345")
>>> spec.intensities()
array([1967.07287765, 1325.69702018, 1418.40732539, ..., 1398.4680335 ,
       1406.44364585, 1397.47109175])

Known Issues

  • USB2000 spectrometers cause Data transfer error due to old firmware Issue #48
  • USB650 not supported Issue #47
  • No conda packages for armv6 (RPI version 1) Issue #46

Contributing Guidelines

If you run into any problems, file an issue and be sure to include the following in your report:

  • Operating system (Linux distribution, Windows version, OSX version) and archictecture (32bit, 64bit, arm)
  • Python version and arch (i.e. Python 2.7.10 64bit)
  • python-seabreeze version

If you want a feature implemented, please file an issue, or create a pull request when you implement it yourself. And if you would like to support me via paypal, click on the paypal donate button on top of this README.

License

Files in this repository are released under the MIT license.

Related Repositories

If you want me to add your project here, let me know. Happy to add it.

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

seabreeze-2.10.1.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

seabreeze-2.10.1-cp313-cp313-win_amd64.whl (500.9 kB view details)

Uploaded CPython 3.13Windows x86-64

seabreeze-2.10.1-cp313-cp313-win32.whl (426.4 kB view details)

Uploaded CPython 3.13Windows x86

seabreeze-2.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

seabreeze-2.10.1-cp313-cp313-macosx_11_0_arm64.whl (840.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

seabreeze-2.10.1-cp313-cp313-macosx_10_13_x86_64.whl (880.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

seabreeze-2.10.1-cp312-cp312-win_amd64.whl (500.7 kB view details)

Uploaded CPython 3.12Windows x86-64

seabreeze-2.10.1-cp312-cp312-win32.whl (424.5 kB view details)

Uploaded CPython 3.12Windows x86

seabreeze-2.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

seabreeze-2.10.1-cp312-cp312-macosx_11_0_arm64.whl (841.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

seabreeze-2.10.1-cp312-cp312-macosx_10_13_x86_64.whl (881.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

seabreeze-2.10.1-cp311-cp311-win_amd64.whl (508.0 kB view details)

Uploaded CPython 3.11Windows x86-64

seabreeze-2.10.1-cp311-cp311-win32.whl (432.1 kB view details)

Uploaded CPython 3.11Windows x86

seabreeze-2.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

seabreeze-2.10.1-cp311-cp311-macosx_11_0_arm64.whl (845.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

seabreeze-2.10.1-cp311-cp311-macosx_10_9_x86_64.whl (888.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

seabreeze-2.10.1-cp310-cp310-win_amd64.whl (507.1 kB view details)

Uploaded CPython 3.10Windows x86-64

seabreeze-2.10.1-cp310-cp310-win32.whl (431.3 kB view details)

Uploaded CPython 3.10Windows x86

seabreeze-2.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

seabreeze-2.10.1-cp310-cp310-macosx_11_0_arm64.whl (844.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

seabreeze-2.10.1-cp310-cp310-macosx_10_9_x86_64.whl (887.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

seabreeze-2.10.1-cp39-cp39-win_amd64.whl (507.1 kB view details)

Uploaded CPython 3.9Windows x86-64

seabreeze-2.10.1-cp39-cp39-win32.whl (431.5 kB view details)

Uploaded CPython 3.9Windows x86

seabreeze-2.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

seabreeze-2.10.1-cp39-cp39-macosx_11_0_arm64.whl (844.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

seabreeze-2.10.1-cp39-cp39-macosx_10_9_x86_64.whl (887.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file seabreeze-2.10.1.tar.gz.

File metadata

  • Download URL: seabreeze-2.10.1.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1.tar.gz
Algorithm Hash digest
SHA256 8cdd9b17ad489ab611092c5f19efe4f75c069ca3f0c4081ad5c126d4203b4347
MD5 686b386fdbeeaaf52e2acf0b3820dc2f
BLAKE2b-256 51a72118bebe5e37f65f8f28a1144084b2e76ad4b5b5f5f674076172837cb785

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 500.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45ced4f73392ea5afd6a55ece98cbe6c7036f8b725a7f2b13a7c8a7e9c3ab752
MD5 a2f1c01a489b91bcd3b4d76310f89082
BLAKE2b-256 e4ad64bfb0b1469b997172e448df5b46e12fe62753ba2bc674a7fefd41d817d0

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 426.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8e514a225048eef5bf86723c95eab6ea76726193dc9373694a9086b1a42059a5
MD5 28672e33655698d9ca21346c70420041
BLAKE2b-256 9ca9de1a11f638b18aa113e976981647e6db0bc78b15c8d351224d2d1b99b60a

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 353b043682c5363f4b28121cc8707ae42f6f4c7be3d29f404b597a1d2cda638b
MD5 5e37f2cda6bff06879f0ec9a48850b80
BLAKE2b-256 12f022a7b50897ffa295ab06bd97a0d9141da1fbeb63e24c9aed1bbeeaa3f417

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15fa7d3a269c34ce0a31d25ea854273d2d637b45a35d20b8984284c1677e18f8
MD5 79e5d4228577a9fef6c3a953e2bfaafe
BLAKE2b-256 a5ef331ee6c42c100ba64d97e2d6dcfea5cd8afdadc0b6575af199a330148f5a

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 39adada0fa08302bd52d2334af4f795d596e186eed1c6bd76e3d40954a283ccb
MD5 5ccc9f65a11af4770f2ea5aa858912c4
BLAKE2b-256 b16361121b2df426844c8a3ee89fd8e6f86a502f218cb05b8dccab19b29ec79e

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 500.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2aeb2170a9c517804b0f7a14b7720dee515a59404d0d7c82d030c0a9d64230a8
MD5 d46374fc13f31ea8bc208c1e9781d2d2
BLAKE2b-256 11e27ce3ea57bd85089848d33c05c2c3be1fb44d63df87535d40d05c47e8b95c

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 424.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2dd8be5bd7aab032f860f421f6e98ca2ae56345f7e7523948436af7868c8374d
MD5 6669600ea9b4dd608059a69b3cd98d16
BLAKE2b-256 a36ccf68720569f60a6d6c0eb6e0b67db534b24555beb5bb2486265ece5c01d2

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f00bf03fa2fa06e493cf26e2ae37527a0fcbe64ea02bb9fba80097c03d93ff6b
MD5 fbf47d26f6744c989d4d5ab30d75440d
BLAKE2b-256 d1a274f44cab6261db111dd4d2674eff2bfe58f2951349dfa2e6bfaf39ccd971

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3caca22a72ac4a48bd9edcad2688c0be6b55504a7d672a1097b361cc4208178
MD5 f6fb1e99d3c78663575f5e20052c09ac
BLAKE2b-256 864f743c81285dcdae4ed7bcd1eb93715af1ea7c6f98770f4127ba8e0097ca3e

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 af2efbc7ebbd8ff241c82f8f712d27f9f0d794ab1c11349a4f811199d81cf1b7
MD5 40bc145e7db62b0967962e137a7ffc06
BLAKE2b-256 5ed953957cf313040acf6a3bfe2ebec4f3be283d9d7e82ae960466afe7a17630

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 508.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e140f0f0d12b2cad7e5a690c5fc262c9920982184aecbb4b0c9f96a881a09689
MD5 f21fbc8a8d2e5815d01509602567c161
BLAKE2b-256 ca40d016f3978601468e159344db3517655238fbf087dbc3cbc0887133164c0c

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 432.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e4503a60042a4928ecb9c05a095b0492c1e754e135b78527d8faf99a9920371c
MD5 43aed79477c2a9cf06176c7351eb71b6
BLAKE2b-256 a8bb1bef267e7914299e6741f6c0ec22d2a1944631893c60d7078180540fd15e

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 357feba25c4a8361ead2e6326b8ee9222055aaecf0652bb5c6dd5228bc6a69a8
MD5 bde3e235bc9eea42646f6f5b77cb6572
BLAKE2b-256 539b885198ed675924ba9c21ad0740a7a53a67c2a0dd6de3df47f6c8605ac6df

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c61c0bc9188bad90c0ef1f6b45bf4a53637cd23eabd4a43c955a119e88a26691
MD5 325caf0960cadb511003058ecbcbe902
BLAKE2b-256 b5516c3cbfe61d02bfc581d58bae1263b1d4ce807cb90a3d4061855a407f3195

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 818c48e6c184a2f315843a5fd12094c248eb13d419472aa125868e3718c2e856
MD5 a3c596038839243d12018aedcd3db2de
BLAKE2b-256 0daab0ad97018fe537202651f3dbb386cf56ebf678ebaf873e3230f8e0516875

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 507.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3fbe6017904c8020d5d19b7a22318f87943a4826ac312ecb7506c1b495309a22
MD5 b38d2ea6b681cf0e8571d82ba68bf38b
BLAKE2b-256 73c5a783c310a4c275ecc132ee9bb64073e178e122c2e85f7d4cf0058ca8bfab

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 431.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 74f53cc9ebf5c7879fe3964d3215990bd52be4d2cd6025068d2d76a2e5172c25
MD5 aa80a90f604c9ad4c24d5a5630ba7a2c
BLAKE2b-256 ef6caa4aa7bb472b6706ab005fa2a9340cb7823d02c6feaf7337d8da2d554b34

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d591862278d9b41755bf8017445b06139e28f960904b4eacb34eabba2ab6e79c
MD5 46a15aee5a213f2f2a10a9e37e284af5
BLAKE2b-256 5130f76d141aaf061a2aec6df17a453cf6c3cd63e121c26a0cfcd6c0526b7f5c

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9de0fb344666742c88bf0a3fa49d38987cbb9bdbf04ad2ff5d67e9d1b76751e8
MD5 52aeac33339bec7a5bb72b86b3e46fbe
BLAKE2b-256 aa37e1e92a224dc96da680599ad1160615b854ae1d2849a629a922636f5e2b2e

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7d9504490743c88a5a391e39dd1035580a63e91624ece072007470bd9b50348
MD5 a18aee1e089ab66a873f488cd1781505
BLAKE2b-256 a0af2d9d6bc8b3f32095f7292cf7aaab0972b3b7ea83f2c1f97cfa14a1905d6a

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 507.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8b18535838cbc272855da625a8453a5c5e226979d8885d3c8841d311d05e1b7a
MD5 c1a1cf495a107c352ad41689f2ff509d
BLAKE2b-256 606cb6082f6fb782b54b5211b2fdf7e2b3d109e9b8b6a2bff7fb435461154cb6

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: seabreeze-2.10.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 431.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for seabreeze-2.10.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 00bfd491c66e0c72e2a6455885180b77632ca655e23c37fc1022b1d0ff50e962
MD5 8e2ae246294ddf4fa87e01b7f610f894
BLAKE2b-256 481a5d55613598aed6c3d6314a60299494ed76255193c44db6e1990340268784

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db7fbc7150eedf9b9675b59f768846cbd67151a62eb42377ef93ee9942278991
MD5 25849857978198f2df0904a4a01ca619
BLAKE2b-256 9e924a9df71a5fae6122462da2b62b0d9312192bbde804281bd315e9e7fd864a

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c319fce78730b571da8776e84b3b21388aaf2a1207483f0ac71ff2dc38a8f1f8
MD5 36bb5dbacb8a84314ff279dc28e91426
BLAKE2b-256 abe0553e49bbb9b374bc878a7074e33f0d9682c45e9e914dc16b60a45cdd8eae

See more details on using hashes here.

File details

Details for the file seabreeze-2.10.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for seabreeze-2.10.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c906ddec9e9f38f95e68f57a1ab215c3dfb0089d6b955f6df4374774a83cf773
MD5 6075149a52a76abab643788153f8f15c
BLAKE2b-256 c8246cdaba8d72090f1ed784b9cdb87840152e58e753e7e46590fe841a9457ef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page