Skip to main content

Tiny but powerful Wavefront OBJ loader

Project description

tinyobjloader

PyPI version

AZ Build Status

AppVeyor Build status

Coverage Status

AUR version

Tiny but powerful single file wavefront obj loader written in C++03. No dependency except for C++ STL. It can parse over 10M polygons with moderate memory and time.

tinyobjloader is good for embedding .obj loader to your (global illumination) renderer ;-)

If you are looking for C89 version, please see https://github.com/syoyo/tinyobjloader-c .

Version notice

We recommend to use master(main) branch. Its v2.0 release candidate. Most features are now nearly robust and stable(Remaining task for release v2.0 is polishing C++ and Python API, and fix built-in triangulation code).

We have released new version v1.0.0 on 20 Aug, 2016. Old version is available as v0.9.x branch https://github.com/syoyo/tinyobjloader/tree/v0.9.x

What's new

Requirements

  • C++03 compiler

Old version

Previous old version is available in v0.9.x branch.

Example

Rungholt

tinyobjloader can successfully load 6M triangles Rungholt scene. http://casual-effects.com/data/index.html

Use case

TinyObjLoader is successfully used in ...

New version(v1.0.x)

Old version(v0.9.x)

Features

Primitives

  • face(f)
  • lines(l)
  • points(p)
  • curve
  • 2D curve
  • surface.
  • Free form curve/surfaces

Material

  • PBR material extension for .MTL. Please see pbr-mtl.md for details.
  • Texture options
  • Unknown material attributes are returned as key-value(value is string) map.

TODO

  • Fix obj_sticker example.
  • More unit test codes.

License

TinyObjLoader is licensed under MIT license.

Third party licenses.

  • pybind11 : BSD-style license.
  • mapbox earcut.hpp: ISC License.

Usage

Installation

One option is to simply copy the header file into your project and to make sure that TINYOBJLOADER_IMPLEMENTATION is defined exactly once.

Building tinyobjloader - Using vcpkg(not recommended though)

Although it is not a recommended way, you can download and install tinyobjloader using the vcpkg dependency manager:

git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg integrate install
./vcpkg install tinyobjloader

The tinyobjloader port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please create an issue or pull request on the vcpkg repository.

Data format

attrib_t contains single and linear array of vertex data(position, normal and texcoord).

attrib_t::vertices => 3 floats per vertex

       v[0]        v[1]        v[2]        v[3]               v[n-1]
  +-----------+-----------+-----------+-----------+      +-----------+
  | x | y | z | x | y | z | x | y | z | x | y | z | .... | x | y | z |
  +-----------+-----------+-----------+-----------+      +-----------+

attrib_t::normals => 3 floats per vertex

       n[0]        n[1]        n[2]        n[3]               n[n-1]
  +-----------+-----------+-----------+-----------+      +-----------+
  | x | y | z | x | y | z | x | y | z | x | y | z | .... | x | y | z |
  +-----------+-----------+-----------+-----------+      +-----------+

attrib_t::texcoords => 2 floats per vertex

       t[0]        t[1]        t[2]        t[3]               t[n-1]
  +-----------+-----------+-----------+-----------+      +-----------+
  |  u  |  v  |  u  |  v  |  u  |  v  |  u  |  v  | .... |  u  |  v  |
  +-----------+-----------+-----------+-----------+      +-----------+

attrib_t::colors => 3 floats per vertex(vertex color. optional)

       c[0]        c[1]        c[2]        c[3]               c[n-1]
  +-----------+-----------+-----------+-----------+      +-----------+
  | x | y | z | x | y | z | x | y | z | x | y | z | .... | x | y | z |
  +-----------+-----------+-----------+-----------+      +-----------+

Each shape_t::mesh_t does not contain vertex data but contains array index to attrib_t. See loader_example.cc for more details.


mesh_t::indices => array of vertex indices.

  +----+----+----+----+----+----+----+----+----+----+     +--------+
  | i0 | i1 | i2 | i3 | i4 | i5 | i6 | i7 | i8 | i9 | ... | i(n-1) |
  +----+----+----+----+----+----+----+----+----+----+     +--------+

Each index has an array index to attrib_t::vertices, attrib_t::normals and attrib_t::texcoords.

mesh_t::num_face_vertices => array of the number of vertices per face(e.g. 3 = triangle, 4 = quad , 5 or more = N-gons).


  +---+---+---+        +---+
  | 3 | 4 | 3 | ...... | 3 |
  +---+---+---+        +---+
    |   |   |            |
    |   |   |            +-----------------------------------------+
    |   |   |                                                      |
    |   |   +------------------------------+                       |
    |   |                                  |                       |
    |   +------------------+               |                       |
    |                      |               |                       |
    |/                     |/              |/                      |/

 mesh_t::indices

  |    face[0]   |       face[1]     |    face[2]   |     |      face[n-1]           |
  +----+----+----+----+----+----+----+----+----+----+     +--------+--------+--------+
  | i0 | i1 | i2 | i3 | i4 | i5 | i6 | i7 | i8 | i9 | ... | i(n-3) | i(n-2) | i(n-1) |
  +----+----+----+----+----+----+----+----+----+----+     +--------+--------+--------+

Note that when triangulate flag is true in tinyobj::LoadObj() argument, num_face_vertices are all filled with 3(triangle).

float data type

TinyObjLoader now use real_t for floating point data type. Default is float(32bit). You can enable double(64bit) precision by using TINYOBJLOADER_USE_DOUBLE define.

