Skip to main content

General simulation data file format.

Project description

GSD

The GSD file format is the native file format for HOOMD-blue. GSD files store trajectories of the HOOMD-blue system state in a binary file with efficient random access to frames. GSD allows all particle and topology properties to vary from one frame to the next. Use the GSD Python API to specify the initial condition for a HOOMD-blue simulation or analyze trajectory output with a script. Read a GSD trajectory with a visualization tool to explore the behavior of the simulation.

Resources

HOOMD examples

Create a hoomd gsd file.

>>> s = gsd.hoomd.Frame()
>>> s.particles.N = 4
>>> s.particles.types = ['A', 'B']
>>> s.particles.typeid = [0,0,1,1]
>>> s.particles.position = [[0,0,0],[1,1,1], [-1,-1,-1], [1,-1,-1]]
>>> s.configuration.box = [3, 3, 3, 0, 0, 0]
>>> traj = gsd.hoomd.open(name='test.gsd', mode='wb')
>>> traj.append(s)

Append frames to a gsd file:

>>> def create_frame(i):
...     s = gsd.hoomd.Frame();
...     s.configuration.step = i;
...     s.particles.N = 4+i;
...     s.particles.position = numpy.random.random(size=(4+i,3))
...     return s;
>>> with gsd.hoomd.open('test.gsd', 'ab') as t:
...     t.extend( (create_frame(i) for i in range(10)) )
...     print(len(t))
11

Randomly index frames:

>>> with gsd.hoomd.open('test.gsd', 'rb') as t:
...     frame = t[5]
...     print(frame.configuration.step)
4
...     print(frame.particles.N)
8
...     print(frame.particles.position)
[[ 0.56993282  0.42243481  0.5502916 ]
 [ 0.36892486  0.38167036  0.27310368]
 [ 0.04739023  0.13603486  0.196539  ]
 [ 0.120232    0.91591144  0.99463677]
 [ 0.79806316  0.16991436  0.15228257]
 [ 0.13724308  0.14253527  0.02505   ]
 [ 0.39287439  0.82519054  0.01613089]
 [ 0.23150323  0.95167434  0.7715748 ]]

Slice frames:

>>> with gsd.hoomd.open('test.gsd', 'rb') as t:
...     for s in t[5:-2]:
...         print(s.configuration.step, end=' ')
4 5 6 7

File layer examples

with gsd.fl.open(name='file.gsd', mode='wb') as f:
    f.write_chunk(name='position', data=numpy.array([[1,2,3],[4,5,6]], dtype=numpy.float32));
    f.write_chunk(name='angle', data=numpy.array([0, 1], dtype=numpy.float32));
    f.write_chunk(name='box', data=numpy.array([10, 10, 10], dtype=numpy.float32));
    f.end_frame()
with gsd.fl.open(name='file.gsd', mode='rb') as f:
    for i in range(1,f.nframes):
        position = f.read_chunk(frame=i, name='position');
        do_something(position);

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

gsd-2.8.1.tar.gz (140.7 kB view details)

Uploaded Source

Built Distributions

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

gsd-2.8.1-cp311-cp311-win_amd64.whl (92.0 kB view details)

Uploaded CPython 3.11Windows x86-64

