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)

  • Apply black to python files(python/sample.py)
  • 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.0rc13.tar.gz (997.8 kB view details)

Uploaded Source

Built Distributions

tinyobjloader-2.0.0rc13-cp312-cp312-win_arm64.whl (149.3 kB view details)

Uploaded CPython 3.12 Windows ARM64

tinyobjloader-2.0.0rc13-cp312-cp312-win_amd64.whl (156.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

tinyobjloader-2.0.0rc13-cp312-cp312-win32.whl (138.3 kB view details)

Uploaded CPython 3.12 Windows x86

tinyobjloader-2.0.0rc13-cp312-cp312-musllinux_1_1_x86_64.whl (747.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc13-cp312-cp312-musllinux_1_1_i686.whl (815.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc13-cp312-cp312-musllinux_1_1_aarch64.whl (727.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (257.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc13-cp312-cp312-macosx_11_0_arm64.whl (183.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc13-cp312-cp312-macosx_10_9_x86_64.whl (195.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc13-cp312-cp312-macosx_10_9_universal2.whl (364.7 kB view details)

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

tinyobjloader-2.0.0rc13-cp311-cp311-win_arm64.whl (156.6 kB view details)

Uploaded CPython 3.11 Windows ARM64

tinyobjloader-2.0.0rc13-cp311-cp311-win_amd64.whl (157.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

tinyobjloader-2.0.0rc13-cp311-cp311-win32.whl (139.5 kB view details)

Uploaded CPython 3.11 Windows x86

tinyobjloader-2.0.0rc13-cp311-cp311-musllinux_1_1_x86_64.whl (749.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc13-cp311-cp311-musllinux_1_1_i686.whl (816.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc13-cp311-cp311-musllinux_1_1_aarch64.whl (729.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (257.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc13-cp311-cp311-macosx_11_0_arm64.whl (185.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc13-cp311-cp311-macosx_10_9_x86_64.whl (195.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc13-cp311-cp311-macosx_10_9_universal2.whl (366.5 kB view details)

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

tinyobjloader-2.0.0rc13-cp310-cp310-win_arm64.whl (155.8 kB view details)

Uploaded CPython 3.10 Windows ARM64

tinyobjloader-2.0.0rc13-cp310-cp310-win_amd64.whl (156.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

tinyobjloader-2.0.0rc13-cp310-cp310-win32.whl (138.5 kB view details)

Uploaded CPython 3.10 Windows x86

tinyobjloader-2.0.0rc13-cp310-cp310-musllinux_1_1_x86_64.whl (747.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc13-cp310-cp310-musllinux_1_1_i686.whl (815.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc13-cp310-cp310-musllinux_1_1_aarch64.whl (729.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (256.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc13-cp310-cp310-macosx_11_0_arm64.whl (184.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc13-cp310-cp310-macosx_10_9_x86_64.whl (193.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc13-cp310-cp310-macosx_10_9_universal2.whl (363.9 kB view details)

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

tinyobjloader-2.0.0rc13-cp39-cp39-win_arm64.whl (149.9 kB view details)

Uploaded CPython 3.9 Windows ARM64

tinyobjloader-2.0.0rc13-cp39-cp39-win_amd64.whl (156.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

tinyobjloader-2.0.0rc13-cp39-cp39-win32.whl (138.4 kB view details)

Uploaded CPython 3.9 Windows x86

tinyobjloader-2.0.0rc13-cp39-cp39-musllinux_1_1_x86_64.whl (747.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc13-cp39-cp39-musllinux_1_1_i686.whl (815.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc13-cp39-cp39-musllinux_1_1_aarch64.whl (729.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (257.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc13-cp39-cp39-macosx_11_0_arm64.whl (184.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc13-cp39-cp39-macosx_10_9_x86_64.whl (194.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc13-cp39-cp39-macosx_10_9_universal2.whl (364.3 kB view details)

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

tinyobjloader-2.0.0rc13-cp38-cp38-win_amd64.whl (155.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

tinyobjloader-2.0.0rc13-cp38-cp38-win32.whl (138.3 kB view details)

Uploaded CPython 3.8 Windows x86

tinyobjloader-2.0.0rc13-cp38-cp38-musllinux_1_1_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

tinyobjloader-2.0.0rc13-cp38-cp38-musllinux_1_1_i686.whl (814.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc13-cp38-cp38-musllinux_1_1_aarch64.whl (728.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

tinyobjloader-2.0.0rc13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (256.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc13-cp38-cp38-macosx_11_0_arm64.whl (184.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

tinyobjloader-2.0.0rc13-cp38-cp38-macosx_10_9_x86_64.whl (193.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

tinyobjloader-2.0.0rc13-cp38-cp38-macosx_10_9_universal2.whl (363.6 kB view details)

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

tinyobjloader-2.0.0rc13-cp37-cp37m-win_amd64.whl (155.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

tinyobjloader-2.0.0rc13-cp37-cp37m-win32.whl (140.2 kB view details)

Uploaded CPython 3.7m Windows x86

tinyobjloader-2.0.0rc13-cp37-cp37m-musllinux_1_1_x86_64.whl (749.5 kB view details)

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

tinyobjloader-2.0.0rc13-cp37-cp37m-musllinux_1_1_i686.whl (816.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc13-cp37-cp37m-musllinux_1_1_aarch64.whl (731.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.4 kB view details)

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

tinyobjloader-2.0.0rc13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (257.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc13-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc13-cp37-cp37m-macosx_10_9_x86_64.whl (191.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

tinyobjloader-2.0.0rc13-cp36-cp36m-win_amd64.whl (154.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

tinyobjloader-2.0.0rc13-cp36-cp36m-win32.whl (139.0 kB view details)

Uploaded CPython 3.6m Windows x86

tinyobjloader-2.0.0rc13-cp36-cp36m-musllinux_1_1_x86_64.whl (744.5 kB view details)

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

tinyobjloader-2.0.0rc13-cp36-cp36m-musllinux_1_1_i686.whl (811.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

tinyobjloader-2.0.0rc13-cp36-cp36m-musllinux_1_1_aarch64.whl (726.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

tinyobjloader-2.0.0rc13-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (237.4 kB view details)

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

tinyobjloader-2.0.0rc13-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (252.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

tinyobjloader-2.0.0rc13-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (229.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

tinyobjloader-2.0.0rc13-cp36-cp36m-macosx_10_9_x86_64.whl (186.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: tinyobjloader-2.0.0rc13.tar.gz
  • Upload date:
  • Size: 997.8 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.0rc13.tar.gz
Algorithm Hash digest
SHA256 409cd5f2a02d0393fc30b9aed8a440c7f68db59f650033045c2ef8b04b7ac8ea
MD5 feebe423112aef58c2b32031fe369da8
BLAKE2b-256 393f1165a0614a93d8b9bc1b69feaeb03abafdfe2ceeca6e1dbc475e3119bfc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5805881548104e7cebe76e7e68d6ea29c9b5ff40a8a637eedbbcfac87843b176
MD5 978bf63ac673bbc05483fcb811833c6e
BLAKE2b-256 4e7d202afe0b337f228dc42569b3ea00f61d65c8ef5525e03fb47f897f10a823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e131c90e31d06c99a826d3494e8e142fe727edf45c443cc5a699ec84feccddd9
MD5 e5f64549bdc4759b61db4488b4c3f7d7
BLAKE2b-256 61881456c517ccdadd3ff70de052b86925a419a18585c9251d1aaefc6cb5c4c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 138ca56084b6c9d3c317f33a7bb5bb77713723c0d40b9f2f44a35ea92c5294a7
MD5 e7fdbd974e87dcfdec478a59e584ff19
BLAKE2b-256 d354475e483dd409889ef897d51b16d4d71b192ed3a9edbdc9a979701afc8e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acf7904a4c7bf3a9b4679a0171a8d30a84dd418de7e1ac99b4e617488a4e64dd
MD5 93853b618b0f0f76fb4393dea57fdb56
BLAKE2b-256 d0cd84bbdc82617b91463083e30a1687619b26152075ad6f8e1a876191414af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 66d36b1a45bed07556b2e9c0375b05b991771fcf1bc1fca79be9517400130730
MD5 7ca3e581f5f9d1e1f6c05bf657b4448c
BLAKE2b-256 2f921816686a00a068c089453cecd8cc7455b9653e74d09346c468e3db61eafd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 044c3deb2603b6df021d642a99737ffcf15340e23204c2335c5c380003daa221
MD5 49ca20bfc8659a6df1bc944110e3b507
BLAKE2b-256 a61bfd7c5c7f2715ab946d2404f251156569970f1f3e8fecc4cfe29f5389cc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ec77d26d7b4877e3a82cd2d594c1f4ae5283842b55f360679f9ab2c1bfceb0ae
MD5 08507b0b0c261a8a5184a1aa12389f2a
BLAKE2b-256 74899e1954df4119eae076941687014fbcb7bb33f27a659b7f546d32717984a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b443659b8b864414f326a5de5c774ba98d90257963cd6eecdb956c687ebb39a
MD5 ea60b77f110a758379a9973f5adef220
BLAKE2b-256 a78a2143ced6a23fdcd1b2e2c712c0eb203e453676c0938b5562910e9602da43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b2db221fb55606bd7f1465960d0e1fbd5b3e4058822babc739847e5e9bd33824
MD5 8aeeb30feedbb851b50e1363e0025494
BLAKE2b-256 b3a51140c133fe7ecc362234b8c41d38d4517c84ce6073d22efab03568511b44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b3a90068c596667ee98feeb66e02eddeb479ad2d0cdff5a6adc0f7a2ff987c8e
MD5 d1cfe92e2622b3725022dd44f224af9c
BLAKE2b-256 6ba4f3e3b66f841596655ac7e5d971284bd46718bc928c299eb2140393b4e0d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81433d5828bfe5c88a1dabf1185a6e7e73dcde15b66c5a65bcce51340fd444b7
MD5 2feb6b7bd023b0f70c31c4c3d9cfd74f
BLAKE2b-256 d80a7a3342d274419e05a40f033828e6a9e883a661a60edfeb8db279950951e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13ed0a0b8993f2ef8074f990565b14e7409494238ca56ff45ac711932c1e7f67
MD5 49ad56ced28f23ea401e2716e9cbd7c5
BLAKE2b-256 b29952b235ce8bc47f499e10e3d1571f35541e8360c3d2b5db72c78570624649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be84b0f4015027e5d44e9474995d992ef3b45e026d86bdc60cedfe8cff123959
MD5 8caf534a9c1344d45b40daca3f09f232
BLAKE2b-256 c6494e9a11a27c3bc682da4f9d8b7c96b0260d120c17c8674e2b2759ac30944f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efa02a09ed326976bad318e5fe00d514a4ecc1ec9885ad775fe1c9f7fa04cebb
MD5 d7d0ceef78b7037705faca7b3e8ce2fc
BLAKE2b-256 b4cfaa8e48ee5909cf12ec3e9b26ee4a9a8c430f1ba400e5c0b09374cf452b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f251208894efc931d685121b8515fe30c5bf6b44e0770e0776a5a574a38230c
MD5 24c85724152703b4f14e0025e71b7fda
BLAKE2b-256 fc78e28097611237fbce293164ecdb08d57cad5019e2a5f3f7eb2b5290ccf760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f87ddfb29fa80639f10f6db8878a328dd7cdc15fb4dcc50b21d00a791f3e6400
MD5 200d8916180e0471588a8d315f91a7c3
BLAKE2b-256 95ab9357da1b5ca329b764ecfb2f34661c26e9cad49d1804abbec02c11985f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d066d905dc920599855c1e719b7cc87c19af25e82801683d4c8d7a724c46531d
MD5 e7f685e41f03fdeb09c60c62e975721b
BLAKE2b-256 6b6d943af95ee1c2e6048a260e04879d69c4843d1afc0b8ebf36a7d095498daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d5458372d0db083ad92fb83ab298f8615766c40723127b1f0208c633c4d7fa90
MD5 88303c5aa0ea2c829d07a402f3983d31
BLAKE2b-256 48bf7bc5b353aa8162fa47e2cd5b0878cace0fd903a6e1e799807dc8eda96949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 37457b9f80246fae0f8a12feb6a0c1d39fab09520db8bb679742a6adb6e6b6ac
MD5 d7f91ba5dc5c625bd50fba239563e9b8
BLAKE2b-256 ca78f8e3a3203d5b517a4428a43541b9f7f0797d86288bb35c646fc4b6e3a257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d0bc1e8f1878888b584aaeadbb03ca155432e7c7fbbdf6a9bbe6f17c9ebd510
MD5 0242a0e0cdfe1cb743759bebb01201c1
BLAKE2b-256 64ba7a35f239e0563afe739fa2c417b4e8161b1fd27a0de50fdb92622dd63ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1754d4eb01a4cead9bb6f2e1fb967d1b328bcb781481b4aafcbba82179e25941
MD5 431942466522ce0d72002e1400c59fc6
BLAKE2b-256 36a69abf76d75003f1f937e0693f372fc0c1b5559c7b9dd251cb63d5e816e574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ba70cb51809d27bd5f3f3c1a39118b28a74f459ce2276f97b94caaf723e7477d
MD5 6353623585bf3b4fa21e84d55de3d1b9
BLAKE2b-256 a8e8e1fc1387fe4b70e967dcf377e64a56ea793e39c032361297c264dfd10833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 333986396b1c49bedac2cd9e1f4401819d9bea64b34bd220faffda1cd698da7e
MD5 7ae8aa44704d5114d9b1cd6b8d6d4276
BLAKE2b-256 b1bbbf7e8deb363a605f1b2c87b8ad57cf0d1289d55be7ac80d71a8e49c24f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4a280e92f8e0c3e1aa646218320943f60d41066beffdb19932e9c01d3c08050
MD5 bee75dfa6a471d1b0e76f560626e9181
BLAKE2b-256 93542ba7383b43873381ec12982f4a7247ac2238e5df77bf764735d0272de641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64f6097c32e6ab9ead2c884993efad9d66ab2bae08f40e01f540044c7a7c08d6
MD5 146f73aefb13cafc69cec076e7b43077
BLAKE2b-256 6046051f09d6e753f40b078eccbbe2e7d190981fd71a541724be4bab89cad721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22c82ab63e054eea824495d90f5b5cbdc5a47146dee50f815b341116d2707847
MD5 d44526829b8c4821d322d91a434fa2ea
BLAKE2b-256 d7d18077a80702f5d432a8908fb996f63c14be2c759f70fb7fb50672b49dd13a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43632e318765eb5ede950e7a57e7b5e3903ad059d8bb7b0f3467d27f225fa9af
MD5 90b8bd43414f35041a3a105057c08025
BLAKE2b-256 eb4597f393f44b645770159913f3956bec75730bd81380a3d25a0c4fe6cf3f9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bcb7f1114dea2c13e5f8506da00a0ae0b0aa5940c6766f7c390ce5ac992c96f2
MD5 bd6844d64fa90f416f3858f38f612c4f
BLAKE2b-256 5b0bbbbf16cf148bd14ad89f45ccee77da37fdb156d83e6e747a95b912765c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cc994669e6ef7130ac000404e59e2389ee5652ad5321be347fe362405f711faf
MD5 f70c9ac43bd1b391950197ba773111a2
BLAKE2b-256 43e9fb5bb2e4ac40dd8fc8fb347a0caea72712fbcad458830c66695c1e740372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 470028d15bd7c06e5a9cd8d4df194843e8bc91df42a17015b1020cb074d470ec
MD5 e4805244fb14dd24ed4c4db2eb8c5b59
BLAKE2b-256 67115d78cbdcfbe3e066b59fe941a181791bf5c9d7eecb975bff2b4387b76633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 256df5a0c6160fca95dc455ba39acdfb05f05033bd4ab9a2cf5e6605350e11b9
MD5 b04416484359d98d7c198ae7cf6a16ed
BLAKE2b-256 d55ad3c919e63cba140b01d6781e1d647b90132e55d41cd1a358c194176bd7ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3cf9cf580d4f84b207bec169980491fde264494e7f97063d8fafd41634402606
MD5 9301cef48b3c5dafa833a834b4181c91
BLAKE2b-256 d793e04fe72ca631c8caaac0b8aff59726b39a6dabf39479caec01b2f70fb1fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c0f8f33705284a0873dfe79ef1c220ef102523c3c9361079debbea3d4edf989a
MD5 59db7105b5a2727299db1307693218ce
BLAKE2b-256 653b20440d4d5bdc35c1c4a687ca0ee4c1af78a47b9d3e382896f60ce5182bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5555489992515bc973b4d735d0247320834bf726e058d6d86e8984e535dc98c4
MD5 6f7e64efd29f0a501319293310fc0810
BLAKE2b-256 15910190d858b9980306d42b03dc3352e59af0bc0f0b9da10a177caa3920913a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 080961a82e62739658901d766dc1359c6340ce27813753499549362fc91a33b7
MD5 983a70c8bc7d3e421100ca61e6ce267f
BLAKE2b-256 a9258909eb55553da989486b211a954e82be43d68850361bf2318ca8e28538e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c89db8f9646ce7ec4ddfe41b238f8e8ab2c8fe9b8aacaaef59dcc65cea16a4f
MD5 351feee780db58efd145994bbb50703c
BLAKE2b-256 b5628196560b911c51c7f950af1b75cad54219449bb4315629b25508aedf248e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44819cf5d8174fb038b4fc507a324a1bc1126a945982a8114f5f8d636f0288d8
MD5 fad1a6d5a6e0d2f45f9f99934f6d5a20
BLAKE2b-256 e81c4f85ef4948470d0e78295007040e0c25140dd3d877b956ff2dcb5d2a684e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e64e71afae1c006c15a27dcb5d504f72cb6866c7ded03a3ee65bc57da6be3625
MD5 76c8a5b19f5ddbfa75a7a3e3651179bc
BLAKE2b-256 10959e1c8a558670e10387a89e4455e07ae641275c856b6cd812fc8993d57c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30cee637c75b2fd5f81f6911012a9149eac1d868018cba0ae237dba73f7f45f1
MD5 912f9d16e9c1fd3ea2d3fa80f1ee6180
BLAKE2b-256 d118f23470e23416c69315b2fc45b1425db03fb2869a9ae4196d7d0ccb280cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f8191da641e1fe2e474120f3e24c57adf3f0ccb3018e8dd1fe7edb40a87d2a41
MD5 142a627449613df0df6cd06093ed6030
BLAKE2b-256 83d1f5e3cc7bce5fa792dba09a2c9f17688ea60f7765bfb1992d20b0c3c2fd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 9448968965c0f43fce1eb25fbcc17545107cc4ef0691165249ba398fbda7c956
MD5 fdcb78e2e99c33450975932882c60f7f
BLAKE2b-256 a4bda9da3e982a63bc4d5a345f832dfb971a9ef2233642343e122bb68a136782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b2e8667dde0f05dc8c97b532519d05ac1fefc9451e723a9d548567c39d9ae4e
MD5 0ace2040cb148bba4234eac464cf7ec7
BLAKE2b-256 0d09316add80d115bfbaec998d12ecab7724f634a63a2d38bbe3c47fb864f46c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cf43db7c89fd1fb3ff9d23ab06ab86044a82acce39be28bd33a39e6c17962cc1
MD5 20c3ab5c3af24b1dfaa96cc90e70eabe
BLAKE2b-256 6f06a0fa2ba2258a6aed8d40b2c8dc4e6b3d48f9f547315f16915a9c28bd006e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 459350561f72dd46c151a974349857b36328afd04690ef96a97f217e61d1be3a
MD5 b0cd8fb4b7328782e0ef5b2f14dddb1b
BLAKE2b-256 0a76a12b40aa2ad4944072f3f4d20a5f3c4f0470e74e37da11b6fc30f24bd841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1692bb1bd23c20901083044b369ca28e9c4064db44536c17d86f2d4b47327f4e
MD5 cc5b82018dae6c286ca36068ec0e8421
BLAKE2b-256 a14b712d2306ccbf28f2d33f9aa4b8f05c9decca8866947b692b602d88b6e52a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 424f1110981cb7043e5a7d0c4f828b25b3778f56c1a2074a41d726af802a2176
MD5 94ad877713adfeef776cb0178f77b863
BLAKE2b-256 780b5cbb47b2a7db130b9e134613b1075eee507654300ee022eb8b1d040fbc37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a02d034982f9418bd5b4d1d5bc64d7ea073a953273f0fc95e6bf5d021c82791c
MD5 588e2bc2258547d0bd407bb1090cef33
BLAKE2b-256 994ab78a167cfffd43cf15ee4bb5c74b97a91d661731a573104d029d6446af9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c530c8479cce5565fc8dfc2b45b1ac6132ac738d6bf7a309206ad4908996da9
MD5 7a2506510384f8bf1472af62431b4cca
BLAKE2b-256 77b0b5f99aab6a87c6f2d25d8ca5105beed87084e0bdca6a138b4fa22d082e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6045eade8308a4f0199cf04a1ecac063665f9c0c445ab157c5ea77631b03ee2f
MD5 78bd7157f3a6f68bbf27a1f9674e5cbb
BLAKE2b-256 fc9c9564052162ac2b7b89079d49b8102ce3980f1684e118cd7511aec447e2d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19e3e9c91743c470db459371c12b29d05e28adf68f4611eae684681b6f999291
MD5 e516b11eb69f4b210fbf04c34e152bca
BLAKE2b-256 aea6462a736e3d35bf40e4a7490cb49c540cd881aacd20f9cb47c0e65fb3d34b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12810d469a83a9a45a8ed4fa5391b10e65c81e95e033bb54a7ee9aa98eb4e837
MD5 debb9cf1a6dd89ea190b08ba62e7a02b
BLAKE2b-256 23bc177f194e38dbc715c516a79201a18b3026de60cbdcf14096db983113f2ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 be7a49b761a4665c15bc38dc44d25f4c975b1bfdeabbcb9118cd0ed5228dc1e5
MD5 7b860a786af9d965c23dcb2e756e0b91
BLAKE2b-256 21ae3d21f03a784ed28b23031059fbc56d7cc8d15cea3df495150073b17bb26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c4b2fd45381403e48336852efb1a193212e83062ac461826782233b50e45f3c9
MD5 988a65e64e15a75ffbcacaa21791e3d7
BLAKE2b-256 d75c574ce01e2691cd35ea1d4f3f6b1b9c10fed7eaefe7df1a6abd25a9e16212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8ab517224e3db8ccc85e9b452d91c251ea2aaa66f12df49e846d04606c1a68c5
MD5 00401fed9e651167b3b5b66aa2e1fc55
BLAKE2b-256 70665ac1ff862c4fe00131f6add62b45bee0e6c1dee10b324c0f937b0d00467b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 599bf457ac276748e3836e85af09d45d57b58dc5d17c321becc11f061fd9121c
MD5 ba20d123747dba7f3cc4dff76b655dfc
BLAKE2b-256 1936cd387e5af4f08ff8648735c0e9eb88235a9987017f0d364838f6ed254275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5d58e8e5e703880ecb1c6aef761d64829e903b8bd251f897a7492d80c8b5503e
MD5 6a6267273200034e6ab205b1cb28b1e3
BLAKE2b-256 d40134d9e7eacc250829ecdf45ee57cdc52c8b2900c433d32eb4f02c585cfbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fd71dd3a1b20431c50ae2070768995952a3ce861790cc6783d044de2a3bd4353
MD5 65de91071d4dbe30c6eb4aaeea6110bc
BLAKE2b-256 b2f62c048c96a6866ff36360d1705d801db1b136d124c0da887fb7772726a63d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c343c80c4f6e6d41c176bf2a29476845697a4f0377d5467e0dbfdc98c4f64413
MD5 6fd42c766e73c2f01878f03a61a4086f
BLAKE2b-256 ef80b03b45fb783f65c3bd42ba32b87b59c4bcfe6dbe35255c98fd7e49db18a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f962842847b16e7dc320b1c3fd298fd9e1befd518f8f3e27183373bc293f81f
MD5 41443c79638071e5c93bdf9b7040fb5c
BLAKE2b-256 754f5fc135b9145298da08cb19055d135b97a5f157d5b14cfaa573b6efc96794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1b1374d74c0efd2cf03a3322c27bfe9c781974700877bf8911334470e0b6dd0
MD5 3b52fe67edce3b0c227e2a6988108d12
BLAKE2b-256 3ee7360df83dec775fe9204b4b052cabd367d836253035afa8a61c679b3be422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b9ca74738936d907a2a355d9773859c10d9d8416f3e115274fc3c28de9ab18d
MD5 d851409aa41e7640e9573a7817bde23f
BLAKE2b-256 98f541fe66158780420489a2aafc22f015d946321b11c76c0490f4a6a89e3fc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c93e3e214d5cca7d7f919d3cfe3f71b0647db5cf95bdc269903703fcb6a20272
MD5 6711dbf7217f9839f6be8d143bdb3163
BLAKE2b-256 08bbca7825cb819b6b41f55321022b038a98c39c68596537a50f8bf484dc0167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b166f3c18b717fd2ec3188646e61678457130be2d4d3ce76aa16f3734583b4a2
MD5 5107931fac4ee19c95e745d7a119ba0a
BLAKE2b-256 29c6a97938d1a0e19c184fcc647c8882de8816b4cc57e9484653034d39d54fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 be05a18956d2c27307257e9f0b935090f58585cdec1d8f4508c9654187ec5656
MD5 49ad79089316dad29771e628854a7107
BLAKE2b-256 98ee439f794af723b3f5ddecd22f21049a427d833b46ad981284831a5874fe07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e0a7517953d3388e2b2e3cee4436bea668acb4ac8add6e2394702108a985d927
MD5 414a56a1736ec0696cf48e2356c29c1a
BLAKE2b-256 18580f3f4e593506d79964cf96169036a0312dcd887952dfadb3efa11d359131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa301a5e775fae051f3326dae43a3b5fe06947318f8fb79b01b857684a7acac8
MD5 7817c27d8130f0f1d80d56ca842db8db
BLAKE2b-256 b932813c976779575a78833bba726cd70e6cee3e89b76927f7dbcd51a11dc950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 796970ec29846b974c30d5d48df10d189c51d39b25721df117ab0fdc8a02791e
MD5 f9da55a3195b912ca7fdaf959f632a25
BLAKE2b-256 1c263f2363975f64bd3773d58438e0c5c4092f29423351bb41d9cba1a789e6d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d11ecf34d7962f2dbb647ee133087d317122a62393afa20212749e90cfa953b1
MD5 74031adc93f20c88a8b132ccec2229ea
BLAKE2b-256 863f8e3046c04e62577d8f2b63fb47ea8c5d35dcf4946b3ba7d7c8018f68967d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c1d5529ef19d665c8c205136115dee35593a5190b8ea5e95101b99c6317a357
MD5 8728f89d7149eb72f178b39c5cc9f361
BLAKE2b-256 69fc56c70767b840626585fe19b32121128b77a5609e4bd930326cdd1eb47ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e41dbeba21c98404d2dcb735c471991ecc2ff02dda98f0b8dc046e0453e5e2c8
MD5 3980acbd6578bc8a7cc966cf2875e29c
BLAKE2b-256 6d24a8f182f994d5fa945c2ee232bcff0f40413981a51c0f131220f68508d098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ce0eb5f42889a5408447e574a8552ccceb742172e3f253d6eca6c0024acb494
MD5 1342c41e6af1619ec3a92755b3021444
BLAKE2b-256 ed2194e48e82b4c309146f6e13c20e807583fa3e4d3fe863e726f044dcd5c3c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e24de999bf889feb91d5a96dab48b8835755c6944582da4ec98b427a03afae84
MD5 225fe0443264499b076bf9176469aba3
BLAKE2b-256 8293d42f250447024f857835e63a58cbee8fc9bc5bed1aaf1b60ef5edf84ad18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f267c6abcde05beadb526b0c31dd1629a8d1e8aee7dbad169a440fdbfd2c842d
MD5 ae53cd2bc8ad9328825bd5bb0ccfe146
BLAKE2b-256 13fbc544477f185f0ff4916f8c67953385d1b394bef97e9d89900e0ad3bb3b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 95081ab0e10187ff4d73b6aabeebe509b01a18e87929425d317436bc140a377a
MD5 40356be58bc3f4362c2f2ffa0e4cdea9
BLAKE2b-256 9de4e1476e74c7a03d5c51b2813477b98ed8fc95b39dbef2ecdd0929cc36ff8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 156f91573cffd806377c80b5c904dbcbb5cb3be52601fc5b93da5fa0b55b3b49
MD5 b37c0390d69707fa94ffa61a5078819f
BLAKE2b-256 c3aefc79c9d4d075359fdca1067cd66e0932dbbe0909bd1b08774ed7e68fbc79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 45a818f1ae9a402da7c3436b10f649e24cb516b69280c05636753b55ba16ca99
MD5 ce4357a26e63ccc9a0df97ecd158f6fc
BLAKE2b-256 62f03c55e83aaac30f5d3d60c433ae32b40007e9ebd66ee8165b042ec347c754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6982cfa48be5112d6286471e8bee431bd7dcd035e449236dd1f0456e12235a15
MD5 cec0c84ef9c2134d3c5342a97df2bc7a
BLAKE2b-256 66ae51b83c8aa17d9cffd03aa6ce265209976177faaf1c6eabf6b8e128a3ed53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 868704be818f43c7d9ce0479cf46329de396278b8a81aab4abf8da49739fc159
MD5 9ba2a6c1dea597e34a6de0151f15dad0
BLAKE2b-256 dcb3091390b325d53f2729b9ee530b7fc1937b8bb99a9008f6ab864266be82b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 307a15deac386437d3d34a83924996a16dc79f969320128fdbc7307a8b8cef24
MD5 c6fde7d42c958b0937d56f6b88b07b28
BLAKE2b-256 9a3657610ada749b8363b3d9fda5cbae55383a02b337c3d202aef5944275a93d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39ee56c62067c2821c7b1fd069ac79ba6ecd905c6126d13caffe8d0bc68169d7
MD5 2735d8320c3afeca1a6d69609d115457
BLAKE2b-256 96bedb66a1af9d1839a856e97f17ad011ae87628778f5a4b88a55a0b4ee4ff71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinyobjloader-2.0.0rc13-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 779996a86c3e7575ed742f387ec63aba2829f97f2a037486c7ae7671b1192d61
MD5 a802caba0dd39459d705030f19fe9f8b
BLAKE2b-256 4c834f26fd6887d9a09a5c0427bdc50cb445639647657fd77d6cf1054761fcbe

See more details on using hashes here.

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