Robust triangulation

When you enable triangulation(default is enabled), TinyObjLoader triangulate polygons(faces with 4 or more vertices).

Built-in trinagulation code may not work well in some polygon shape.

You can define TINYOBJLOADER_USE_MAPBOX_EARCUT for robust triangulation using mapbox/earcut.hpp. This requires C++11 compiler though. And you need to copy mapbox/earcut.hpp to your project. If you have your own mapbox/earcut.hpp file incuded in your project, you can define TINYOBJLOADER_DONOT_INCLUDE_MAPBOX_EARCUT so that mapbox/earcut.hpp is not included inside of tiny_obj_loader.h.

Example code (Deprecated API)

#define TINYOBJLOADER_IMPLEMENTATION // define this in only *one* .cc
// Optional. define TINYOBJLOADER_USE_MAPBOX_EARCUT gives robust trinagulation. Requires C++11
//#define TINYOBJLOADER_USE_MAPBOX_EARCUT
#include "tiny_obj_loader.h"

std::string inputfile = "cornell_box.obj";
tinyobj::attrib_t attrib;
std::vector<tinyobj::shape_t> shapes;
std::vector<tinyobj::material_t> materials;

std::string warn;
std::string err;

bool ret = tinyobj::LoadObj(&attrib, &shapes, &materials, &warn, &err, inputfile.c_str());

if (!warn.empty()) {
  std::cout << warn << std::endl;
}

if (!err.empty()) {
  std::cerr << err << std::endl;
}

if (!ret) {
  exit(1);
}

// Loop over shapes
for (size_t s = 0; s < shapes.size(); s++) {
  // Loop over faces(polygon)
  size_t index_offset = 0;
  for (size_t f = 0; f < shapes[s].mesh.num_face_vertices.size(); f++) {
    size_t fv = size_t(shapes[s].mesh.num_face_vertices[f]);

    // Loop over vertices in the face.
    for (size_t v = 0; v < fv; v++) {
      // access to vertex
      tinyobj::index_t idx = shapes[s].mesh.indices[index_offset + v];

      tinyobj::real_t vx = attrib.vertices[3*size_t(idx.vertex_index)+0];
      tinyobj::real_t vy = attrib.vertices[3*size_t(idx.vertex_index)+1];
      tinyobj::real_t vz = attrib.vertices[3*size_t(idx.vertex_index)+2];

      // Check if `normal_index` is zero or positive. negative = no normal data
      if (idx.normal_index >= 0) {
        tinyobj::real_t nx = attrib.normals[3*size_t(idx.normal_index)+0];
        tinyobj::real_t ny = attrib.normals[3*size_t(idx.normal_index)+1];
        tinyobj::real_t nz = attrib.normals[3*size_t(idx.normal_index)+2];
      }

      // Check if `texcoord_index` is zero or positive. negative = no texcoord data
      if (idx.texcoord_index >= 0) {
        tinyobj::real_t tx = attrib.texcoords[2*size_t(idx.texcoord_index)+0];
        tinyobj::real_t ty = attrib.texcoords[2*size_t(idx.texcoord_index)+1];
      }
      // Optional: vertex colors
      // tinyobj::real_t red   = attrib.colors[3*size_t(idx.vertex_index)+0];
      // tinyobj::real_t green = attrib.colors[3*size_t(idx.vertex_index)+1];
      // tinyobj::real_t blue  = attrib.colors[3*size_t(idx.vertex_index)+2];
    }
    index_offset += fv;

    // per-face material
    shapes[s].mesh.material_ids[f];
  }
}

Example code (New Object Oriented API)

#define TINYOBJLOADER_IMPLEMENTATION // define this in only *one* .cc
// Optional. define TINYOBJLOADER_USE_MAPBOX_EARCUT gives robust trinagulation. Requires C++11
//#define TINYOBJLOADER_USE_MAPBOX_EARCUT
#include "tiny_obj_loader.h"


std::string inputfile = "cornell_box.obj";
tinyobj::ObjReaderConfig reader_config;
reader_config.mtl_search_path = "./"; // Path to material files

tinyobj::ObjReader reader;

if (!reader.ParseFromFile(inputfile, reader_config)) {
  if (!reader.Error().empty()) {
      std::cerr << "TinyObjReader: " << reader.Error();
  }
  exit(1);
}

if (!reader.Warning().empty()) {
  std::cout << "TinyObjReader: " << reader.Warning();
}

auto& attrib = reader.GetAttrib();
auto& shapes = reader.GetShapes();
auto& materials = reader.GetMaterials();

