Skip to main content

Dust in the Milky Way

Project description

Dust in 3D in the Milky Way


Installation

Install the latest released version using pip:

pip install mwdust

To install the latest development version, clone the repository and do

python setup.py install

or

python setup.py install --user

Using custom implementations of necessary HEALPIx functions, basic evaluation of extinction is available on all platforms (Linux, Mac OS, Windows) for all dust maps. However, some HEALPIx-based features like plotting require healpy, which is unavailable on Windows. Install on Linux/Mac OS for full functionality.

Dust Data

By default, dust maps are download when you use them for the first time. If you define an environment variable DUST_DIR, then all dust data downloaded by the code will be downloaded to this directory. If you do not set the DUST_DIR variable, then mwdust will download data to ~/.mwdust.

The code can download all of the necessary data at by running

from mwdust import download_all
download_all()

Note that some of the maps are very large (multiple GB) and some of the downloads are slow, so this may take a while.

The data are put in subdirectories of a directory DUST_DIR or ~/.mwdust, with roughly the following lay-out:

$DUST_DIR/
   combined15/
      dust-map-3d.h5
   combined19/
      combine19.h5
   green15/
      dust-map-3d.h5
   green17/
      bayestar2017.h5
   green19/
      bayestar2019.h5
   zucker25/
      decaps_mean.h5
      decaps_mean_and_samples.h5
   maps/
      SFD_dust_4096_ngp.fits
      SFD_dust_4096_sgp.fits
   marshall06/
      ReadMe
           table1.dat
   sale14/
      Amap.dat
      ReadMe

The data for the Drimmel et al. (2003) map is installed in the code directory, because it is not very large.

Usage

All of the maps can be initialized similar to

import mwdust
drimmel= mwdust.Drimmel03(filter='2MASS H')
combined= mwdust.Combined15(filter='2MASS H')
combined19= mwdust.Combined19(filter='2MASS H')
sfd= mwdust.SFD(filter='2MASS H')

which sets up the Drimmel et al. (2003) map, the combined Bovy et al. (2016) map, an updated version of the combined map using the Green et al. (2019) Bayestar19 map, and the SFD map for the H-band filter. The maps can be evaluate for a given Galactic longitude l, Galactic latitude b, and an array (or scalar) of distances D

drimmel(60.,0.,3.) # inputs are (l,b,D)
array([ 0.38813341])
combined(30.,3.,numpy.array([1.,2.,3.,10.]))
array([ 0.22304147,  0.55687252,  0.86694602,  1.18779507])
# SFD is just the constant SFD extinction
sfd(30.,3.,numpy.array([1.,2.,3.]))
array([ 1.19977335,  1.19977335,  1.19977335])

and they can be plotted as a function of distance at a given (l,b)

combined.plot(55.,0.5) # inputs are (l,b)

(plot not shown). Maps that are derived from the HierarchicalHealpixMap.py class (currently all Green-type maps and the combined maps) can be vectorized to evaluate on array inputs of l, b, D

combined(numpy.array([30.,40.,50.,60.]),numpy.array([3.,4.,3.,6.]),numpy.array([1.,2.,3.,10.]))
array([0.22304147, 0.3780736 , 0.42528571, 0.22258065])

They can also be plotted on the sky using a Mollweide projection at a given distance using

combined.plot_mollweide(5.) # input is distance in kpc

Note that this requires healpy to be installed, so this does not work on Windows.

Supported bandpasses

Currently only a few filters are supported. To obtain E(B-V), specify filter='E(B-V)'. To check what bandpasses are supported on the sf10=True scale (these are all the bandpasses from Table 6 in Schlafly & Finkbeiner 2011), do

from mwdust.util import extCurves
extCurves.avebvsf.keys()

which gives

['Stromgren u',
   'Stromgren v',
   'ACS clear',
   'CTIO R',
   'CTIO V',
   'CTIO U',
   'CTIO I',
   ...]

To check the bandpasses that are supported on the old SFD scale (sf10=False), do

numpy.array(extCurves.avebv.keys())[True-numpy.isnan(extCurves.avebv.values())]

which gives

array(['CTIO R', 'CTIO V', 'CTIO U', 'CTIO I', 'CTIO B', 'DSS-II i',
   'DSS-II g', 'WISE-1', 'WISE-2', 'DSS-II r', 'UKIRT H', 'UKIRT J',
   'UKIRT K', 'IRAC-1', 'IRAC-2', 'IRAC-3', 'IRAC-4', '2MASS H',
   'SDSS r', 'SDSS u', 'SDSS z', 'SDSS g', 'SDSS i', '2MASS Ks',
   '2MASS J'], dtype='|S14')