gsd-2.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gsd-2.8.1-cp311-cp311-macosx_11_0_arm64.whl (97.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gsd-2.8.1-cp311-cp311-macosx_10_9_x86_64.whl (104.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

gsd-2.8.1-cp310-cp310-win_amd64.whl (91.4 kB view details)

Uploaded CPython 3.10Windows x86-64

gsd-2.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (399.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gsd-2.8.1-cp310-cp310-macosx_11_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

gsd-2.8.1-cp310-cp310-macosx_10_9_x86_64.whl (106.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

gsd-2.8.1-cp39-cp39-win_amd64.whl (92.0 kB view details)

Uploaded CPython 3.9Windows x86-64

gsd-2.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

gsd-2.8.1-cp39-cp39-macosx_11_0_arm64.whl (97.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

gsd-2.8.1-cp39-cp39-macosx_10_9_x86_64.whl (104.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

gsd-2.8.1-cp38-cp38-win_amd64.whl (92.2 kB view details)

Uploaded CPython 3.8Windows x86-64

gsd-2.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (408.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

gsd-2.8.1-cp38-cp38-macosx_11_0_arm64.whl (96.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

gsd-2.8.1-cp38-cp38-macosx_10_9_x86_64.whl (102.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

gsd-2.8.1-cp37-cp37m-win_amd64.whl (91.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

gsd-2.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

gsd-2.8.1-cp37-cp37m-macosx_10_9_x86_64.whl (102.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

gsd-2.8.1-cp36-cp36m-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

gsd-2.8.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

gsd-2.8.1-cp36-cp36m-macosx_10_9_x86_64.whl (102.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file gsd-2.8.1.tar.gz.

File metadata

  • Download URL: gsd-2.8.1.tar.gz
  • Upload date:
  • Size: 140.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1.tar.gz
Algorithm Hash digest
SHA256 fc7f8cc0b51a9c937ad4fd19658000e3b677a47d65b85e53329b42a9f7087e64
MD5 ca83160669fe2859a111f9cadadeff15
BLAKE2b-256 ac4bd5ede794944deec7629cba6bef9332ea9e5c3871c137ffd1cf85e74362c8

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 92.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6cf568bf7173b209e9a5c67714afe161c0385af033b17addd4e1ed9f85b67f75
MD5 7d0202e3b8243062ee4431b11d6c56ef
BLAKE2b-256 5feeae6c3a82052ab7b8caf48674e5593cd342dee57614099dac747ee6daffc6

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b187c5d1a408f1ed56de7ee2cfd22e65b2dceb2307b779a8e79b03c1e14cfeb0
MD5 4aaa4a631d810a9f75139144f1ffdb9c
BLAKE2b-256 3bd1971f472509fe50e42a772466cf6e114f1be89f3c66bf2a83e6f7e18f8753

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 97.0 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 995eb1bfba2b1748ee40e60e11ebfe7f4fd4aabb326050231be5fab34f7273cf
MD5 8312b033f700b3c83c16eb0fe8340c9e
BLAKE2b-256 5a4ff23a93f2a887e3e1e025cc73dd49841b6a1f3196da1dbc1ccd9f74c36de3

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 653ca39ca4c3d91610558bf379f7c93a2c58d2837d6970cdac98df0aa2ab2292
MD5 373f6d06cbe68b876f1d0fa63b152e0d
BLAKE2b-256 73291b07872b268dd2fc2b23d8d3d539d5de2727d7f6b56bc72b612ce1096500

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 91.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ac106705f0dce51293fd2ceaf053f2dcbfabb7a74f0db49d6143f4ba7ec87b02
MD5 79945016c1331fc38dcdda3709da6e92
BLAKE2b-256 39ee6aa0ccc2968b251ef0fcd4c100cbf1b484c30f89e2534f706b0ea24bdcc8

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb585d448feded2dbb1a6b37a53b3a7685f911e28d8d36f3d0332660afc3c6fa
MD5 b5acc58b946f0864871b2eb664c03f77
BLAKE2b-256 359ff06c98275f66a17627f53cf368c5b14283b06c28289af818414d128b7881

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 99.2 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 189f74fa8bbc6f8513caf5e3caaedf59b8640f283650da60e7b5e2c3f31e9757
MD5 cd8f4a6a53f924f5e0b3a3eddd5103e2
BLAKE2b-256 2dc5245bf46ab850c3b5c672c13a44bc334c355563c826373a91e9a1ef5d5583

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49c41e888f494f6f774dd58840f0416964b25ae7ccdb17215fdca141bfadfbbd
MD5 69e0967941cce47b5e87d0a25301ede3
BLAKE2b-256 ca8d04d51c0fe9ad80438dedff702fd125531d3535600ebedd4a7c57fcb38143

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 92.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 76e0992d85360201b00077a2a927acaa5c8d41c49a3d4b3554a258da9d1b9b1f
MD5 e3c9b85004931cf4a4a6250646132769
BLAKE2b-256 0d4006f6e842b3b22dcb25732a450fd39114f613b2c6ac7d2e482920fb28ee8c

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d07f65ff6aa69b87d71250ad6bdbf59c642f05b8d64cad2c083bb2daf32ca272
MD5 9f1f564d62ec5bfb71ecdc0bafc0ba3c
BLAKE2b-256 35a8bf36e0ff92a0dcab548c27daaaebf4754f40d3f5bb0586c8f967de0c3851

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 97.2 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41d46c30d84c1841d6fd93099b01b8e994e9bc3641255a9def39754e8c3ded21
MD5 63cbb046fec88c0fa96a2b15cb21cc0e
BLAKE2b-256 e3ed6026865cc26a8eb80934b1e49bebe3e29a0c83d71a896e4bc90613e910d2

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 104.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5e64be127a81be325bc919a9c827fe80c293dc2b2bf4cc85c2b179f3f6ad38e
MD5 c125dcc38cbf9d0d1c58f02c694a23ff
BLAKE2b-256 44b0a79fb9c13a96e5c37015b1f9788baa070da52bb0c4b1d764e1c1f51386ab

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 92.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 399a0d7fb03dd8b8db98af3a1b89eebf439d32eaeaf1f10b21e123d78cbdaaef
MD5 193e63034ed27ab8e03121447ed8b29d
BLAKE2b-256 54a1ce3b7604ddff4c6475089f0c7a6431f79acffac219511149cbdde8759c08

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70219b728ac1d981619666b0b2ee11d4816903b1e4ae5b2346ded47526b5b78e
MD5 ec7962f44f720c01c13e60a68f6d8d3d
BLAKE2b-256 45bc3a8e37df6d5936e4a4390654356a73ac7ee55483d57bfba8093e35190361

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae2eac8f15034d6b1612f8141a63bf825dc03f92ae2e3b0aa51ad47b91291879
MD5 88816d34052715d257d79604057a374a
BLAKE2b-256 a1256653654faef02203d58e8279946232cdd6fa3703b0457ad43db73e301d32

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 102.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03d4b78e6c68377077778f1b76281200aa45a8beb0b7184e3f416012b336b2da
MD5 c168d5efef2153613d31110ff89110bd
BLAKE2b-256 8b3134e80249c03419e6a5d5fadd7532aa07f42a3108fac87f3e5c791279957f

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 91.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8a34afd945ad3a45583b94e612599faac7a8fa34615c4322ee83e5c7404474ca
MD5 e708724ba13d86a0d982fd32ff1db03c
BLAKE2b-256 555f39a09f6ef6bf7b31443b85c23638a2e767aa75d53531368a28e23aaa8f7a

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a83d7f9bcc2a70930e9eb04ed722508e4b57d687dc3b937b421f27ac01923f7
MD5 58b91ed0512ab6ead9219f24c7d7bf4a
BLAKE2b-256 82edc83ee856ce3ccc054ba9ebab819b6532bd56169fbac6f0648d237698bc07

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 102.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 705878c92f3d3fcdc706fa691a4214ccfb187ac5ba627b58bcaf11686694835a
MD5 bf7879879ae2711103ef22bf40336b98
BLAKE2b-256 af745b1b7dff3d4b6b807076553e1133a4d33a08acf4770bb1f89a0d6fd81827

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 96.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a17c366a6046a0724fd147406309567c3e9219071b91f042dcf102b9751b10cb
MD5 da8f033ab377c8d28eff60f41963ec06
BLAKE2b-256 de86ade2ba3b4d6a902e186623a107d76bdcdfc7be6894643f28f621028139fd

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.8.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12ef7bb19ee2b41c51541e425f9b4e6d90d75066a51e42d2cbc8557daf44f16d
MD5 34c5dd5941ced71faaf4a4aad330e6f5
BLAKE2b-256 d404faac4d1e0a28b5b380aad32d888f79a124cfd4bb48fa42df78f2eeab1e64

See more details on using hashes here.

File details

Details for the file gsd-2.8.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.8.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 102.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for gsd-2.8.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ee69672baced7b0c42d427dee2ecb2444b5e32ae53542147e437a697c22cb2e
MD5 7d43677c9ba691a7a72efe6802a2e540
BLAKE2b-256 0591ba3e0ac1b3800c25d3f8c6e1ae74ca2ad778af69f95166051bbf6ed6f6fa

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