// Loop over shapes
for (size_t s = 0; s < shapes.size(); s++) {
  // Loop over faces(polygon)
  size_t index_offset = 0;
  for (size_t f = 0; f < shapes[s].mesh.num_face_vertices.size(); f++) {
    size_t fv = size_t(shapes[s].mesh.num_face_vertices[f]);

    // Loop over vertices in the face.
    for (size_t v = 0; v < fv; v++) {
      // access to vertex
      tinyobj::index_t idx = shapes[s].mesh.indices[index_offset + v];
      tinyobj::real_t vx = attrib.vertices[3*size_t(idx.vertex_index)+0];
      tinyobj::real_t vy = attrib.vertices[3*size_t(idx.vertex_index)+1];
      tinyobj::real_t vz = attrib.vertices[3*size_t(idx.vertex_index)+2];

      // Check if `normal_index` is zero or positive. negative = no normal data
      if (idx.normal_index >= 0) {
        tinyobj::real_t nx = attrib.normals[3*size_t(idx.normal_index)+0];
        tinyobj::real_t ny = attrib.normals[3*size_t(idx.normal_index)+1];
        tinyobj::real_t nz = attrib.normals[3*size_t(idx.normal_index)+2];
      }

      // Check if `texcoord_index` is zero or positive. negative = no texcoord data
      if (idx.texcoord_index >= 0) {
        tinyobj::real_t tx = attrib.texcoords[2*size_t(idx.texcoord_index)+0];
        tinyobj::real_t ty = attrib.texcoords[2*size_t(idx.texcoord_index)+1];
      }

      // Optional: vertex colors
      // tinyobj::real_t red   = attrib.colors[3*size_t(idx.vertex_index)+0];
      // tinyobj::real_t green = attrib.colors[3*size_t(idx.vertex_index)+1];
      // tinyobj::real_t blue  = attrib.colors[3*size_t(idx.vertex_index)+2];
    }
    index_offset += fv;

    // per-face material
    shapes[s].mesh.material_ids[f];
  }
}

Optimized loader

Optimized multi-threaded .obj loader is available at experimental/ directory. If you want absolute performance to load .obj data, this optimized loader will fit your purpose. Note that the optimized loader uses C++11 thread and it does less error checks but may work most .obj data.

Here is some benchmark result. Time are measured on MacBook 12(Early 2016, Core m5 1.2GHz).

  • Rungholt scene(6M triangles)
    • old version(v0.9.x): 15500 msecs.
    • baseline(v1.0.x): 6800 msecs(2.3x faster than old version)
    • optimised: 1500 msecs(10x faster than old version, 4.5x faster than baseline)

Python binding

$ python -m pip install tinyobjloader

See python/sample.py for example use of Python binding of tinyobjloader.

CI + PyPI upload

cibuildwheels + twine upload for each git tagging event is handled in Github Actions and Cirrus CI(arm builds).

How to bump version(For developer)

  • Bump version in CMakeLists.txt
  • Commit and push release. Confirm C.I. build is OK.
  • Create tag starting with v(e.g. v2.1.0)
  • git push --tags
    • version settings is automatically handled in python binding through setuptools_scm.
    • cibuildwheels + pypi upload(through twine) will be automatically triggered in Github Actions + Cirrus CI.

Tests

Unit tests are provided in tests directory. See tests/README.md for details.

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

tinyobjloader-2.0.0rc11.tar.gz (996.6 kB view details)

Uploaded Source

Built Distributions

tinyobjloader-2.0.0rc11-cp312-cp312-win_arm64.whl (144.0 kB view details)

Uploaded CPython 3.12 Windows ARM64

