Skeleton object used for representing neurons, adjacent cells, and organelles.
Project description
osteoid
Skeleton object used for representing neurons, adjacent cells, and organelles.
Osteoid is the Skeleton code from CloudVolume refactored into its own library.
Installation
pip install osteoid
Examples
import osteoid
skel = osteoid.load("skeleton.swc")
osteoid.save("skeleton.swc", skel)
from osteoid import Skeleton, Bbox
skel = Skeleton(vertices, edges, radii=radii)
# you can specify a transform to e.g.
# convert the skeleton into a physical space
# with, in this example, 16x16x40 nm^3 resolution
matrix = np.array([
[16, 0, 0, 0],
[0, 16, 0, 0],
[0, 0, 40, 0],
], dtype=np.float32)
skel = Skeleton(vertices, edges, radii=radii, transform=matrix)
skel = skel.physical_space() # applies transform to vertices
skel = skel.voxel_space() # removes transform from vertices
# skeleton functions
l = skel.cable_length() # physical length of the cable
comps = skel.components() # connected components
paths = skel.paths() # convert tree into a list of linear paths
skel = skel.downsample(factor) # factor must be a pos integer
skel = skel.average_smoothing(7) # smooths over a window of e.g. 7 vertices
skel2 = skel.crop([ minx, miny, minz, maxx, maxy, maxz ])
skel2 = skel.crop(Bbox([minx, miny, minz], [maxx, maxy, maxz]))
G = skel.to_networkx() # converts edges to an nx.Graph()
binary = skel.to_precomputed() # Neuroglancer compatible format
swc = skel.to_swc() # Neuroglancer compatible format
skel = Skeleton.from_swc(swc)
skel = Skeleton.from_precomputed(binary, segid=1, vertex_attributes=[
{
'id': 'radius',
'num_components': 1,
'data_type': 'float32',
},
])
# Cross-format transform from Navis. More efficient than
# using SWCs as an interchange medium. Navis is more fully featured,
# and written with a lot of love by Philipp Schlegel and others.
# Consider using it and citing them: https://github.com/navis-org/navis
skel = Skeleton.from_navis(navis_skel)
# remove duplicate vertices and optionally disconnected vertices
skel = skel.consolidate()
skel2 = skel.clone()
# visualize, requires either matplotlib or microviewer+vtk installed
skel.viewer() # select library automatically
skel.viewer(color_by='radius', library='matplotlib')
skel.viewer(color_by='cross_section', library='matplotlib')
skel.viewer(color_by='component', library='matplotlib')
# gpu accelerated, fewer features, colors by component
skel.viewer(library='vtk')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file osteoid-0.6.0.tar.gz.
File metadata
- Download URL: osteoid-0.6.0.tar.gz
- Upload date:
- Size: 416.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f1db97939ee746c64dfac0b6cc980512cc193cd27cab39917852e09fd5799eb
|
|
| MD5 |
4527718679385de4421233ec027338d3
|
|
| BLAKE2b-256 |
e9e0abbf7fe327cf560da5d222b5a9a27efab541666dcf61c3daf04fad9dd17d
|
File details
Details for the file osteoid-0.6.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 136.0 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df9a8b377cfc8c20ecca0d1ce6ecfba4793eb37a67f1819e9e0f5b74c1747f1d
|
|
| MD5 |
e28c0e20d64d2efbedb97504bd60fe5d
|
|
| BLAKE2b-256 |
c355f02d8836afa9d4f472c904f7ccea792ddde1099be7dd7c500e052e420b92
|
File details
Details for the file osteoid-0.6.0-cp314-cp314t-win32.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314t-win32.whl
- Upload date:
- Size: 126.6 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9aa71243dfe822959d2e8644a925633277d71ddc8c24d490c37b9ec60c2a667c
|
|
| MD5 |
af44922d98f9a75753196bf3936de05e
|
|
| BLAKE2b-256 |
56b613128d51ff558b5b9cb30cb08388cc36954f112e37d3e05207f3a4c8f289
|
File details
Details for the file osteoid-0.6.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 157.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a4e9a4be2f0a7d91b664aa10e02c2ac6616078208d451c4c352a918a6356006
|
|
| MD5 |
b3ed69bece874628af0689430b2fbc4a
|
|
| BLAKE2b-256 |
90746f1b200d25bab5b4a60892eff3e7f4076b41f816938bf83b8653127c82f9
|
File details
Details for the file osteoid-0.6.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 149.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2f65dd94c4d4e5a96baeb6b48838892ea2a9cd91bca0979c02978c81bf41026
|
|
| MD5 |
2a1860449157853292f59ac9cadc7128
|
|
| BLAKE2b-256 |
e6d3075fa6cc2893c3fe3117c07d632f5175824ffc4a3668c3946214e7c91d58
|
File details
Details for the file osteoid-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 130.5 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ec131e4148b50147c7fa4d4ef99e65c13fb1ab02fbbcc97808545501bb122dd
|
|
| MD5 |
86849d5d52ea36465af43fdf60d1efc1
|
|
| BLAKE2b-256 |
471b2af426c74befbc40a0e02893379b3def305eef29fc3d1e5323c6f0acfb35
|
File details
Details for the file osteoid-0.6.0-cp314-cp314t-macosx_10_13_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314t-macosx_10_13_x86_64.whl
- Upload date:
- Size: 147.0 kB
- Tags: CPython 3.14t, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf2c79d492bdece1d0f925da9599fc5f914a8d9f78934f6d39a8d855060247ca
|
|
| MD5 |
4fad080ee832c62b5f33327d8af0991b
|
|
| BLAKE2b-256 |
8cd565367ce9253df52dfb3cd03c6843f3c884fcddbb30a4e04d8b92a6c5bf6d
|
File details
Details for the file osteoid-0.6.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 127.8 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28f97f358788bd9d2e2d53b285637e402341b8e3903146e23711dc7b518672d7
|
|
| MD5 |
e8b346aa41f781a4a1a61852c8b612a5
|
|
| BLAKE2b-256 |
76338bfb2d63dcb7fffb6430cccd8dba78e794e2b8fd0ae5742be2ecf39ac6ce
|
File details
Details for the file osteoid-0.6.0-cp314-cp314-win32.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314-win32.whl
- Upload date:
- Size: 120.5 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
846720595180fd62f0a6351fe5c6b6915e858dee46d0b39b5fe84bb46507994b
|
|
| MD5 |
f984c897bf7f6e30092175b3af29f136
|
|
| BLAKE2b-256 |
6a1f58128d77b691e53e8a836e7393e534b5197c040b48b8be89f4ec9fcaf025
|
File details
Details for the file osteoid-0.6.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 154.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d35aff7a3769d3f1a75403f07d4e32feff373cbcccfb27de5cdff4c74d7502e
|
|
| MD5 |
95a6f2b02edf7f740817e6db2ca502c5
|
|
| BLAKE2b-256 |
1f43a604d3292b286f593503cc19990219ce74c8a52aea4491badc80363adad9
|
File details
Details for the file osteoid-0.6.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 146.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2564300e2c4518e86d07da509ae2e9388a3fdf458b9c78f08c5175d624abf0d1
|
|
| MD5 |
a6d81514ab05d49e3a1c097e17e69531
|
|
| BLAKE2b-256 |
6ea290780f037beb26ef03a623320236fb05076cf225b2cbd5a00574125103e2
|
File details
Details for the file osteoid-0.6.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 126.4 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e7a7530ce75df2187ea8137814a969acaf7d4ff66146f740340e66b2dce7fb2
|
|
| MD5 |
8126d8721b3e1d8c7c0b1586472ce329
|
|
| BLAKE2b-256 |
11afb5633ab1d4f7c8372b6eb15d76d51d8f2a17546c5b17bf2ec00c11388365
|
File details
Details for the file osteoid-0.6.0-cp314-cp314-macosx_10_13_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp314-cp314-macosx_10_13_x86_64.whl
- Upload date:
- Size: 143.3 kB
- Tags: CPython 3.14, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
317ee8115d633ad943e186bea556ff5bde1ee90b7cac24826add072c1c9d0dcf
|
|
| MD5 |
afb83e264991fc8e7f42ee14f9e4db54
|
|
| BLAKE2b-256 |
3d177728ceba72f967db96dfd99c9af63705ef09dcaa0fa335cb309fac9db984
|
File details
Details for the file osteoid-0.6.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 124.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08a30799abeae93848d3895d47875b9f270b756132a02fd09152ab5ff77a8760
|
|
| MD5 |
71120d6d7f7e64c65bb01dbe055e0eac
|
|
| BLAKE2b-256 |
4f5fe19a7f2585e5e1d8578b9ef80666791a1922dbe02e93b574bc98c0784f0f
|
File details
Details for the file osteoid-0.6.0-cp313-cp313-win32.whl.
File metadata
- Download URL: osteoid-0.6.0-cp313-cp313-win32.whl
- Upload date:
- Size: 117.6 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6f6cfe966432172af53aee0dafbc188510c3c06634c2a14c684a666fbd7c391
|
|
| MD5 |
50c3a37edc6f00ac14424c541ef6ce60
|
|
| BLAKE2b-256 |
8f07eaa0bb89f1500f78804ff8bd8b0621035a09daf82435b56607966a040566
|
File details
Details for the file osteoid-0.6.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 154.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d917195913dfa0ed8c3d6ff9cf5d1d24c073de0be73c2ebc2fdcef422847b626
|
|
| MD5 |
fb44581ee761c8b99dd3ab11192c07ba
|
|
| BLAKE2b-256 |
7c6b744e6a8aa0f79c6765f6fd95f58e67b6992a717eeefc183023bec920609c
|
File details
Details for the file osteoid-0.6.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 145.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba7b35beccecfe63f0d02f82b40ecd57e921db2716f8c0e587d8dc474b98f3ea
|
|
| MD5 |
c1e68401e59779e7b9cb041edc4c614f
|
|
| BLAKE2b-256 |
7bbd23947eaeb0e7911b20bcf07c22893a51587155cc69f2f623611d5aab2f49
|
File details
Details for the file osteoid-0.6.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 126.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22bcf77298e849ea04d3425d242f5e7980607491d530604481d1d4b0d92aee78
|
|
| MD5 |
c09a2ceaf4a0b18849f26c584f4b7ab3
|
|
| BLAKE2b-256 |
f3afc691b5aeef25548ea308d594b7f8e4c79b7d3ea3bd4fa9b4f8548fe0303c
|
File details
Details for the file osteoid-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 143.1 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
581aaf4f047b54021ec3e17285925936e329e8f1121c3e10c696ae34e5b304e6
|
|
| MD5 |
607ff4f4dfa787e8a02d40b431a301c3
|
|
| BLAKE2b-256 |
089d7f6abb16cbe3b2e67410604071ab6250732f6745419d1601e124bf7679af
|
File details
Details for the file osteoid-0.6.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 124.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7153ec54b8aee697c9b17a5ab7caf398b31f94340c8cbeb683c716b1517aad7a
|
|
| MD5 |
da95e49f233c6e2882ab776c1d0db5a5
|
|
| BLAKE2b-256 |
3c537e66f28eb99d97962b708750ff1082e9a150d063628f6978be8b6c444a7f
|
File details
Details for the file osteoid-0.6.0-cp312-cp312-win32.whl.
File metadata
- Download URL: osteoid-0.6.0-cp312-cp312-win32.whl
- Upload date:
- Size: 117.6 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8993b9249208832ad652194930ff602915b222c629adaf8aa78610186524b90c
|
|
| MD5 |
3d8a26b4c935b49e3aae0d05633059a9
|
|
| BLAKE2b-256 |
db6a38a523f01f02c5fa90b38da45e99e5d4f9647f5952a826a62391d68e8a52
|
File details
Details for the file osteoid-0.6.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 154.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7cadf1a33486c2b79a904ffd51dd40f59f789b6baf219e0fd73230df538c877
|
|
| MD5 |
1114375739791d835aa13734534658ff
|
|
| BLAKE2b-256 |
e48f648fea6436fd40887e68e18df3576a3c46b8f584e958d03dd572f1b9e533
|
File details
Details for the file osteoid-0.6.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 145.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b067a84de3db167cf675a453d21a7b8a5259b66f77a14d27c54678b427a40c92
|
|
| MD5 |
e98c63f63d872bae929c14bc00336348
|
|
| BLAKE2b-256 |
0251e8ca1de0c047bae101fd51b6b27cf49144568ec980b9be975b48eb5fd5d1
|
File details
Details for the file osteoid-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 126.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21424e8b7c4809bdbe5c58dc870e561a65d59e8d1ba8920b9b87a08268fda722
|
|
| MD5 |
3cf7fb0601431775ca9bef6294e0367b
|
|
| BLAKE2b-256 |
2317b260d85e68f2e3e2f2ed8f7cdfb7eadcd4f129bebee76c9f31c21614d216
|
File details
Details for the file osteoid-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 143.1 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e02731b7e867bbfb7401586c5940240670f0d284ec6a0a6ec5b6d1d25a887ca1
|
|
| MD5 |
09a67fc6f05aa0040356a244afe30997
|
|
| BLAKE2b-256 |
adb266b34a706d3447914ff4e95aa66636fc74c63835d8a0f201a04eacacb00f
|
File details
Details for the file osteoid-0.6.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 124.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
accfa55cb22f12e4abeba70bc5a252ee7f9c3de0500d4a2c3bda4ef49f329cc8
|
|
| MD5 |
519eaf96c28b17b2c3f23f82a863191d
|
|
| BLAKE2b-256 |
097a79b57a34a39bf4f460a4161e64a9f8efeaca050d666967b31816a3b02971
|
File details
Details for the file osteoid-0.6.0-cp311-cp311-win32.whl.
File metadata
- Download URL: osteoid-0.6.0-cp311-cp311-win32.whl
- Upload date:
- Size: 117.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74f336782032aad57facee460731e175ff253b55e11861e3df7bf4c3fde0fb0d
|
|
| MD5 |
c8a0696536c8d70940dcf600d371d9a9
|
|
| BLAKE2b-256 |
8f0e267b984cdf824e6495800c635268ae08f79d92658a79bd4672925106ecfa
|
File details
Details for the file osteoid-0.6.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 153.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdc76f6d4390400294cccfbf9f4f5d288c317b7681f70488c730ffc577e6cee4
|
|
| MD5 |
0a84759720dca03d3ecfdbea5bf4c1af
|
|
| BLAKE2b-256 |
6e80795710958f373259a521ebc78e59bad0f43de6fdbe2bd87520e13c0aea21
|
File details
Details for the file osteoid-0.6.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 146.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b800d5eefb53cecbac1d1b8b461c1c33240b3e8f1d433b75e186abfe0e34c14e
|
|
| MD5 |
bd8a06bd8859609503e20baa2bbf44b4
|
|
| BLAKE2b-256 |
8f8e7a005c3405310a6f535bc1dea366dacb6dca53515c9a05522aba69194a0a
|
File details
Details for the file osteoid-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 125.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29728be4990ba55ca14700c0ffe1627d1704005149664c9d347e6a857c2b0358
|
|
| MD5 |
0a8033ccafb4b1736d888d927ff41ab5
|
|
| BLAKE2b-256 |
18ac8956eb1d638d18189cd2286bed4f20b73fcbe24e3885ef60ed4ad55269c5
|
File details
Details for the file osteoid-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 142.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0574492d99612ee672e1b3f0eaa978ae76cf74c4ef5930785af442609122193
|
|
| MD5 |
7e288eedf54410d9ec860f0117bcadda
|
|
| BLAKE2b-256 |
3c3dc61cb66bc44a42cd08f5eb0e98f206ba3bd1476f3c436bb71ea3a1aebcb7
|
File details
Details for the file osteoid-0.6.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 123.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f96fc55039c6df54f682c90d4a2b799661cb01429e3c5463e5922ceb1f2f845a
|
|
| MD5 |
32f0a7c63e6317f3a1b62c7b746b7f5a
|
|
| BLAKE2b-256 |
2897896e666dd3bc38a071de21f51e6f77dcc0cbb63a818f45c71011a358fb7f
|
File details
Details for the file osteoid-0.6.0-cp310-cp310-win32.whl.
File metadata
- Download URL: osteoid-0.6.0-cp310-cp310-win32.whl
- Upload date:
- Size: 115.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a53149889da92ce18e52214a7dd6b29a8f20c14e9d955fa96c2e55b692deeeeb
|
|
| MD5 |
7cc662210ab86663e0c09aa1c72c7ab3
|
|
| BLAKE2b-256 |
1e6d08191d9f8dc9d068eac31f088a3eecb07466336d724a8ad553458de0a4c5
|
File details
Details for the file osteoid-0.6.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 152.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99e9cda5d8aca2e076e931c28bde2513a0ff6b39849eda0a40c8e6a9282e5f36
|
|
| MD5 |
1a6d0762efe3e3c6d7394dbe290cae53
|
|
| BLAKE2b-256 |
b0582e3ec6630fb54ddb7b80624de69246137e9b4c524d7e02e451dc41e32240
|
File details
Details for the file osteoid-0.6.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 145.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f2ce6900d84d937a46cbfbbfdee6fd17b429f0ff48d25575293f0b77eab6dcd
|
|
| MD5 |
20f9567561453d2de951dd14ac3f14f1
|
|
| BLAKE2b-256 |
4c98656e999f473bfca07b298b7898094d1826d02b5c1179ece6c46cb07e5b14
|
File details
Details for the file osteoid-0.6.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 124.2 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
124310a61f0aeb53d78cd5e52c78deb8d40f9f4129fd9d7462d7e6297a260b8e
|
|
| MD5 |
f3771077c47bc23b53934ca3f01455cf
|
|
| BLAKE2b-256 |
a799e208482af0331c3f0eaccbbf25975589c394b1c59243c2dac08bf5701896
|
File details
Details for the file osteoid-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 140.1 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57305dcf3ae84f998b7c35f02e04e817f8e6f7e0770bfea152e4eba35c94710c
|
|
| MD5 |
f45fad323cb63d791c6426ae4cf21538
|
|
| BLAKE2b-256 |
d3dc6d8189b280fbfdc206aa05736a2a802aade10366c935b76d19d4cf9cb3e2
|
File details
Details for the file osteoid-0.6.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 124.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e2362e0c91286ee11e90d6c379877342c194702a504aa7bcb400b70ece82803
|
|
| MD5 |
e7f86e5d3bacd0e974f2c1c03563f645
|
|
| BLAKE2b-256 |
1145989e2357c6774032798b9d0c330a645eb2cbce2f7a464b35583e57050dc0
|
File details
Details for the file osteoid-0.6.0-cp39-cp39-win32.whl.
File metadata
- Download URL: osteoid-0.6.0-cp39-cp39-win32.whl
- Upload date:
- Size: 116.1 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a98ab3f9b46e68a4e05e8fe4ffcb472e941bc06246f7e062f402e35b25b067cf
|
|
| MD5 |
a4ddb73a56001ac4acb4fd12e290ef85
|
|
| BLAKE2b-256 |
e787fcf1be7113d12e20033987c88d227aa12e5112d0938a28b12dd3e78b3e19
|
File details
Details for the file osteoid-0.6.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 152.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9adc62a0e786da4fdb49262567a1ee7a1852ac0e16816f742cb341616553863b
|
|
| MD5 |
8bc5f9d09c327ff1f7682e4b48bfa77a
|
|
| BLAKE2b-256 |
0cba54dc6bab0352d7693244589de0a0c7ceeef181c50ebc068a33b18349a39b
|
File details
Details for the file osteoid-0.6.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 145.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24859a147209b7c3ac91188b7e3c3c6db8e6e521978229a897938517e2cc761e
|
|
| MD5 |
985f1cf356a6f02cfe5cfb8047a62fc8
|
|
| BLAKE2b-256 |
519d5934893c0fede8e0bc88c328c8c3d5cd98f7055bd447a339cf9b1566eb80
|
File details
Details for the file osteoid-0.6.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 124.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9046469edfd47beab50c9d846f5f4deed1503d67bed067d0ac20f1a06c42db29
|
|
| MD5 |
5bda15e942ca43d3af4c0d4126a7e0d5
|
|
| BLAKE2b-256 |
ed14ba32dc808a8726f89db53ec35bfaf2007125d251850ec28edb628e7e8b95
|
File details
Details for the file osteoid-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: osteoid-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 140.1 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a39abca3428e7cde561ca0803e5e6f5a7153925d15e1e18f8f9e10be4916998c
|
|
| MD5 |
1ae1940d9b0fa200579639c19fb6e3eb
|
|
| BLAKE2b-256 |
75dacb72d747d748906baef56fbb812570dd7a0c7e5e49b0417170cca3faf5f7
|