[![preview](https://github.com/moderngl/moderngl/assets/11232402/b314f7af-0c0a-4b7d-b4f5-857f426454ca)](#readme)
# ModernGL
ModernGL is a Python wrapper over OpenGL Core. ModernGL simplifies the creation of graphics applications like scientific simulations, games or user interfaces.
Usually, acquiring in-depth knowledge of OpenGL requires a steep learning curve. In contrast, ModernGL is easy to learn and use.
ModernGL is capable of rendering with high performance and quality, with less code written.
```
pip install moderngl
```
- [Documentation](https://moderngl.readthedocs.io/)
- [Examples](https://github.com/moderngl/moderngl/tree/master/examples/#readme)
- [ModernGL on Github](https://github.com/moderngl/moderngl/)
- [ModernGL on PyPI](https://pypi.org/project/ModernGL/)
- [ModernGL Discord Server](https://discord.gg/UEMtW8D)
## Extras
### [glcontext](https://github.com/moderngl/glcontext) - Headless Context Creation
```
pip install moderngl[headless]
```
### [moderngl-window](https://github.com/moderngl/moderngl-window) - Window Creation and Resource Loading
```
pip install moderngl-window
```
## Features
- GPU accelerated high quality graphics
- Rendering modern OpenGL scenes with less headache
- Simpler and faster than PyOpenGL
- Can render without a window
- 100% Pythonic
## Sample usage
```py
>>> import moderngl
>>> ctx = moderngl.get_context()
>>> buf = ctx.buffer(b"Hello World!") # allocated on the GPU
>>> buf.read()
b'Hello World!'
```
For complete examples please visit the [Examples](https://github.com/moderngl/moderngl/tree/master/examples/#readme).
## Easy to use with Pillow
```py
>>> img = Image.open("texture.jpg").convert("RGB")
>>> ctx.texture(img.size, 3, img.tobytes())
<Texture: 1>
```
## Easy to use with Numpy
```py
>>> ctx.buffer(np.array([0.0, 0.0, 1.0, 1.0], dtype="f4"))
<Buffer: 1>
```
## Compared to PyOpenGL
With PyOpenGL, using the original OpenGL API, you have to write three lines to
achieve a simple task like binding a VBO:
```py
vbo1 = GL.glGenBuffers(1)
GL.glBindBuffer(GL.GL_ARRAY_BUFFER, vbo1)
GL.glBufferData(GL.GL_ARRAY_BUFFER, b"Hello World!", GL.GL_STATIC_DRAW)
vbo2 = GL.glGenBuffers(1)
GL.glBindBuffer(GL.GL_ARRAY_BUFFER, vbo2)
GL.glBufferData(GL.GL_ARRAY_BUFFER, None, GL.GL_DYNAMIC_DRAW)
```
With ModernGL you need just one simple line per VBO to achieve the same results:
```py
vbo1 = ctx.buffer(b"Hello World!")
vbo2 = ctx.buffer(reserve=1024, dynamic=True)
```
## Development
```
git clone git@github.com:moderngl/moderngl.git
cd moderngl
python -m pip install -e .
```
## Using GLSL in ModernGL
GLSL (OpenGL Shading Language) is integral for shader programming using the ModernGL library. It allows developers to execute code on the GPU, enhancing graphics rendering performance. This concise introduction covers the core concepts necessary for starting with GLSL in ModernGL.
Data Types
GLSL offers standard data types similar to C, including int, float, double, and bool, as well as graphics-specific types like vectors (vec2, vec3, vec4) and matrices (mat2, mat3, mat4) for efficient graphics computations.
Inputs and Outputs
```
Attributes: Per-vertex data passed to the vertex shader. Commonly used for positions, normals, and texture coordinates.
Varyings: Interpolated data passed from the vertex to the fragment shader, such as colors or texture coordinates.
Output: Fragment shader's output, typically the color of the pixel (fragColor).
```
Uniforms
Uniforms are global variables declared in shaders, constant for all vertices or fragments for a single draw call. They're ideal for passing data from your application, like transformation matrices or material properties, to the shader.
Shader Types
```
Vertex Shader: Processes each vertex's attributes. It's the first stage in the shader pipeline, used for transformations and passing data to the fragment shader.
Fragment Shader: Calculates the color of each pixel. It uses data interpolated from the vertex shader to apply textures, lighting, and color.
Geometry Shader: Processes primitives (points, lines, triangles) formed by vertices from the vertex shader. It can add or remove vertices from the primitive.
Tessellation Shaders: Control the tessellation of patches, allowing for smoother geometries at varying distances.
Compute Shader: Handles general-purpose computing tasks not directly related to rendering images, like physics simulations or post-processing effects.
```
Example
```
glsl
// Vertex Shader
#version 330 core
in vec3 position;
uniform mat4 modelViewProjection;
void main() {
gl_Position = modelViewProjection * vec4(position, 1.0);
}
// Fragment Shader
#version 330 core
out vec4 fragColor;
void main() {
fragColor = vec4(1.0); // Set pixel color to white
}
```
This basic example demonstrates a vertex shader transforming vertex positions with a matrix and a fragment shader setting the color of each pixel to white.
## Notes
ModernGL may be faster than other libraries providing direct OpenGL access.
ModernGL is implemented in C++ and a single render call involving multiple OpenGL functions count as a single Python function call.
ModernGL require **OpenGL 3.3**. Compute Shaders require **OpenGL 4.3**.
Some functionality relies on specific extensions.
ModernGL can be used **anywhere where OpenGL is supported.** ModernGL is also working in a [headless](examples/headless) environment.
ModernGL is responsible for calling the OpenGL API and providing a Pythonic user-friendly API instead.
It is possible to integrate moderngl into any window libraries that support OpenGL.
Consider [moderngl-window](https://github.com/moderngl/moderngl-window) which implements many of them, plus it also helps with resource loading.
ModernGL does not implement the full OpenGL feature set or extensions. You can interact with the ModernGL objects from OpenGL.
## Citation
If you need to cite this repository in academic research:
```txt
@Online{Dombi2020,
author = {Szabolcs Dombi},
title = {ModernGL, high performance python bindings for OpenGL 3.3+},
date = {2020-05-01},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/moderngl/moderngl}},
commit = {<insert hash if needed>}
}
```
The commit hash can be found in the [Releases](https://github.com/moderngl/moderngl/releases).
## Community
- [ModernGL Discord Server](https://discord.gg/UEMtW8D)
- [Contributors](https://github.com/moderngl/moderngl/graphs/contributors)
Raw data
{
"_id": null,
"home_page": "https://github.com/moderngl/moderngl",
"name": "moderngl",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "ModernGL, OpenGL, PyOpenGL, rendering, graphics, shader, GLSL, GPU, visualization, 2D, 3D",
"author": "Szabolcs Dombi",
"author_email": "szabolcs@szabolcsdombi.com",
"download_url": "https://files.pythonhosted.org/packages/da/52/540e2f8c45060bb2709f56eb5a44ae828dfcc97ccecb342c1a7deb467889/moderngl-5.12.0.tar.gz",
"platform": "any",
"description": "\n\n[![preview](https://github.com/moderngl/moderngl/assets/11232402/b314f7af-0c0a-4b7d-b4f5-857f426454ca)](#readme)\n\n\n\n# ModernGL\n\nModernGL is a Python wrapper over OpenGL Core. ModernGL simplifies the creation of graphics applications like scientific simulations, games or user interfaces.\nUsually, acquiring in-depth knowledge of OpenGL requires a steep learning curve. In contrast, ModernGL is easy to learn and use.\nModernGL is capable of rendering with high performance and quality, with less code written.\n\n```\npip install moderngl\n```\n\n- [Documentation](https://moderngl.readthedocs.io/)\n- [Examples](https://github.com/moderngl/moderngl/tree/master/examples/#readme)\n- [ModernGL on Github](https://github.com/moderngl/moderngl/)\n- [ModernGL on PyPI](https://pypi.org/project/ModernGL/)\n- [ModernGL Discord Server](https://discord.gg/UEMtW8D)\n\n## Extras\n\n### [glcontext](https://github.com/moderngl/glcontext) - Headless Context Creation\n\n```\npip install moderngl[headless]\n```\n\n### [moderngl-window](https://github.com/moderngl/moderngl-window) - Window Creation and Resource Loading\n\n```\npip install moderngl-window\n```\n\n## Features\n\n- GPU accelerated high quality graphics\n- Rendering modern OpenGL scenes with less headache\n- Simpler and faster than PyOpenGL\n- Can render without a window\n- 100% Pythonic\n\n## Sample usage\n\n```py\n>>> import moderngl\n>>> ctx = moderngl.get_context()\n>>> buf = ctx.buffer(b\"Hello World!\") # allocated on the GPU\n>>> buf.read()\nb'Hello World!'\n```\n\nFor complete examples please visit the [Examples](https://github.com/moderngl/moderngl/tree/master/examples/#readme).\n\n## Easy to use with Pillow\n\n```py\n>>> img = Image.open(\"texture.jpg\").convert(\"RGB\")\n>>> ctx.texture(img.size, 3, img.tobytes())\n<Texture: 1>\n```\n\n## Easy to use with Numpy\n\n```py\n>>> ctx.buffer(np.array([0.0, 0.0, 1.0, 1.0], dtype=\"f4\"))\n<Buffer: 1>\n```\n\n## Compared to PyOpenGL\n\nWith PyOpenGL, using the original OpenGL API, you have to write three lines to\nachieve a simple task like binding a VBO:\n\n```py\nvbo1 = GL.glGenBuffers(1)\nGL.glBindBuffer(GL.GL_ARRAY_BUFFER, vbo1)\nGL.glBufferData(GL.GL_ARRAY_BUFFER, b\"Hello World!\", GL.GL_STATIC_DRAW)\n\nvbo2 = GL.glGenBuffers(1)\nGL.glBindBuffer(GL.GL_ARRAY_BUFFER, vbo2)\nGL.glBufferData(GL.GL_ARRAY_BUFFER, None, GL.GL_DYNAMIC_DRAW)\n```\n\nWith ModernGL you need just one simple line per VBO to achieve the same results:\n\n```py\nvbo1 = ctx.buffer(b\"Hello World!\")\nvbo2 = ctx.buffer(reserve=1024, dynamic=True)\n```\n\n## Development\n\n```\ngit clone git@github.com:moderngl/moderngl.git\ncd moderngl\npython -m pip install -e .\n```\n\n## Using GLSL in ModernGL\n\nGLSL (OpenGL Shading Language) is integral for shader programming using the ModernGL library. It allows developers to execute code on the GPU, enhancing graphics rendering performance. This concise introduction covers the core concepts necessary for starting with GLSL in ModernGL.\n\nData Types\n\nGLSL offers standard data types similar to C, including int, float, double, and bool, as well as graphics-specific types like vectors (vec2, vec3, vec4) and matrices (mat2, mat3, mat4) for efficient graphics computations.\nInputs and Outputs\n ```\n Attributes: Per-vertex data passed to the vertex shader. Commonly used for positions, normals, and texture coordinates.\n Varyings: Interpolated data passed from the vertex to the fragment shader, such as colors or texture coordinates.\n Output: Fragment shader's output, typically the color of the pixel (fragColor).\n ```\n\nUniforms\n\nUniforms are global variables declared in shaders, constant for all vertices or fragments for a single draw call. They're ideal for passing data from your application, like transformation matrices or material properties, to the shader.\nShader Types\n ```\n Vertex Shader: Processes each vertex's attributes. It's the first stage in the shader pipeline, used for transformations and passing data to the fragment shader.\n Fragment Shader: Calculates the color of each pixel. It uses data interpolated from the vertex shader to apply textures, lighting, and color.\n Geometry Shader: Processes primitives (points, lines, triangles) formed by vertices from the vertex shader. It can add or remove vertices from the primitive.\n Tessellation Shaders: Control the tessellation of patches, allowing for smoother geometries at varying distances.\n Compute Shader: Handles general-purpose computing tasks not directly related to rendering images, like physics simulations or post-processing effects.\n ```\nExample\n ```\n glsl\n \n // Vertex Shader\n #version 330 core\n in vec3 position;\n uniform mat4 modelViewProjection;\n void main() {\n gl_Position = modelViewProjection * vec4(position, 1.0);\n }\n \n // Fragment Shader\n #version 330 core\n out vec4 fragColor;\n void main() {\n fragColor = vec4(1.0); // Set pixel color to white\n }\n ```\nThis basic example demonstrates a vertex shader transforming vertex positions with a matrix and a fragment shader setting the color of each pixel to white.\n## Notes\n\nModernGL may be faster than other libraries providing direct OpenGL access.\nModernGL is implemented in C++ and a single render call involving multiple OpenGL functions count as a single Python function call.\n\nModernGL require **OpenGL 3.3**. Compute Shaders require **OpenGL 4.3**.\nSome functionality relies on specific extensions.\n\nModernGL can be used **anywhere where OpenGL is supported.** ModernGL is also working in a [headless](examples/headless) environment.\n\nModernGL is responsible for calling the OpenGL API and providing a Pythonic user-friendly API instead.\nIt is possible to integrate moderngl into any window libraries that support OpenGL.\nConsider [moderngl-window](https://github.com/moderngl/moderngl-window) which implements many of them, plus it also helps with resource loading.\n\nModernGL does not implement the full OpenGL feature set or extensions. You can interact with the ModernGL objects from OpenGL.\n\n## Citation\n\nIf you need to cite this repository in academic research:\n\n```txt\n@Online{Dombi2020,\n author = {Szabolcs Dombi},\n title = {ModernGL, high performance python bindings for OpenGL 3.3+},\n date = {2020-05-01},\n publisher = {GitHub},\n journal = {GitHub repository},\n howpublished = {\\url{https://github.com/moderngl/moderngl}},\n commit = {<insert hash if needed>}\n}\n```\n\nThe commit hash can be found in the [Releases](https://github.com/moderngl/moderngl/releases).\n\n## Community\n\n- [ModernGL Discord Server](https://discord.gg/UEMtW8D)\n- [Contributors](https://github.com/moderngl/moderngl/graphs/contributors)\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "ModernGL: High performance rendering for Python 3",
"version": "5.12.0",
"project_urls": {
"Bug Tracker": "https://github.com/moderngl/moderngl/issues/",
"Documentation": "https://moderngl.readthedocs.io/",
"Homepage": "https://github.com/moderngl/moderngl",
"Source": "https://github.com/moderngl/moderngl/"
},
"split_keywords": [
"moderngl",
" opengl",
" pyopengl",
" rendering",
" graphics",
" shader",
" glsl",
" gpu",
" visualization",
" 2d",
" 3d"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "5d4b988c5f4ef55bf0c62a0b63a4b32fe6d6dd755d12f5951e8fd56e8a30d3f6",
"md5": "2872b1eeeb6854addc09bdb05303502d",
"sha256": "105cdee2ee29a7e6ebbc76cf178941503656a185c6945933bc7ef395ba8e65a7"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2872b1eeeb6854addc09bdb05303502d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 111803,
"upload_time": "2024-10-17T12:36:34",
"upload_time_iso_8601": "2024-10-17T12:36:34.271118Z",
"url": "https://files.pythonhosted.org/packages/5d/4b/988c5f4ef55bf0c62a0b63a4b32fe6d6dd755d12f5951e8fd56e8a30d3f6/moderngl-5.12.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9740272d38d9d096d591db08e4aa1c983a8ed34cd1717b6524a88539b0df4341",
"md5": "b029eec10a38ac325ef7d951f01765d9",
"sha256": "18deb8bebd0a4277d92c76dbedf8e4b4b68bf0a8a878404c6b26aed750890d3b"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b029eec10a38ac325ef7d951f01765d9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 109223,
"upload_time": "2024-10-17T12:36:35",
"upload_time_iso_8601": "2024-10-17T12:36:35.957911Z",
"url": "https://files.pythonhosted.org/packages/97/40/272d38d9d096d591db08e4aa1c983a8ed34cd1717b6524a88539b0df4341/moderngl-5.12.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e45ca6f2743c8ae1c95cd6531510bf76fa6be650a5e0a1dffdf138b5ed186f61",
"md5": "dbd6bee57d1d91e984685561394886df",
"sha256": "8f0c4f7c42425177168938386a4fabd734ca3bbb5de2d1fd1176cfa6f980fc13"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dbd6bee57d1d91e984685561394886df",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 291432,
"upload_time": "2024-10-17T12:36:37",
"upload_time_iso_8601": "2024-10-17T12:36:37.122274Z",
"url": "https://files.pythonhosted.org/packages/e4/5c/a6f2743c8ae1c95cd6531510bf76fa6be650a5e0a1dffdf138b5ed186f61/moderngl-5.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b2db6bfc4fe7df343a4f410030dbd8261566282049e56e9ffc3cbd2e626656e",
"md5": "cd6ef8bf93077a1d8f26f38b2d69745a",
"sha256": "878cdf593204d85c020305f21d306f979353a67c932b9df58ea936f6e5ad13e7"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cd6ef8bf93077a1d8f26f38b2d69745a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 265422,
"upload_time": "2024-10-17T12:36:38",
"upload_time_iso_8601": "2024-10-17T12:36:38.767412Z",
"url": "https://files.pythonhosted.org/packages/2b/2d/b6bfc4fe7df343a4f410030dbd8261566282049e56e9ffc3cbd2e626656e/moderngl-5.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3aae35f8f4c833aca90870110509dddad641f5adf9597da15b3c9e7c75db319f",
"md5": "4dbeab7fcdbc34554090964d5cda8720",
"sha256": "00d94f9cb485d87c85088edad624201e152d8ac401793a024b16cd9e2bc4dbf6"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4dbeab7fcdbc34554090964d5cda8720",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1342266,
"upload_time": "2024-10-17T12:36:40",
"upload_time_iso_8601": "2024-10-17T12:36:40.405953Z",
"url": "https://files.pythonhosted.org/packages/3a/ae/35f8f4c833aca90870110509dddad641f5adf9597da15b3c9e7c75db319f/moderngl-5.12.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b94b2e0b6d0e8a5273da93ed82c8eb91b54a37413b1b9d65bb223d67b595fc96",
"md5": "2d734dc2760039e58d27523d05d518da",
"sha256": "edd91057b8d76beebac0d7b0c741466ee8f37eaf3c07856785c2872afe0b35ac"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2d734dc2760039e58d27523d05d518da",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 1270055,
"upload_time": "2024-10-17T12:36:42",
"upload_time_iso_8601": "2024-10-17T12:36:42.243261Z",
"url": "https://files.pythonhosted.org/packages/b9/4b/2e0b6d0e8a5273da93ed82c8eb91b54a37413b1b9d65bb223d67b595fc96/moderngl-5.12.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "482fb590f86d42630fbbaffd83f1890ef6278ec12d5cb336b6a2efcbb3c2ca21",
"md5": "16b229b4d4f7f707348417ae20c35aca",
"sha256": "3d066eae2eb44e81bd7addf565adebc041bdee119e7ac6e4f95831d6f327a938"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "16b229b4d4f7f707348417ae20c35aca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 101044,
"upload_time": "2024-10-17T12:36:43",
"upload_time_iso_8601": "2024-10-17T12:36:43.940756Z",
"url": "https://files.pythonhosted.org/packages/48/2f/b590f86d42630fbbaffd83f1890ef6278ec12d5cb336b6a2efcbb3c2ca21/moderngl-5.12.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c6df9b77797d3a0f3e5b67a75092c6c63b26360042fd8e43be017c706e308a8",
"md5": "a0fb2da66fa64a3b9fade9059a9b4f8d",
"sha256": "76d966194d51852f48c42a6e786a4520f1e1be5f93e2626423d673663422d559"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "a0fb2da66fa64a3b9fade9059a9b4f8d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 108272,
"upload_time": "2024-10-17T12:36:44",
"upload_time_iso_8601": "2024-10-17T12:36:44.995613Z",
"url": "https://files.pythonhosted.org/packages/9c/6d/f9b77797d3a0f3e5b67a75092c6c63b26360042fd8e43be017c706e308a8/moderngl-5.12.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5ea569c2c08bfef84f4acf633a8e6d956f4f75cfaa8832d7d812dbf2ff6843a",
"md5": "cb73e84362861233384e28e977e20587",
"sha256": "28cdba5dcf2d03c89bb25dc3b2f5770ac4104470ed5bbe680a15494fa52a537d"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "cb73e84362861233384e28e977e20587",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 111802,
"upload_time": "2024-10-17T12:36:47",
"upload_time_iso_8601": "2024-10-17T12:36:47.377259Z",
"url": "https://files.pythonhosted.org/packages/a5/ea/569c2c08bfef84f4acf633a8e6d956f4f75cfaa8832d7d812dbf2ff6843a/moderngl-5.12.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00ef98f36133ab010ce9831b75a16e75a627c12a4c1d6ef2e353eca1769a1e09",
"md5": "e81ace08999492a8e7196f688895f729",
"sha256": "dad93893e3fcb2410bfd31e854f20e1370b4fbafa07a737f1046f5fbd29ba0f4"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e81ace08999492a8e7196f688895f729",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 109227,
"upload_time": "2024-10-17T12:36:49",
"upload_time_iso_8601": "2024-10-17T12:36:49.240084Z",
"url": "https://files.pythonhosted.org/packages/00/ef/98f36133ab010ce9831b75a16e75a627c12a4c1d6ef2e353eca1769a1e09/moderngl-5.12.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2bbab371acacd2497bddb5f02b209e3bfae452b2be59d0cf8fa728a3b87de1f",
"md5": "71b23f83ffa5fdd3fa973299ea9a373f",
"sha256": "7fc0f8788bc84433d2124e9a4893adbe40f93c7d213abb8ad7b909540cb0161f"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "71b23f83ffa5fdd3fa973299ea9a373f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 293468,
"upload_time": "2024-10-17T12:36:50",
"upload_time_iso_8601": "2024-10-17T12:36:50.800877Z",
"url": "https://files.pythonhosted.org/packages/c2/bb/ab371acacd2497bddb5f02b209e3bfae452b2be59d0cf8fa728a3b87de1f/moderngl-5.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d9e7ebf2b98da310c90c2b295e91b6c25f864f0f5583ce86bee72d387cb577a",
"md5": "8787e738021578508d4930f212f3bd72",
"sha256": "6efd3fe0d2c9652af21e2c1f5a936a2b971abac5bdd777da7182a54962466cab"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8787e738021578508d4930f212f3bd72",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 267348,
"upload_time": "2024-10-17T12:36:52",
"upload_time_iso_8601": "2024-10-17T12:36:52.526756Z",
"url": "https://files.pythonhosted.org/packages/0d/9e/7ebf2b98da310c90c2b295e91b6c25f864f0f5583ce86bee72d387cb577a/moderngl-5.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "610a87fb24f4cd2aa07150b84fbf400edf4d8a8f71784cbf064f1ed92b756fea",
"md5": "d56d2f48f7fcf1ce4893a227c2caea14",
"sha256": "6f3bd2d534fc081cde30545b84ebca63aef847ba8bd533217b9a37f565614ade"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d56d2f48f7fcf1ce4893a227c2caea14",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1343953,
"upload_time": "2024-10-17T12:36:54",
"upload_time_iso_8601": "2024-10-17T12:36:54.601778Z",
"url": "https://files.pythonhosted.org/packages/61/0a/87fb24f4cd2aa07150b84fbf400edf4d8a8f71784cbf064f1ed92b756fea/moderngl-5.12.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "834211b0306e630d9a38b8bac20563b326f6d5fba4dfc45cc90b0666ed3e7141",
"md5": "653f3fed75cb11ceca261fef0e232ef7",
"sha256": "eaa3de9446c6febec4d5f888e6f1a4e9398bc5a5ea70b1570ea447213641d4a6"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "653f3fed75cb11ceca261fef0e232ef7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 1271832,
"upload_time": "2024-10-17T12:36:56",
"upload_time_iso_8601": "2024-10-17T12:36:56.383233Z",
"url": "https://files.pythonhosted.org/packages/83/42/11b0306e630d9a38b8bac20563b326f6d5fba4dfc45cc90b0666ed3e7141/moderngl-5.12.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6bdd74d300275fe4834e63b8d70450801f206d005f2047898d4eb2a30efc3913",
"md5": "60c361495edfb4ca978c5841dab546f7",
"sha256": "9fdb76f1fd890db67727c8cdee4db2ee6319068c7ce92be0308366f8745e28ab"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "60c361495edfb4ca978c5841dab546f7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 101043,
"upload_time": "2024-10-17T12:36:58",
"upload_time_iso_8601": "2024-10-17T12:36:58.281868Z",
"url": "https://files.pythonhosted.org/packages/6b/dd/74d300275fe4834e63b8d70450801f206d005f2047898d4eb2a30efc3913/moderngl-5.12.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f085f615a4605d343cd5c1112d2b175270e6a5586008bc10a85b822c340cf86",
"md5": "0394a15f9179aee007975bfffca4c446",
"sha256": "0c210e8d52a60025f6586ca015c39feb1e57e6dc792c3ff44800f6493a541b1a"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "0394a15f9179aee007975bfffca4c446",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 108279,
"upload_time": "2024-10-17T12:37:01",
"upload_time_iso_8601": "2024-10-17T12:37:01.125859Z",
"url": "https://files.pythonhosted.org/packages/7f/08/5f615a4605d343cd5c1112d2b175270e6a5586008bc10a85b822c340cf86/moderngl-5.12.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c6631161e81bc85ca3cdbb9d94f703f21575e4ae9a2919e9d1af98fc7fdb1ba",
"md5": "bd172681c56a6106b85a93ae5e41973b",
"sha256": "2750547707c1ec3790dfbeb9c90fb808672ff13f61cac392c706ba09fda10db0"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "bd172681c56a6106b85a93ae5e41973b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 112101,
"upload_time": "2024-10-17T12:37:02",
"upload_time_iso_8601": "2024-10-17T12:37:02.267077Z",
"url": "https://files.pythonhosted.org/packages/3c/66/31161e81bc85ca3cdbb9d94f703f21575e4ae9a2919e9d1af98fc7fdb1ba/moderngl-5.12.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84b27229a89a40d33a95119a7c64c7ee36a6a6e376c57c39fb577ea513602f37",
"md5": "1c7f4faeab4ca5f48057084fd462a787",
"sha256": "c5c2a5fe06c7021183d9274df798f25516409c8d55898c324dae8a0b2de10144"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1c7f4faeab4ca5f48057084fd462a787",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 109377,
"upload_time": "2024-10-17T12:37:03",
"upload_time_iso_8601": "2024-10-17T12:37:03.843861Z",
"url": "https://files.pythonhosted.org/packages/84/b2/7229a89a40d33a95119a7c64c7ee36a6a6e376c57c39fb577ea513602f37/moderngl-5.12.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d796bcb5141eae24474d80b8157b0c3055d25fa75f9804d4abb4a514695bbba9",
"md5": "5ef99b4d2ba5ad15092114f4c0aec89a",
"sha256": "b6c4972f3ddd10a3de6c30311da2c25bc493d023796e16c5d4e0f8bd6d5770be"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5ef99b4d2ba5ad15092114f4c0aec89a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 296394,
"upload_time": "2024-10-17T12:37:04",
"upload_time_iso_8601": "2024-10-17T12:37:04.967229Z",
"url": "https://files.pythonhosted.org/packages/d7/96/bcb5141eae24474d80b8157b0c3055d25fa75f9804d4abb4a514695bbba9/moderngl-5.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b879a9998ddf6757f4f15888b0a106d80a64a8c8991a8ce5c14047830704b9e6",
"md5": "e9a16c102c6352470e5675c574e15777",
"sha256": "a4d497ec6a3f6afa9ebd0be816d9bfe2fe20fec2105acfb88d956619c3ed8eb4"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e9a16c102c6352470e5675c574e15777",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 270548,
"upload_time": "2024-10-17T12:37:07",
"upload_time_iso_8601": "2024-10-17T12:37:07.570392Z",
"url": "https://files.pythonhosted.org/packages/b8/79/a9998ddf6757f4f15888b0a106d80a64a8c8991a8ce5c14047830704b9e6/moderngl-5.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17f4313dc301db936b231035b961e004f1914c2954bdcdf4985e24bff15e7ed5",
"md5": "6f74ffeaa7d5f752383d8d92866d19de",
"sha256": "2f3d240e9bc5d83257378bae59f8f35638b89d22bb003cf674b88fd7932161ce"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6f74ffeaa7d5f752383d8d92866d19de",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1345817,
"upload_time": "2024-10-17T12:37:09",
"upload_time_iso_8601": "2024-10-17T12:37:09.105572Z",
"url": "https://files.pythonhosted.org/packages/17/f4/313dc301db936b231035b961e004f1914c2954bdcdf4985e24bff15e7ed5/moderngl-5.12.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c6f7b3587e7e3ae633b8c85038f035dfeb348ebf805de4beb01241c59c6b97c",
"md5": "abec639c162c36d202d1bfd98b18585b",
"sha256": "6fa667d560d842e778e2a5968305fb78f9781616a11b1b93acd2562f97262ccf"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "abec639c162c36d202d1bfd98b18585b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 1274968,
"upload_time": "2024-10-17T12:37:11",
"upload_time_iso_8601": "2024-10-17T12:37:11.092267Z",
"url": "https://files.pythonhosted.org/packages/8c/6f/7b3587e7e3ae633b8c85038f035dfeb348ebf805de4beb01241c59c6b97c/moderngl-5.12.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fe80f3b3cd1be7b0a93f33dc613f76a42021d1393b4949c5b6a1ca2a01c6772",
"md5": "6a0fdd89de0697ddf7705bc4c5886844",
"sha256": "0a02fddd54dccee1ca6060bfed75a2e6a17dd3ee06920fac418506d8a8233849"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "6a0fdd89de0697ddf7705bc4c5886844",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 101221,
"upload_time": "2024-10-17T12:37:12",
"upload_time_iso_8601": "2024-10-17T12:37:12.642478Z",
"url": "https://files.pythonhosted.org/packages/4f/e8/0f3b3cd1be7b0a93f33dc613f76a42021d1393b4949c5b6a1ca2a01c6772/moderngl-5.12.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "568535498b1821cf31c731b1882168db8924207ff3c06d8f0da53e1cc373a89d",
"md5": "f79c59c05bb3e28cafe320d675fe398d",
"sha256": "8698a59ad03539a2982125b7998efc1c107ba31d5d03437b6fcd72cb2c226922"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f79c59c05bb3e28cafe320d675fe398d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 108525,
"upload_time": "2024-10-17T12:37:13",
"upload_time_iso_8601": "2024-10-17T12:37:13.816279Z",
"url": "https://files.pythonhosted.org/packages/56/85/35498b1821cf31c731b1882168db8924207ff3c06d8f0da53e1cc373a89d/moderngl-5.12.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3913cf493bdc3cb4f7a6b4fb357e683404dc8a97d19f53d501e4afdd679538e2",
"md5": "965020f3c965158151738e04ffd7aaf4",
"sha256": "f6efb432f5164f871471d1da36e3a4be9dc3efd7a1e48d0ac6b751e556af5d02"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "965020f3c965158151738e04ffd7aaf4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 112118,
"upload_time": "2024-10-17T12:37:14",
"upload_time_iso_8601": "2024-10-17T12:37:14.892516Z",
"url": "https://files.pythonhosted.org/packages/39/13/cf493bdc3cb4f7a6b4fb357e683404dc8a97d19f53d501e4afdd679538e2/moderngl-5.12.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a91f1d84bba5f42fb19ce240d08d5434fe8e2f34341e68bb9fa89336b6cbdcfc",
"md5": "27badbd22521c8565ca4a8c7f547f445",
"sha256": "9b09d8d15b2eaab41c8646a664429ec86af225fa25096758497cd212489d2e1e"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "27badbd22521c8565ca4a8c7f547f445",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 109371,
"upload_time": "2024-10-17T12:37:15",
"upload_time_iso_8601": "2024-10-17T12:37:15.992551Z",
"url": "https://files.pythonhosted.org/packages/a9/1f/1d84bba5f42fb19ce240d08d5434fe8e2f34341e68bb9fa89336b6cbdcfc/moderngl-5.12.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "beaebda0b95878e2b36eac66f64d88c08e6c8ea759607f7d40e843a21c2f4f32",
"md5": "b13d5c086bf0a90012f722e10a261074",
"sha256": "071042dd4846e58cbe204cf49341b62cd209fdcb6d48018feb5a61c66707fcb2"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b13d5c086bf0a90012f722e10a261074",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 296206,
"upload_time": "2024-10-17T12:37:17",
"upload_time_iso_8601": "2024-10-17T12:37:17.204578Z",
"url": "https://files.pythonhosted.org/packages/be/ae/bda0b95878e2b36eac66f64d88c08e6c8ea759607f7d40e843a21c2f4f32/moderngl-5.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28bc93dc73251bcdb9c0f6f5c9a1d97ec2134672c307c68e6106948eab1f73d4",
"md5": "0574a46da4adb7830369f8d50402706c",
"sha256": "91db8302ac7f5d7a82a967388677e1378ff078f1e16d05da37ce77f4633b93b1"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0574a46da4adb7830369f8d50402706c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 270443,
"upload_time": "2024-10-17T12:37:18",
"upload_time_iso_8601": "2024-10-17T12:37:18.440837Z",
"url": "https://files.pythonhosted.org/packages/28/bc/93dc73251bcdb9c0f6f5c9a1d97ec2134672c307c68e6106948eab1f73d4/moderngl-5.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ea1bd72c788b16c2392d3e1ebb570e56d7f871eaa1854f57917c0f131acb365",
"md5": "53d2f7df25fd5f07faae1200ea8bbf95",
"sha256": "51971d65ec96a212a814350c8b324ae0754353e1b61826d1a06aa2d060df170e"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "53d2f7df25fd5f07faae1200ea8bbf95",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 1345675,
"upload_time": "2024-10-17T12:37:20",
"upload_time_iso_8601": "2024-10-17T12:37:20.077079Z",
"url": "https://files.pythonhosted.org/packages/2e/a1/bd72c788b16c2392d3e1ebb570e56d7f871eaa1854f57917c0f131acb365/moderngl-5.12.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2ec6aff8fa267d9f80e4d32b7a606fdf9f0563103441a7dbaa4f53e272a4ada",
"md5": "2bcb8cc4e410ac43be72111f85e6bd80",
"sha256": "d56827360c19e831e986243b5daaf6a51006f1ec0d5372084ad446308763d19f"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2bcb8cc4e410ac43be72111f85e6bd80",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 1274906,
"upload_time": "2024-10-17T12:37:22",
"upload_time_iso_8601": "2024-10-17T12:37:22.372531Z",
"url": "https://files.pythonhosted.org/packages/b2/ec/6aff8fa267d9f80e4d32b7a606fdf9f0563103441a7dbaa4f53e272a4ada/moderngl-5.12.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f4ddc3ff763c125080e71b1095875f5dcc80949402019abc073bdfdbed1f4c2",
"md5": "a859258f46fc74dd64cd6803a12cf1ca",
"sha256": "caa432c12b138a6c9571719075c4d103bdc2504cd31aeda38a00ad10fcf268cb"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "a859258f46fc74dd64cd6803a12cf1ca",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 101215,
"upload_time": "2024-10-17T12:37:23",
"upload_time_iso_8601": "2024-10-17T12:37:23.833194Z",
"url": "https://files.pythonhosted.org/packages/9f/4d/dc3ff763c125080e71b1095875f5dcc80949402019abc073bdfdbed1f4c2/moderngl-5.12.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c8b0a264732e0ee49fca109e98ec28f4d0c326ffc31466aa6e9668e8961aabb",
"md5": "2f44417675db53248c8b9bed0dc7bd32",
"sha256": "e34d1cd38f7998258f76a08bb5e87f351ec653b7ea1928b2711f8719c10cefd1"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "2f44417675db53248c8b9bed0dc7bd32",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 108514,
"upload_time": "2024-10-17T12:37:25",
"upload_time_iso_8601": "2024-10-17T12:37:25.304872Z",
"url": "https://files.pythonhosted.org/packages/2c/8b/0a264732e0ee49fca109e98ec28f4d0c326ffc31466aa6e9668e8961aabb/moderngl-5.12.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d879bb4693f753f5e7e1a2ea58a56e94d70b1275fbde6d455f620631939c7ebf",
"md5": "dfaf93c296d4d80c4b41217938377c4a",
"sha256": "b0712fcce0ebbee962f5e93628118aedcb568d56b5c59f2e9aac43ea57190219"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "dfaf93c296d4d80c4b41217938377c4a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 111571,
"upload_time": "2024-10-17T12:37:26",
"upload_time_iso_8601": "2024-10-17T12:37:26.661315Z",
"url": "https://files.pythonhosted.org/packages/d8/79/bb4693f753f5e7e1a2ea58a56e94d70b1275fbde6d455f620631939c7ebf/moderngl-5.12.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a82736e624517bb669e0940eab0e94612576365ac92280af23f4657cebb92ee",
"md5": "d995b1bac03bf13dccf9da2917807c53",
"sha256": "861aae4a38da0f5d82dc2d5ece0f0a6d799809c362343cd1a447ab840a68370f"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d995b1bac03bf13dccf9da2917807c53",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 109006,
"upload_time": "2024-10-17T12:37:27",
"upload_time_iso_8601": "2024-10-17T12:37:27.963982Z",
"url": "https://files.pythonhosted.org/packages/8a/82/736e624517bb669e0940eab0e94612576365ac92280af23f4657cebb92ee/moderngl-5.12.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a8124fb9c49541826ce2023950a89d72711717920bee1bbe9d5360a93775864",
"md5": "13b975fb75e4d8d2aa7b78cab8d48746",
"sha256": "726a025ab9822c295369a9ddb1bfaf4930f9645b7a958b74dfcd6a969d7052cf"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "13b975fb75e4d8d2aa7b78cab8d48746",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 294143,
"upload_time": "2024-10-17T12:37:29",
"upload_time_iso_8601": "2024-10-17T12:37:29.083950Z",
"url": "https://files.pythonhosted.org/packages/6a/81/24fb9c49541826ce2023950a89d72711717920bee1bbe9d5360a93775864/moderngl-5.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0bbf1fdba1b3d2ff1eded47250e962adec3d815d0966b7dfb19a4fa6d02ef09",
"md5": "e482f3f7eb00159eaea170ebb90dd9d7",
"sha256": "29a181bae8bde003016fee671b93c2faa3e1460033033e2a832ec9187aa73efb"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e482f3f7eb00159eaea170ebb90dd9d7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 268676,
"upload_time": "2024-10-17T12:37:30",
"upload_time_iso_8601": "2024-10-17T12:37:30.318597Z",
"url": "https://files.pythonhosted.org/packages/b0/bb/f1fdba1b3d2ff1eded47250e962adec3d815d0966b7dfb19a4fa6d02ef09/moderngl-5.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bff21a6557b6694527a03675f3d1b343c18fefe665022e522c6bfc1acdd236a8",
"md5": "dbb5d54be1871986e1c1b10bd41c4d69",
"sha256": "8b35c17d5497f19c524068f9337cbe5e0e0e5662150b12fa95618665130bbf16"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "dbb5d54be1871986e1c1b10bd41c4d69",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1344777,
"upload_time": "2024-10-17T12:37:31",
"upload_time_iso_8601": "2024-10-17T12:37:31.931829Z",
"url": "https://files.pythonhosted.org/packages/bf/f2/1a6557b6694527a03675f3d1b343c18fefe665022e522c6bfc1acdd236a8/moderngl-5.12.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15b53958ac4975d8fd54045c2699d64457627594a65060fe1fc297c8bfbdcb0f",
"md5": "85f67f37808e5467d0132c4b2cf17bfb",
"sha256": "74e5b7df5614f3291d197139a888c967aa29c348e13ebd28ce2a55bf03baed3d"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "85f67f37808e5467d0132c4b2cf17bfb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 1272372,
"upload_time": "2024-10-17T12:37:33",
"upload_time_iso_8601": "2024-10-17T12:37:33.899655Z",
"url": "https://files.pythonhosted.org/packages/15/b5/3958ac4975d8fd54045c2699d64457627594a65060fe1fc297c8bfbdcb0f/moderngl-5.12.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dde7bcf27ed77ffff45a230e99bee85de43eec28c48b994f452748c1be6d487f",
"md5": "9609027cb2d943acf0e88f25debec979",
"sha256": "8dc1bacc24840e5bc562e79be65dc506d6c5a7d40ecac01a062f86d013c890af"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "9609027cb2d943acf0e88f25debec979",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 101054,
"upload_time": "2024-10-17T12:37:35",
"upload_time_iso_8601": "2024-10-17T12:37:35.401078Z",
"url": "https://files.pythonhosted.org/packages/dd/e7/bcf27ed77ffff45a230e99bee85de43eec28c48b994f452748c1be6d487f/moderngl-5.12.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4620bd14133e16e6d72e0ae1fa82f4aa840aa52e576f6a5b79936c69933cdaaf",
"md5": "fe494544003878a6337efefd1ba7bbd8",
"sha256": "cbd822cf3707fe955cfd940ec68b900519e2c43a5ef8085de5b0c983b4142c8b"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "fe494544003878a6337efefd1ba7bbd8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 108340,
"upload_time": "2024-10-17T12:37:36",
"upload_time_iso_8601": "2024-10-17T12:37:36.535904Z",
"url": "https://files.pythonhosted.org/packages/46/20/bd14133e16e6d72e0ae1fa82f4aa840aa52e576f6a5b79936c69933cdaaf/moderngl-5.12.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c020a206f5db9e149d8978b71f6021e1d7286eea6c6903b821f416328ad187b",
"md5": "44553cffccbff703f8052a39ae127dbd",
"sha256": "49a6e27abafacef104c7ca336f6790f91c69617a1d752ead4a017b706d632b55"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "44553cffccbff703f8052a39ae127dbd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 111798,
"upload_time": "2024-10-17T12:37:37",
"upload_time_iso_8601": "2024-10-17T12:37:37.695972Z",
"url": "https://files.pythonhosted.org/packages/3c/02/0a206f5db9e149d8978b71f6021e1d7286eea6c6903b821f416328ad187b/moderngl-5.12.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "055818774a3b249538deb361d078c7364e6e3af6da5d4e11df71a29c376ff44c",
"md5": "88937c50594043bba7e7e8ffb12e5ddf",
"sha256": "7146c6fec3b2d7e8d11fa2504046b186d396520c0c2f7ef3aed40d8456dbebfc"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "88937c50594043bba7e7e8ffb12e5ddf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 109225,
"upload_time": "2024-10-17T12:37:39",
"upload_time_iso_8601": "2024-10-17T12:37:39.294696Z",
"url": "https://files.pythonhosted.org/packages/05/58/18774a3b249538deb361d078c7364e6e3af6da5d4e11df71a29c376ff44c/moderngl-5.12.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "633e14f8bd1ffb01e922f31d6c7af9817d950a30b84af98b1a82659298b0b7fd",
"md5": "19a5d49cef91db0aa572491223e41a7d",
"sha256": "28b9eb3574ffc6e303173ca0a419b63d8b12cd67f924289c02d127c4d17cdca5"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "19a5d49cef91db0aa572491223e41a7d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 289945,
"upload_time": "2024-10-17T12:37:41",
"upload_time_iso_8601": "2024-10-17T12:37:41.136303Z",
"url": "https://files.pythonhosted.org/packages/63/3e/14f8bd1ffb01e922f31d6c7af9817d950a30b84af98b1a82659298b0b7fd/moderngl-5.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b92745d17a612cab85bcbe714c0d5a96fd2cb255cfd313f91427bedab411aac1",
"md5": "05e538210783d2957473c47c2af8f8bd",
"sha256": "6948237626f9f0d9f931faa3b123d53613d5723679bc70b8db2590924795203f"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "05e538210783d2957473c47c2af8f8bd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 264314,
"upload_time": "2024-10-17T12:37:42",
"upload_time_iso_8601": "2024-10-17T12:37:42.518246Z",
"url": "https://files.pythonhosted.org/packages/b9/27/45d17a612cab85bcbe714c0d5a96fd2cb255cfd313f91427bedab411aac1/moderngl-5.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e9393d7fed4c110d4fee41557b1579980b42c3cd1ce093a2bb7634adac149e8",
"md5": "16746a1d6f46b2892a1eda984149cc96",
"sha256": "3c6b4342b7508d75744f1091868cf184cae0be85d37be858fba32eb20d799695"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "16746a1d6f46b2892a1eda984149cc96",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1341312,
"upload_time": "2024-10-17T12:37:45",
"upload_time_iso_8601": "2024-10-17T12:37:45.064534Z",
"url": "https://files.pythonhosted.org/packages/2e/93/93d7fed4c110d4fee41557b1579980b42c3cd1ce093a2bb7634adac149e8/moderngl-5.12.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9251dc296c5d46846979ed1fe51651bbd5ec22e9192274c146bed69b0dd8ff6b",
"md5": "e2d58ef08469dfdce6876d2eb0ff5738",
"sha256": "13fec30855d346c4e69eff437e56f2bdd9953d22e80b7c5a319bccac7024e463"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e2d58ef08469dfdce6876d2eb0ff5738",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 1268878,
"upload_time": "2024-10-17T12:37:46",
"upload_time_iso_8601": "2024-10-17T12:37:46.831328Z",
"url": "https://files.pythonhosted.org/packages/92/51/dc296c5d46846979ed1fe51651bbd5ec22e9192274c146bed69b0dd8ff6b/moderngl-5.12.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6023a8227fb03fe21621f8443b394f6a84f37da7e30c874420a8219fa5c2205e",
"md5": "fb5ba435ef5b6119962db9461ab7cafc",
"sha256": "878f249505785cde8cc39d6016e62e74b46acbf3bb6d5a86341c86a7da7e7531"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "fb5ba435ef5b6119962db9461ab7cafc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 101212,
"upload_time": "2024-10-17T12:37:48",
"upload_time_iso_8601": "2024-10-17T12:37:48.208192Z",
"url": "https://files.pythonhosted.org/packages/60/23/a8227fb03fe21621f8443b394f6a84f37da7e30c874420a8219fa5c2205e/moderngl-5.12.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b44b854009a4c37882e000b90e355684a091e97318e0336fdccd39d171013d14",
"md5": "a3b599faf5b5d3d17301d90b43ee08d8",
"sha256": "e801cd0d35b4e3e99fc6a6f15eb193ce907bfa78127afa5825f1fad24c700c0e"
},
"downloads": -1,
"filename": "moderngl-5.12.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "a3b599faf5b5d3d17301d90b43ee08d8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 108545,
"upload_time": "2024-10-17T12:37:49",
"upload_time_iso_8601": "2024-10-17T12:37:49.379499Z",
"url": "https://files.pythonhosted.org/packages/b4/4b/854009a4c37882e000b90e355684a091e97318e0336fdccd39d171013d14/moderngl-5.12.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da52540e2f8c45060bb2709f56eb5a44ae828dfcc97ccecb342c1a7deb467889",
"md5": "70293a6ef71485498d09707794b63321",
"sha256": "52936a98ccb2f2e1d6e3cb18528b2919f6831e7e3f924e788b5873badce5129b"
},
"downloads": -1,
"filename": "moderngl-5.12.0.tar.gz",
"has_sig": false,
"md5_digest": "70293a6ef71485498d09707794b63321",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 193232,
"upload_time": "2024-10-17T12:36:28",
"upload_time_iso_8601": "2024-10-17T12:36:28.002025Z",
"url": "https://files.pythonhosted.org/packages/da/52/540e2f8c45060bb2709f56eb5a44ae828dfcc97ccecb342c1a7deb467889/moderngl-5.12.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-17 12:36:28",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "moderngl",
"github_project": "moderngl",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "moderngl"
}