tinyobjloader-2.0.0rc11-cp312-cp312-win_amd64.whl (149.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

tinyobjloader-2.0.0rc11-cp312-cp312-win32.whl (132.5 kB view details)

Uploaded CPython 3.12 Windows x86

tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_x86_64.whl (738.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_i686.whl (807.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_aarch64.whl (720.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (248.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc11-cp312-cp312-macosx_11_0_arm64.whl (170.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc11-cp312-cp312-macosx_10_9_x86_64.whl (181.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc11-cp312-cp312-macosx_10_9_universal2.whl (338.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

tinyobjloader-2.0.0rc11-cp311-cp311-win_arm64.whl (148.2 kB view details)

Uploaded CPython 3.11 Windows ARM64

tinyobjloader-2.0.0rc11-cp311-cp311-win_amd64.whl (150.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

tinyobjloader-2.0.0rc11-cp311-cp311-win32.whl (133.6 kB view details)

Uploaded CPython 3.11 Windows x86

tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_x86_64.whl (738.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_i686.whl (808.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_aarch64.whl (721.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (248.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc11-cp311-cp311-macosx_11_0_arm64.whl (172.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc11-cp311-cp311-macosx_10_9_x86_64.whl (182.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc11-cp311-cp311-macosx_10_9_universal2.whl (340.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

tinyobjloader-2.0.0rc11-cp310-cp310-win_arm64.whl (147.4 kB view details)

Uploaded CPython 3.10 Windows ARM64

tinyobjloader-2.0.0rc11-cp310-cp310-win_amd64.whl (149.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

tinyobjloader-2.0.0rc11-cp310-cp310-win32.whl (132.7 kB view details)

Uploaded CPython 3.10 Windows x86

tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_x86_64.whl (737.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_i686.whl (807.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_aarch64.whl (720.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (247.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (225.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc11-cp310-cp310-macosx_11_0_arm64.whl (171.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc11-cp310-cp310-macosx_10_9_x86_64.whl (180.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc11-cp310-cp310-macosx_10_9_universal2.whl (338.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

tinyobjloader-2.0.0rc11-cp39-cp39-win_arm64.whl (144.0 kB view details)

Uploaded CPython 3.9 Windows ARM64

tinyobjloader-2.0.0rc11-cp39-cp39-win_amd64.whl (149.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

tinyobjloader-2.0.0rc11-cp39-cp39-win32.whl (132.7 kB view details)

Uploaded CPython 3.9 Windows x86

tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_x86_64.whl (737.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_i686.whl (807.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_aarch64.whl (720.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (247.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (225.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc11-cp39-cp39-macosx_11_0_arm64.whl (171.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc11-cp39-cp39-macosx_10_9_x86_64.whl (181.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc11-cp39-cp39-macosx_10_9_universal2.whl (338.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

tinyobjloader-2.0.0rc11-cp38-cp38-win_amd64.whl (148.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

tinyobjloader-2.0.0rc11-cp38-cp38-win32.whl (132.6 kB view details)

Uploaded CPython 3.8 Windows x86

tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_x86_64.whl (737.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_i686.whl (807.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_aarch64.whl (720.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (247.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc11-cp38-cp38-macosx_11_0_arm64.whl (171.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc11-cp38-cp38-macosx_10_9_x86_64.whl (180.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc11-cp38-cp38-macosx_10_9_universal2.whl (338.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

tinyobjloader-2.0.0rc11-cp37-cp37m-win_amd64.whl (149.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

tinyobjloader-2.0.0rc11-cp37-cp37m-win32.whl (133.9 kB view details)

Uploaded CPython 3.7m Windows x86

tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_x86_64.whl (741.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_i686.whl (809.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_aarch64.whl (724.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (248.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (225.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc11-cp37-cp37m-macosx_10_9_x86_64.whl (179.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

tinyobjloader-2.0.0rc11-cp36-cp36m-win_amd64.whl (147.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

tinyobjloader-2.0.0rc11-cp36-cp36m-win32.whl (131.2 kB view details)

Uploaded CPython 3.6m Windows x86

tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_x86_64.whl (736.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_i686.whl (805.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_aarch64.whl (720.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (243.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (221.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc11-cp36-cp36m-macosx_10_9_x86_64.whl (175.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file tinyobjloader-2.0.0rc11.tar.gz.

File metadata

  • Download URL: tinyobjloader-2.0.0rc11.tar.gz
  • Upload date:
  • Size: 996.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for tinyobjloader-2.0.0rc11.tar.gz
Algorithm Hash digest
SHA256 0b490484957eaced4e17912ba022f35771b1cb34eb4556272d2cdb4b3333f090
MD5 a6b92b80d8152e34d9eaee1f384f2100
BLAKE2b-256 82cfae4f6d9ed00f01f922af93e251bdcf03c8f07a4c5f85b3971994c23806d6

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d58d9acf5430caaa5121f838d700cd1158c94ce4775545d44a44d138c033b26d
MD5 e95947e45fc8a1a409249402b52e9191
BLAKE2b-256 c6591527d4f56a7f8c7a8da2b3a4cc9a7cfc10d84b9c0aef3b37ebafccea9789

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8f8e36ee89828682ac880bee4de8aa32a31a4dd06f938f05c48c2d58d99453d
MD5 383bb51885b532de10566cc7822873a6
BLAKE2b-256 c2196a159e85349068caf3a9a59e301d9a3ed3186b07d941c017ad079df1d9aa

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8521c71e06f0c896d85c8e7fcb505acc085e8e00fedcd3d1fd42af87c0817c0
MD5 7153d16f7851ef74937aac9245acbdfc
BLAKE2b-256 3bd9815e36d0ef2b9a50eb960c4ec7520dc6f835a457c6361f3776c67f964b29

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c064878673dd0228b75cb21d7ea8832d88bc01a1c581f4b5c8a107c6ce89cf2
MD5 6949818318c2fda00ccf9daec55d18c0
BLAKE2b-256 1a2ae57d5848dcaf90edf6deab243c2926c0e885be746c56ac1187e89e8d1d53

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9c38273861e6951f99b1dd73035aba21a99b38eda27bb9415a9c04946872d4a4
MD5 90bab221991f816459259373a1044c99
BLAKE2b-256 427bf752957eeceaaa50933f15de7e3b688e40704e7f78778d3015b6f6de9b22

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75dc420ea8ec30550bcac0bc10dc608b8ef8e63372e3bd2d086d0b4d5266b360
MD5 621e36fc670dfb51ff636ad7c8284289
BLAKE2b-256 f24d0b9952db565d4eb10a42fa106b39492f6da3ceb28454da81d37dfa5b9047

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3fa80211fcb8474d27c4246efe30c9a8ba49c217da06a6233fe5a6b20052a5ef
MD5 12d4cbb726b4b4904300d5ee549446be
BLAKE2b-256 d32a25adeeb99291238929e66465e82af02d19c868e5894a76ea1665e8d84aab

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f8802e718a3cadbe02a2c94110b6e6b30833450ea7576b4c4eafe8868cb0a4a6
MD5 4dc6041924ac31d6dc8c90ed0fd23531
BLAKE2b-256 f7ff3a8eab50267a4c9845629fc450c85a2f9eede33420456f8af753840c17aa

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5467a26fafe1f4bb0c0f753d5881445c6088fed917e2b66fff800b011e607dee
MD5 1a836f78be2f0e2df1053e02bf320c20
BLAKE2b-256 be5146969dc2c2be9cfe33c72a4f66d44d45019c007658fd6be41c128e7dd5ea

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 38716064ddefdd10d5ae8ef8628cc746d184f62543547b29cf0b61ace4cf1165
MD5 2d6c5306610b9932f9f84c9357185e5b
BLAKE2b-256 4c212ed65234d3b2cdfb59c4078ebb63f9301052f8e5956cf7b4eb1a63b2a578

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc98f3d6f32607f6ab631b1c2adb390131f510bc0892f3d7fa736e00e4fe2cdd
MD5 0788ec86cc18f172c45c80e4976bca30
BLAKE2b-256 8e5b488833a2b0e3fd7bdbc65bba17359367bd3283de017cbed4e35775bf2cb0

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3a88755b802265b58622bf7b8fdc686208422c8cd0a4d35b1ae152537cb89ea
MD5 ab11c779e4940d6c37c7c983040064c0
BLAKE2b-256 e2fc6058181b8aeedbb7347af45fd079ad6ee3e31eaf9e0bd1b8c19628074e18

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 001f29535cb27e0c1cfcc52185704a8d242a83e86cc0d057de0ffb242e5b1029
MD5 9d13fff0f701b2eb0940b11affeef090
BLAKE2b-256 816525755ab78298002c112222d7b919cce16460beba8c2830f4fd12ad35253f

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8acf56a54613ad3def6f7f718e52b6b3f4d5c2f335c63f6762e6e7c875424bc
MD5 19ec488e56e5f8710d46416b66340cf8
BLAKE2b-256 988c09c98d5fc7a95304c91043b3ba0e03fe8e715ae56b08053744d801a5119f

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4364aff0a14692fd726462afc520c85b283e9b02b558293ccaf6e4d38970a903
MD5 7bb280e9e3cfae924c43f8a2db16a1de
BLAKE2b-256 ff6b0b7b9d18e0b24676d1d8dad4eb6ca8ca1046507d2bec2f91d3e54368afe5

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d764a1a06b204061a569a6791f04920ee4ece650232c1611127e4508f73e679b
MD5 27994000f928b5d3c933b3805ab6d08e
BLAKE2b-256 5ee4e3c0d67bfd30d1393d3d4a5d1e9dd3f5c8c6669952d226078236f6b58d90

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7be9c1d6a500d4396e9fd9ed2ca6dd3541719aabfe1a850979e0fe933b628c24
MD5 ac129705ca2f3df86b67cedc425c8b0c
BLAKE2b-256 f6aad7496dd69e0a2e70a878913a8158a831982bf9b39d5267526e03aba42cf3

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f80a692fe34f15e2f594262b7a01227821236c55f55bc6d880d3fe0fa5c5ec72
MD5 a1748ce1fab4f5e2c83d281d12b52262
BLAKE2b-256 715a41409671f2662273f807364ed545e72dd4e0678733e468fba82c399b0181

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 29f5b0b34692e42fd6db7a68ec920eed8ed96cd27c2d0add515932fd3864bbd2
MD5 d54f921b0aa4aa2f2d870c057dfb99ee
BLAKE2b-256 904097485c822deda8e3269e65f1b8532041e8db9899e039bed59d7468076721

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7eddbd799199c3356d3cb1f709fbf825de300451261cdd5bdcd77409d5d1a605
MD5 3ea27726239c1dcdf95aab33c66cd487
BLAKE2b-256 c5c3fa4c7a3a24262daf11fcddfe4785b2278c97418716c45643bc00c360e0d8

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4ac4bb21edf4bf5214939fee6b0aa084d297c154c6b4352805b4b27b7f362aeb
MD5 ace6a4b45b095717edc8aa26c47feb3f
BLAKE2b-256 28ec1a783dac4883705aa6498e7ce97c248b81cfcc23620f51ac7e1d329e5c92

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b387b3e90f7b657b8f1da6d677585853f72f5f34929bbb1afc8b73bb840675f4
MD5 696fe5567a8fc23ee31e78225d305815
BLAKE2b-256 500307d8c8f544d959628d97cd454bc80fd76d9c32a407e7cc3a7e85d114a95f

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08d66c176f7076e09c29061cb72ece6397b33a5c38258b8f959b7bf4fc6aa4b6
MD5 ffe10d763db555d2ebcef979027afc93
BLAKE2b-256 17cbfcd9abfbef8e68a6f5db3178a87cdd618a9927873a04c3b30ed4f8ec7b87

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0491d4f30de18177b728c5dbc9e80f9adbbd5eb920fcf2b4e31427f71f93dc90
MD5 789a56d8371144b1ce0fdab44dc91b24
BLAKE2b-256 03ada54ebdf04d452c4f091bbb3e5838f71732cbf3c7c2a78688aa931a823a47

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc8dc48044296269b86a4bef4a329fe2cdfd4cc831a14772283adef9add8a015
MD5 01fa5bf153a5f4ba1a705757c3b2debb
BLAKE2b-256 3a5d20e9f4af0727e8f2ad6388abbc45b80001ed0878a3718d8135c18d47d72f

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11eab05107910f0a391ae376faa3272f998fe540103c0f0693db888a7065f8f0
MD5 77c31d7f95726b33cf79a393e7732f7c
BLAKE2b-256 10c570d4c20533ac0ccc45e7a2f7fb6310c61b12e80fc084739d0ad55e843f00

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 685b280c93b441714a27c3d8463bef10461e0d58e978619a9500fd1984d820bd
MD5 45f1bbc215d25b50d53d1740472411bb
BLAKE2b-256 692e62ef6fc12379cecf6644d4d15d796b38e5509a24b1d6c1e2856bc97f50ee

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f62559d123d5647af343fa5364c4013b9303ddd584bd697bdf551ef5beed6718
MD5 af077fb1cb159aeea0dadf0d4240769c
BLAKE2b-256 eca9caebac03983747d5112c525937370a089a889bda26b303065eb94cac4d42

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9b3b117054d609a3e4bd2cc1b93bb33d41b8c839ad903f7f60e2eef330f994d4
MD5 38ac56d3c9da2e783465741007b6bbd6
BLAKE2b-256 944a1c4e1e170593ef7e6ccd87d41ed81911c3cf4662ab370bad677d23d1c54a

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0d1f525c4fb795e8d6f24df494ae040bb6c8f0bc5d15b30ed22515f9051158e
MD5 614512b240392b3eb7fc3e28317df5ee
BLAKE2b-256 d164db9f7e049a2f2b0a8526e44df786e5c751c2b174b751158132875c9ac973

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1070dc005f15e34943b6e58d9cb0d5a0a596397a6f211d770dddf3fe52bdad0a
MD5 a8d8f9d80b53d82b0690ee58565853ec
BLAKE2b-256 b358f9edf9692877a980a12b70fff480856a875bd21105f4e8b22f3fc043ad1e

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b2208adcc0e689f70c9cca007c747cbccdf5085462ee7d654911fe3afacd0f5b
MD5 2b1daf3faa2f4774f7e5aa4032ce399a
BLAKE2b-256 98be570d44cff3879ec233444943298976a85e2271d614d71491f7f1377ce70c

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 429400df884c3df199d33998d8f12563aa2195ed06f25750fc6c14e462fba384
MD5 7129d551ea4e73b31abebddf5353750c
BLAKE2b-256 5440de5df661ddea17ba2635fe12c57d0a4b9b50e2d78ef3237e8a960d4c5ff4

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ef9929730242da0bc409c1fb6e95dd27eefc6b6badcf0ddc176d6e780ce16c43
MD5 41d5180612621ee9ae1c76e7bc4c49ca
BLAKE2b-256 11959e1e264f90077a5b81c6e1098f9825386fab28bbcc462a47621e9df6e754

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f9807b816645d5e13b05b92329e9afe67c77153fdd053f919337f34c2419c75
MD5 0016d0403fec9d7be4d5bdf7b7242106
BLAKE2b-256 6f6a791e1bbfcadeea47e91bcc873cd58b4a8c6f739afb89c8326dd6fb007bec

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8a73f698f908c7124b4c3e7423bc5a9825b0a7fb29dc906f79de83090e973e5
MD5 a930b6ea08194fbbff16c35056446261
BLAKE2b-256 60ed0ca89809dc315ac84b09cc12c831a3509272d072f75146ce164ab35cb8fd

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 916e7f284cc632dd8ccb2343f49e155b764c74c2ccb29ebca0f50bdbd9482d3b
MD5 61ea2f701a78b218da636610e7d25fd9
BLAKE2b-256 d1f62173c145778116ab4a867b29d0d2a67892aacc0e374da79db9cd3d7c7596

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a3b8cfcd4834003c853b2a3e0c57fdca38f744319f9188164203ce346b1b25
MD5 01aaf619561106b01c408115bf20b373
BLAKE2b-256 2f9cbef8a1a2c93a02cf7d45bfb972edeefd91a5778ddd615fe311dab7794654

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7a8bfdba2dc8323ee7a83552d6f0b6b3f01fc0fe8a668c0a4805dc67d99e10a
MD5 cb5a7bd21bd08be2ece15e1e520f94a4
BLAKE2b-256 2954861f6b1865c61ffd2e7ca255d083ce4a816f13ce575d061140fc6e163431

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 90e53d0ca0d317682bcfcbdf25f4b54c9721d98b5f2b5cc37b1764beb295233d
MD5 9ff25eb16d4e6082c9f0865e70786fa4
BLAKE2b-256 17e965aca3b9ddde13cfc697b4593c6e268757a9ba12c8a0e7a429efc69e8817

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 da1c03a81d4b6e9e196c420fb0217b683a8c6476e84000237035c49c29d7ad59
MD5 e3e2bf32abbfe9b446755e3e1e012bec
BLAKE2b-256 7db107f359e432a77da68dc0e295435afb538caa206b56d583067c97a36344d9

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 43b00f7abd1109bf4990da37b0a18a953d2847421ad13862499e77f13e863258
MD5 35229bbf584520a6ab931fc5281bf5b7
BLAKE2b-256 75fa8533bcbf4c2e1c9b68ae5a22302be78d63e0129649ffac65b3a9b460adf7

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d214da09cabac62ebc4276adb2a8e17191f45a9a806810b76cd9aac821f5f752
MD5 75e540979567f2e754c466c54fb8c6c8
BLAKE2b-256 fb2c3631c775788396f0eb221aab16a25942f2887eb6c5d7bb6bb68d3a447c53

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 86c7803b740095f29e0f48d7439831e0aa3b181d0b18fd2b232dfe1b836fd879
MD5 0e8513514d49be23598649f99d93ec23
BLAKE2b-256 a12ca87aa7399bbf7ae43d7d04c010d3435e70d6c431e47612e2dddf211fc453

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7757c46c114a50b7264ef506b2cc1fae6bd42473ae42e7e7f506233c894ef2a7
MD5 201b73e55747a351aeebc1402b20965b
BLAKE2b-256 d0753df1a2803d5675031faf3e0c85b53fc858a9f4ceaeeac0ebf65322e09579

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5b5591476a5253e5ae0523a803ce07cb232a60229094307623db5157887f64e3
MD5 04e79b1244d5e28f05c07723dc95754a
BLAKE2b-256 214ee134aa769145ae200398c7e3bb31e3fb7bd1b4a035bd685c24cd35deb24e

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6611fe674ff597a78023416ead1c0b69cf6ce8d936c428152c7904d86f1717d
MD5 ac4309cb932424944c9a7092d358edc9
BLAKE2b-256 f28c4fc0a50a8e3259ec30cf888808bffc37677bec18849d98999b026bb75ee8

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f507a8f28f2c9c9631ad42f132008fbfb26eb51798ddf6c684dce52cdfa4b6e2
MD5 d4076b843905032211e788e195e2bcf2
BLAKE2b-256 23e26c25fefa15dcae4a06ba63c5a088c2eeb135a643cf6e638b7ed6e0cfe760

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b5691305ac8cb55962b290882961fb6133b7dcc2418445d267a57171f6d6b32
MD5 9af1ff2079de041312308e88264b212d
BLAKE2b-256 20294389de469a498b4cb4bfd817401ad86f0c5fa32de29b4375fef2418f61ea

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f881e9e7ca6d244e451ddfa7231371f37311c9eeb9d53c593b7864c1c4f2808b
MD5 02f7232dd7dbdc301340f16b8175661c
BLAKE2b-256 85d1288a85a3eb65c9e966c41cfd2b70c3867a43a2d6ddb42fd6f0395734e4b9

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa3eae560eb34b7c2704105808fcbf1f5c864338e4ccd6b36746e455176283e1
MD5 2ae4d76ec969339fb3582d122ec57143
BLAKE2b-256 542cc075286cb928566999b5c377df0bdd7f5804896bec87bda5f6861f9e8c50

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b77decbcd545458d5091a3f9c68fff289d494bf3c6ee6f651cf3e677590b08e2
MD5 c3ceae9c3a70d9aa89c78818f750021e
BLAKE2b-256 7272e2f32d4b3c3797e0a5920f320fd34a5d8df5f29aa060c9066466f5c48f13

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5bc18a8d7c8f84ece8532f2f877a390b73494e38cd3240d8a2adc119cc33bc07
MD5 b1971da4fe68180a5a57735c04c17706
BLAKE2b-256 ecfc51172220a3eb689dd6a840534d8639cb420a0deb04e8efb357c545c545a1

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dd8865360e06c888713b086d4f1af5bf68611258bfaa0648e18e09fefa13a0e3
MD5 02bb7c814f60ced978c0f7d74ebc1971
BLAKE2b-256 e5c26a0a84935ef895d482e6903974afeaf524a34f0a8d9182bdcb002ca16fd3

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b73f793ac91bcaf11aedbceec2509efba79da18882119f3df14d38ef29c90dc8
MD5 7ba87bf285c53b052632e8d136e7a386
BLAKE2b-256 7a0937c592d6d154f8684ffdc33a91f646ec3d821049ed88d1805d21e612ccdb

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 92f8a20761b9e6803e66ece56868a1900c4fcde8d70199c680b03c9af11dbc29
MD5 b7c330d6cf463e10774818c980458193
BLAKE2b-256 bfc5fbd43842769965588256c978283b8002c76b18ea27b6c55e7c0ca59c6f20

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6a52c6d5876ea600608ea6ddd59a18a6bce80336d599669489390cd26296c634
MD5 e84fe96794c4ce55147188ed053a9f40
BLAKE2b-256 cd56cf17dfc711584a8686519bb5ca21289446ee3643b646bf413cd4bca339e9

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60c3d8de5efd8690e6151dbc78b6751fad6d40ee21baf5e06d5e1fdb4f6abd0a
MD5 48ea60b904b2ef24764072070fe322bb
BLAKE2b-256 264c8c0aa0e1792af1afcaa03ff6f54a4358198e532892ea98fe5b6e3ac2a52d

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 981e8fa7d749863a2494b2ea229d3d2f96316ec0852a1465eafcd94146adfbd7
MD5 615b6ca7d0fb4587b8bf27d68b157be7
BLAKE2b-256 54bbe764d3340b39a6c15af9287370eb0a9c0a2e2f9e99f7aab048d144d2ccea

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8062f2ce3fa4c59a72a66aabe61d2093d09cb96414d6da4d6c8fb65e0bb31008
MD5 74420c5ac5ba89a9cbc64bc323d2cf5e
BLAKE2b-256 6c187026769baa61b304e3e25b467e133b49f7e75a49a2ede9a1164aebfe8179

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66be3d38b34fbc3504a85f2bb0137ccb368343c8a6140906b255a289547cac8c
MD5 7e513cd7497017a6d77edf39ec61accf
BLAKE2b-256 d3caab9b4cdde437649d6895e82fe502de7c1baae3cceec5c0420ff3f6a68764

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cddf5018f36a6641a6dd542d03391632a09b8854b87277da3ed1d39131f7723c
MD5 72ee6d6b5e4b3f9d0b9a0318c8bc058f
BLAKE2b-256 2474cd6bb301179a62878d75570d4a8ca59554708d9a4fc81dfacea42bf83386

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1a559c4cb2cd13a7a3d76b4ef782c259ae67b7e6617d8be05af24c7a86df7213
MD5 64adb99866a013ddf05e33fca172b2b9
BLAKE2b-256 ad1fc14d66acb53fdcbfea99cdbd7b35665a0388e38b2d6c1b93638b18d011fe

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5d457e6df3fe0c0beda93b263af8a497522b05e782a24e9c57a04cf1b5b8cd28
MD5 e0fd3c49651338f0e1631b8c5599d406
BLAKE2b-256 376f9987cea3ca6c9094d73088856de0e1e1637298fc09d44f7f480924e88d9e

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 413c2365bc22771dac17ea0319c27bc942e4cea4a491378ce907ae49fe952469
MD5 eb0a2fb9ed54f6506452d0278e6f3344
BLAKE2b-256 5800bcb271e9aaef7c8fd57b6bf456cf927bf6203ed935e33e7707d5a670f2e4

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d554fdaec51414658459456afe223fcaf438b7eefff45f2700d4a72c996b172
MD5 593c1105b1b304d4d16677c7b555ec9f
BLAKE2b-256 9c308341932338e2c05d9f0769b830483d4f3c1abd3c9b4609fea8f5682c0d4e

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0ceef470120851bde58eb895f64d97f51934bdf21a68f332fb618ed07a62720d
MD5 6f495ac7707766c18d6e315d2032c2b5
BLAKE2b-256 eeb4f22ed312d29c3bdb902f987d5a757bc72879ffe49e8b0695e2c5c3517cd3

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f79dc84b2e0e73a7a63803b074f3c84e0d4cfb5476c367515105dc876e1121e
MD5 0919149bf10df9066d2e986adb3d51a6
BLAKE2b-256 1a0125244e1c776bd181e649a5e10c72a8faf4820853f04d0b00eb0f9a5b6351

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa8efe22bb249f4c24b53551439c342528b1414c8969a28a18ce1500053aa115
MD5 9d7218469a96938e2de033d0af904de8
BLAKE2b-256 32c5fbf9cf5e0430b372d19dd16bfb1e2e56bf3f42bc4d100be88ad76a432295

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82fc73e8ab2727a748c93aa401db919b5dd9f182db55e0e87c9f830eeeb73450
MD5 d676e880117f4e5afd7d4f8039debce0
BLAKE2b-256 7a9caf6ea6c1947efa00e673329c5b39eb8d574141ca4d1d6d8a4ac9d7d58354

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc66a0f104e1e286ad5262ab4303ca796fd5be75e71aa55a609a00621d6e878f
MD5 5e2f07f6e7a9a5a442b0ad2da5f826c4
BLAKE2b-256 1ea173b9819aa57913de922d1ce0c3e88eb059a766d9651dc611f826b73be28f

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6dd39a0db0e64ef6c60c6ef13b5e5845708ec58e8d41e6fd0bc57e3279ee9961
MD5 de5e5141afb95662a9e01e7c406f4977
BLAKE2b-256 3eb3276f960be08fdc9cc138ae690854a0670a9f70d6e8668d9bc309389efdd8

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f751341cef40e8c61f541565175793d8f5fb7c57c60e4208b633c437ccb2dd46
MD5 854ff5d1e284a59749765eec39fe69ae
BLAKE2b-256 1698ea736b2714d101ae6c50d8c3a3abf2604680549712c79e86d9604a472be6

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2e3c7f0bb733f8e22db2867292247b96e831be0879fdc8c194105eb27eb3e35c
MD5 9fceef18cd8c86d74f74b71af4dd190d
BLAKE2b-256 2575cf165b805ba89754d8270599a4843f1c89a4e0f20373e0c3b06cfaaad4e3

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f4d276d7a29ad793f1096bcc94a4732d24e5850901aa5e1f36fe99ad9fc60bbb
MD5 0fa74c7a9ab7233e067f19a399f8638d
BLAKE2b-256 4cd7150aa87a0d5bf5110fc7647f6f2745031bc58fa6d508964275e49b35c29e

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d674d78f767e5bbc9c81f760487b8570cc6a15806094ae5676ec513c32ba093d
MD5 49dd0608084380a8a01b1a9dfeda6c45
BLAKE2b-256 6f6f2937c08db670f7a02fe86f55287d794c610c0be0bd22cb8ef8130b41a439

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3a9c47df2a94aa693e198143fc98308a2e76a0967ac040e2a9a1f417478394f3
MD5 fdf4206d12b0413ea2e13cfc072cb020
BLAKE2b-256 85d34877d606f23675f9de18b2c49ae2adc420df21f276c42406b4dfea128b49

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4bf76d612a5b7c7d61a09d339a53c657757256af8643dc2b44da572bd4cba71
MD5 f53bc8d78d2b6821d689a15a58fe31b9
BLAKE2b-256 40460047c2bee35cba7ed9484eb0cc4c1ced14e5c7da5522d8d6ff51078fba90

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e954c6335c23aa4ead122dbffec20d3da5f10bfcb4202b6ebf87028147220ab
MD5 43fcb01ae67cbe0827ecdcf59c824c8d
BLAKE2b-256 16080d638cb5d46463b9f7d035cc837f160f66156b1e7e8608ff7ad15eef7603

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccf831e6e81eb8d219df6d4baaee455e8b92fc379db6201d3ecadab0879fe1e2
MD5 a26d4c7468b56484a204f27dd8ddd5a6
BLAKE2b-256 ab97116569b431eb0fb8d9be9dff3b389e922ff86cbaaa590d73e639d3443ce1

See more details on using hashes here.

Provenance

File details

Details for the file tinyobjloader-2.0.0rc11-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc11-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01e530975be6b800d0d246ce35b3bc40191b6a21d016d34c9113a2ece90ad9ea
MD5 41d341e27b97c2cda4b43c3477cad3cd
BLAKE2b-256 5f2603dee580d172a8fb52f1799f0225a57a47e98f3e36a8c67efc71146a87db

See more details on using hashes here.

Provenance

Supported by

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