If no filter is supplied, E(B-V) is returned on the SFD scale if the object is initialized with sf10=True (which tells the code to use re-scalings from Schlafly & Finkbeiner 2011). sf10=True is the default initialization for every map, so be careful in interpreting the raw E(B-V) that come out of the code when not setting filter or when setting filter=None. Only use sf10=False when you have an extinction map in true E(B-V), not SFD E(B-V). No map currently included in this package is in this situation, so using sf10=False is never recommended.

Acknowledging mwdust and its data

When making use of this code in a publication, please cite Bovy et al. (2015a). Also cite the relevant papers for the dust map that you use:

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

mwdust-1.8.tar.gz (70.0 kB view details)

Uploaded Source

Built Distributions

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

mwdust-1.8-cp314-cp314-win_amd64.whl (71.9 kB view details)

Uploaded CPython 3.14Windows x86-64

mwdust-1.8-cp314-cp314-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (138.8 kB view details)

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

mwdust-1.8-cp314-cp314-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mwdust-1.8-cp314-cp314-macosx_10_15_x86_64.whl (86.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mwdust-1.8-cp313-cp313-win_amd64.whl (71.0 kB view details)

Uploaded CPython 3.13Windows x86-64

mwdust-1.8-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (138.8 kB view details)

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

mwdust-1.8-cp313-cp313-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mwdust-1.8-cp313-cp313-macosx_10_13_x86_64.whl (85.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mwdust-1.8-cp312-cp312-win_amd64.whl (71.0 kB view details)

Uploaded CPython 3.12Windows x86-64

mwdust-1.8-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (138.8 kB view details)

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

mwdust-1.8-cp312-cp312-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mwdust-1.8-cp312-cp312-macosx_10_13_x86_64.whl (85.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mwdust-1.8-cp311-cp311-win_amd64.whl (71.0 kB view details)

Uploaded CPython 3.11Windows x86-64

mwdust-1.8-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (138.8 kB view details)

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

mwdust-1.8-cp311-cp311-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mwdust-1.8-cp311-cp311-macosx_10_9_x86_64.whl (85.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mwdust-1.8-cp310-cp310-win_amd64.whl (71.0 kB view details)

Uploaded CPython 3.10Windows x86-64

mwdust-1.8-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (138.8 kB view details)

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

mwdust-1.8-cp310-cp310-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mwdust-1.8-cp310-cp310-macosx_10_9_x86_64.whl (85.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mwdust-1.8-cp39-cp39-win_amd64.whl (71.0 kB view details)

Uploaded CPython 3.9Windows x86-64

mwdust-1.8-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (138.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64manylinux: glibc 2.28+ x86-64

mwdust-1.8-cp39-cp39-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mwdust-1.8-cp39-cp39-macosx_10_9_x86_64.whl (85.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mwdust-1.8-cp38-cp38-win_amd64.whl (70.9 kB view details)

Uploaded CPython 3.8Windows x86-64

mwdust-1.8-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl (138.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64manylinux: glibc 2.28+ x86-64

mwdust-1.8-cp38-cp38-macosx_11_0_arm64.whl (81.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mwdust-1.8-cp38-cp38-macosx_10_9_x86_64.whl (85.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file mwdust-1.8.tar.gz.

File metadata

  • Download URL: mwdust-1.8.tar.gz
  • Upload date:
  • Size: 70.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8.tar.gz
Algorithm Hash digest
SHA256 19b815eeea9962e917dc3c0bb16cd796af83759ee6e5fc36342103cf0d112538
MD5 5c34e63aa5b8e6a5edbda2c40561c64f
BLAKE2b-256 03ee9b75722974e09149cfd493e866d12eb365cfc44b0e241f2e51e29eeaf6b5

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mwdust-1.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 71.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c7864a66323a171b8956861973c50754bec2d17e218e13c13c2b432dbdd78b8
MD5 47a77defae1ce41253f1c34cd82bbb3a
BLAKE2b-256 6343ba7dbac44fca31992cbf859cf59cad4b9b58b61f9b282d24ecee3f41aadc

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp314-cp314-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp314-cp314-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1c4d0d29ce124b265e40e08e10043d3ed7a76bf590ef67ff4745bee88535ed0
MD5 cfe5600e58bcdf76215331886417895c
BLAKE2b-256 0140aa2866807d25b72503697b020b05cd52cf912f0dc40b8fd3faee428a2d9a

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 829bf3896be377658528836d1d9f69cff0197501ba75108ecf4f5a63f1ead9c9
MD5 af8645baede8ddc43593561df21aa77a
BLAKE2b-256 c2ae1b7f0380286b760ecc5c05879b9232b801bf236f678cbeb9731ad954a565

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0606d93b72ca0870ea0469e3e131b6bdc3f0317837317a12d7e044ff01a5ca5f
MD5 d3e0f4a2aebaecd4885961be302f7750
BLAKE2b-256 95af3692ed980190723d8f39941abbe8e77b1e5757e8a9183e5d5ff2a0e538b1

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mwdust-1.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f21a3533a02fe6f8dc36ecc9a53b5b1042d623a93e0773e735f11bc066b54be6
MD5 bddde882097a1766903ab5f207f92a30
BLAKE2b-256 a290334820a461478898e57e4bb687c06a531955ac23c4b76839cd349a88a89e

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp313-cp313-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bd6a9a6d069422f57419529c3f3d512d2311f9b37d271cc42365994f70f75fd
MD5 f09cd75e4b857cd5a5f6b8739a335013
BLAKE2b-256 99458b8cb8027a79c29161bbb6e7fe9c94d06ee6f05fc9a689bccd499e5b32d0

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76ac70cc9d3017d41cb3555266d5c51eac22b2090cd0a4775c32eab72578f7e1
MD5 3075e8542d8105e3f8ddeb27b8acf831
BLAKE2b-256 41ae0ff3d21b1f27db9d2f279c95b7a31543fe9485b7db4b5ead0f6d6ebf33e2

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0e541f17b32a891c28cf3441b887291a19d55ffa7a886bd7fe4525218859ea7b
MD5 1e119d9caea5c24a23e4221dbe3fe991
BLAKE2b-256 760d0dcdc90357d601f3f785a1d2b058856101cfd504aac5a7775a23c59eb592

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mwdust-1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 376086031dc22cbd1a9904832c6138b1acd6a18fb8dc08ffad32e2122a8312a7
MD5 b5d63e123be9f3fec63eb3ac9097f5ea
BLAKE2b-256 ebd428efa30f56ff690f87221b63dcbe909373ac107e53a98a517aab39c39e48

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp312-cp312-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a456258c3d87de7df088cbcfaa20574bb8a9834f0dd743eb750604173213b40c
MD5 ffb916cd66c4bc472f91ba0f8c8efc16
BLAKE2b-256 f5f51db21c6906531556dbd37a95edccaf7a010f23692e92bf6a0ebe173cf8c1

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30dfcef407ff829d194e5f145585a867d731bb3787b41a85bf597b8021db5598
MD5 4a1fd9fc3bc32df8da995e6d1943af0a
BLAKE2b-256 78bfe2a1fddb8e6c50ef949fdc90be8279c3cc6262d0a2cdfaa129cf554ce7fb

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b8a502fb5760554af0e852e60480e0c3e6d5d4aba1e83b8d391618c91b4d60c
MD5 8d9da2234880b04c742df0bf102d513c
BLAKE2b-256 8c8ce2b0dbf11027dccdc2b9c9ca523615262aff9f01a8eb69d478587355bf58

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mwdust-1.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4e2d3d9b4dba548636e7bb5133a6cd245f831090c8a5737b108d12e13c483e62
MD5 c6f5df3ccc712630a784ea6b0bf0a6b5
BLAKE2b-256 fd47dda05b8fc3331861ac8aebed1e08c427de03536ebc4c7464a15cbe07cd68

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp311-cp311-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 412ee7cf804a664de51c9845fe8c5091deb0023d95d73c88a8d1d176efe18ef5
MD5 cb207d8e138d2b942c83b6b0e9ea7266
BLAKE2b-256 81837379ad660f4dbb173cd1da659cbc1612ca14a2fc5f61dfed8ff36f0f52bc

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d6be9e283bbc646c40d0b36584a51ba8d359d8e998d25fc54a84d8086fb0996
MD5 ab876a1f92535ffdf77befedee7ea0e6
BLAKE2b-256 0bdd33546a76fcd6602b451974ec5cbac799837e0cf643359b6b8ca4c4c6b887

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b6a4b412e26edb12ec751214bbe06862896662529319b83755744dc3cab6840
MD5 39dee0cb2415d5a9af36766f9f28b0b4
BLAKE2b-256 040e15edae87f1f19e3c2b8c0f41825221de1351ec192a9c187de70156ed9501

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mwdust-1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5926de1598827a1e541f41fe3ffdaf0b436ba6241a6f943d83ab8040bd6743a0
MD5 3af17896c0f86fb3aba6b21be677cb72
BLAKE2b-256 f26d7c174562846dc66ebef2c14e1b40154bb204487cdad50e040f099447b225

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp310-cp310-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99361317ffcc42c14ea020b2d56646912cc2d7538a7d5665fa77cbca5ff4b1bd
MD5 59d090e47c7332d07c9e1941148972cd
BLAKE2b-256 60463a6537da5acc6b89458e00a219eda4508e5b286896d2b37506e269014225

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b4ffd0438222ff20aa23d5f8cf03967ba38217f127d2b590cc75c9bf8181720
MD5 a0346fb371f6b0d7d29ed57ff9d542c1
BLAKE2b-256 9e5dc76431aa8e7b3fe05539f6bc372a2cc3e062cf05cc1b88a6b59732803fd7

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a7953a46af38d8c6dfd411d75cecc63e6c76d2080cc47bd4bd21072f96b9266
MD5 a9b17463806d3aa1d7c7a12a99cf79bc
BLAKE2b-256 359431fb3c2e34eb65a77f5fab6f83e4b475eaf150e8b30946c9d4dd3fac811c

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mwdust-1.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ce0e2d038a67e0b0a689f3a2a5e71e64bfc2431f3734a287ff3b20f84d09e86d
MD5 1a36f27dda3d5e58222133d60ea39b90
BLAKE2b-256 746321868f6005ae1a52b58b93391201863546abc7a92c027d8365d34c6d9ae9

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp39-cp39-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3185636064fb81826bb8592ee551f168dc7b365211983e544962fa381f4ad47c
MD5 77f3cd4a7d64744479d9f4f699e97778
BLAKE2b-256 3488c1bbb71eda7b925edaf4dfb46e2168c19e1961da63815614d91d32e419fd

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mwdust-1.8-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 81.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cdd6cfa5b01953a43c50b619860e9cc47986503500c0ad3d84c492cddaf0027
MD5 8bb821a7b9a07743d79b9403005a98e9
BLAKE2b-256 17192fb46dabb408f25f47efb08eefdd9c3cd0436c1fe0348e84dff756644f27

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mwdust-1.8-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 85.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a0fddda66f98f95b03cfc865ef806fba2c47077c475e257fb2cf9b0e99fb0af
MD5 0135f0ebafb2705b1a2eedb2924f6eeb
BLAKE2b-256 05edc75d015fd82ffe6ca9d35cdfe82bc132944fb07d462f4bf403ca165b4fd7

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mwdust-1.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 70.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 218a7be055a6e9e0e33210281b3db8395b59e97a24bcc7ea2e2ed8c3cfc1cd7c
MD5 591416e11edd1c9ba3fe0974d6b62e1e
BLAKE2b-256 ce6f566b3b0ad746d4e0c485df02430c670ea66b8bd79f7587b7e531b386df60

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mwdust-1.8-cp38-cp38-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd980ed1da93267eb26aac39a3184b04802eee2f85b55226c3280ff9a20008a3
MD5 e8fd2418203a07d9e04f88b916b58faf
BLAKE2b-256 1821704251f06b12e5d07d42eac8ed92124d1f7a65b00e38785eeaabfd37359f

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mwdust-1.8-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de2dfe41165535fb2c313d2e37b18783f0c5ed14bd9b8119698fe6b234193a92
MD5 c8bf872761590d4ff34d3260712f5f71
BLAKE2b-256 69f288c1575ed2bd208fa4ba4c65d5d665050a38739b3d1d0e7edc84b1a1364f

See more details on using hashes here.

File details

Details for the file mwdust-1.8-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mwdust-1.8-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 85.1 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mwdust-1.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9189e7ee81d9c0db037e657e545d43afa6655ac32ec31985da54b29eaac54e1
MD5 34766ba6226f851da223b8b941b31ac9
BLAKE2b-256 7a60c14afa70d5ef34968bf1bdd53b3771e8576eb0bb9b1cc6aa9b3fed792a0a

See more details on using hashes here.

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