{ "info": { "author": "Szabolcs Dombi", "author_email": "cprogrammer1994@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", "Topic :: Games/Entertainment", "Topic :: Multimedia :: Graphics", "Topic :: Multimedia :: Graphics :: 3D Rendering", "Topic :: Scientific/Engineering :: Visualization" ], "description": "[![pypi](https://badge.fury.io/py/glcontext.svg)](https://pypi.python.org/pypi/glcontext)\n\n\n\n# glcontext\n\n**glcontext** is a library providing OpenGL implementation for ModernGL on multiple platforms.\n\n* [glcontext on github](https://github.com/moderngl/glcontext)\n* [glcontext on pypi](https://pypi.org/project/glcontext)\n* [ModernGL](https://github.com/moderngl/moderngl)\n\n## Backends\n\nA glcontext backend is either an extension or a submodule of the glcontext package.\nThe package itself does not import any of the backends.\nImporting the base package `glcontext` must safe and lightweight.\n\n## Structure\n\nEvery backend of glcontext must provide a factory function:\n\n```py\ndef create_context(*args, **kwargs) -> GLContext:\n pass\n```\n\nThe create\\_context method can take any number of positional and keyword arguments.\nThe factory function must return an object supporting the following methods:\n\n```py\ndef load(self, name:str) -> int:\n pass\n```\n\nThe load method takes an OpenGL function name as an input and returns a C/C++ function pointer as a python integer.\nThe return value must be 0 for not implemented functions.\n\n```py\ndef __enter__(self, name:str):\n pass\n```\n\nThe enter method calls `___MakeCurrent` to make the GLContext the calling thread's current rendering context.\n`___MakeCurrent` stands for `wglMakeCurrent`, `glxMakeCurrent`, ...\n\n```py\ndef __exit__(self, exc_type, exc_val, exc_tb):\n pass\n```\n\nThe exit method calls `___MakeCurrent` to make the GLContext no longer current.\n\n```py\ndef release(self):\n pass\n```\n\nThe release method destroys the OpenGL context.\n\n## Development Guide\n\nThere are \"empty\" example backends provided for developers to help adding new backends to the library.\nThere is a pure python example in [empty.py](#) and an extension example in [empty.cpp](#).\nBesides their name match, they do not depend on each other, they are independent submodules of glcontext.\n\nAn \"portable\" backend implementation must load its dependency at runtime.\nThis rule is for simplifying the build of the entire package.\nIf an implementation cannot provide a \"portable\" backend, it will not be added to this library.\nNon \"portable\" backends are welcome as third party libraries.\n\nA backend must be lightweight, its size must fit within reasonable limits.\n\nTo add support for new platforms one must edit the `setup.py` too.\nPlatform specific dependencies are exceptions from the \"portability\" rule.\n\nExample for platform specific dependencies:\n\n- `gdi32.lib` on windows\n- `libdl.a` on linux\n\nPlease note that `libGL.so` is loaded dinamically by the backends.\n\n## Current backends\n\nEach backend supports a `glversion` and `mode` parameters as a minimum.\nThe `glversion` is the minimum OpenGL version required while `mode`\ndecides how the context is created.\n\nModes\n\n* `detect`: Will detect an existing active OpenGL context.\n* `standalone`: Crates a headless OpenGL context\n* `share`: Creates a new context sharing objects with the currently active context (headless)\n\n### wgl\n\nParameters\n\n* `glversion` (`int`): The minimum OpenGL version for the context\n* `mode` (`str`): Creation mode. `detect` | `standalone` | `share`\n* `libgl` (`str`): Name of gl library to load (default: `opengl32.dll`)\n\n### x11\n\nIf `libgl` is not passed in the backend will try to locate\nthe GL library using `ctypes.utils.find_library`.\n\nParameters\n\n* `glversion` (`int`): The minimum OpenGL version for the context\n* `mode` (`str`): Creation mode. `detect` | `standalone` | `share`\n* `libgl` (`str`): Name of gl library to load (default: `libGL.so`)\n* `libx11` (`str`): Name of x11 library to load (default: `libX11.so`)\n\n### darwin\n\nWill create the the highest core context available.\n\nParameters\n\n* `mode` (`str`): Creation mode. `detect` | `standalone`\n\n### egl\n\nOnly supports standalone mode.\n\nIf `libgl` and/or `libegl` is not passed in the backend will try to locate\nGL and/or EGL library using `ctypes.utils.find_library`.\n\nParameters\n\n* `glversion` (`int`): The minimum OpenGL version for the context\n* `mode` (`str`): Creation mode. `standalone`\n* `libgl` (`str`): Name of gl library to load (default: `libGL.so`)\n* `libegl` (`str`): Name of gl library to load (default: `libEGL.so`)\n* `device_index` (`int`) The device index to use (default: `0`)\n\n## Environment Variables\n\nEnvironment variables can be set to configure backends.\nThese will get first priority if defined.\n\n```bash\n# Override OpenGL version code. For example: 410 (for opengl 4.1)\nGLCONTEXT_GLVERSION\n# Override libgl on linux. For example: libGL.1.so\nGLCONTEXT_LINUX_LIBGL\n# Override libx11 on linux. For example\u00d8 libX11.x.so\nGLCONTEXT_LINUX_LIBX11\n# Override libegl on linux. For example\u00d8 libEGL.x.so\nGLCONTEXT_LINUX_LIBEGL\n# Override gl dll on windows. For example: opengl32_custom.dll\nGLCONTEXT_WIN_LIBGL\n# Override the device index (egl)\nGLCONTEXT_DEVICE_INDEX\n```\n\n## Running tests\n\n```\npip install -r tests/requirements.txt\npytest tests\n```\n\n## Contributing\n\nContribution is welcome.\n\nPull Requests will be merged if they match the [Development Guide](#).\n\nFor prototypes, pure python implementations using ctypes are also welcome.\nWe will probably port it to a proper extension in the future.\n\nPlease ask questions [here](https://github.com/moderngl/glcontext/issues).\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/moderngl/glcontext", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "glcontext", "package_url": "https://pypi.org/project/glcontext/", "platform": "any", "project_url": "https://pypi.org/project/glcontext/", "project_urls": { "Homepage": "https://github.com/moderngl/glcontext" }, "release_url": "https://pypi.org/project/glcontext/2.3.6/", "requires_dist": null, "requires_python": "", "summary": "Portable OpenGL Context", "version": "2.3.6", "yanked": false, "yanked_reason": null }, "last_serial": 13601999, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "309659addacdcc1ecd94e7343add0f21", "sha256": "2b6ad8ab871590cb1abbf305979e07089e5299dbdf13c6c1358bc1e5b0976e71" }, "downloads": -1, "filename": "glcontext-0.1.0.tar.gz", "has_sig": false, "md5_digest": "309659addacdcc1ecd94e7343add0f21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 552, "upload_time": "2019-09-14T07:00:11", "upload_time_iso_8601": "2019-09-14T07:00:11.658465Z", "url": "https://files.pythonhosted.org/packages/4a/48/36c2bb5a3af1bf2a0364963338f82dbc6ccf675c90e00518e8d07f5370e6/glcontext-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "6c1a22fc9cf3d7ef0462c9e4d5552699", "sha256": "70155fdaad9db611bd36e9d4dd3679ff423fb79739ff62484764443f91f89cc2" }, "downloads": -1, "filename": "glcontext-0.2.0.tar.gz", "has_sig": false, "md5_digest": "6c1a22fc9cf3d7ef0462c9e4d5552699", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3318, "upload_time": "2019-09-15T09:56:12", "upload_time_iso_8601": "2019-09-15T09:56:12.478786Z", "url": "https://files.pythonhosted.org/packages/44/ca/0616ef860a074cbdeaf8f58f8f5066ad177ed3ca958847987a6351b0547c/glcontext-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "4bd903cbe379e55228a4e93c54c96d5b", "sha256": "890bb0dce3c3cf04ed9163a0b8e9915cabcb3b7613bac7603a405076eb905ce4" }, "downloads": -1, "filename": "glcontext-0.2.1.tar.gz", "has_sig": false, "md5_digest": "4bd903cbe379e55228a4e93c54c96d5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8199, "upload_time": "2019-09-15T10:01:20", "upload_time_iso_8601": "2019-09-15T10:01:20.063470Z", "url": "https://files.pythonhosted.org/packages/ac/29/089fdaacc86ac73ab0d03d698ddc8217014f35480ebf1b120bc287b91f10/glcontext-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "9731047eeb2c5370fc2112276cd459fb", "sha256": "01a8a74d13eaaa92384d36d8e7edea224b847116899426329c7fc74111bbfc35" }, "downloads": -1, "filename": "glcontext-0.2.2.tar.gz", "has_sig": false, "md5_digest": "9731047eeb2c5370fc2112276cd459fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8618, "upload_time": "2019-09-15T10:03:55", "upload_time_iso_8601": "2019-09-15T10:03:55.569540Z", "url": "https://files.pythonhosted.org/packages/5a/6e/22e0359a81fd44afa2077659ecea819f772f70d0189a66e5226713441472/glcontext-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "4c3f4b2cd71ed429241886d7210b4387", "sha256": "93160b4aa7fc877104c52645dbc196e05a4773045e6255b51609ba18a31a290c" }, "downloads": -1, "filename": "glcontext-1.0.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "4c3f4b2cd71ed429241886d7210b4387", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7952, "upload_time": "2019-11-14T03:33:36", "upload_time_iso_8601": "2019-11-14T03:33:36.224734Z", "url": "https://files.pythonhosted.org/packages/21/a7/dab5a47ae4502a73f90120703d7fe9296671b7bca2841782eeef7d22435d/glcontext-1.0.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce9dded18148dd83e1478c9cfa66c0bc", "sha256": "5e32fd376df95a7ef19c3745ff8ab0508f1697f7084c486d80c0dbc952ce45ac" }, "downloads": -1, "filename": "glcontext-1.0.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ce9dded18148dd83e1478c9cfa66c0bc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 33885, "upload_time": "2019-11-14T03:26:17", "upload_time_iso_8601": "2019-11-14T03:26:17.967023Z", "url": "https://files.pythonhosted.org/packages/76/ef/a35aaf32ca98d3c6ac429d8a4da9cb9b5d6d6a1538377debbc710c440546/glcontext-1.0.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bd9b1d13b0d1103d87e046fa34f4efc", "sha256": "323047a517367d228a85eaa3d04e17fce0da0fa83ff7822565aab0508d200ce4" }, "downloads": -1, "filename": "glcontext-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5bd9b1d13b0d1103d87e046fa34f4efc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 34614, "upload_time": "2019-11-14T03:26:19", "upload_time_iso_8601": "2019-11-14T03:26:19.459434Z", "url": "https://files.pythonhosted.org/packages/ca/47/d30964f97763d432dfb9b05fafa2446212efee209f5980661175b58ba9d1/glcontext-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e39c5668e4e704be02f30753e0de28b2", "sha256": "ebb6f774df99b7240b1cf39592c5658c0fcb0e8e5ef550f196f9790e3e0dc24f" }, "downloads": -1, "filename": "glcontext-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e39c5668e4e704be02f30753e0de28b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 6051, "upload_time": "2019-11-14T03:33:37", "upload_time_iso_8601": "2019-11-14T03:33:37.639184Z", "url": "https://files.pythonhosted.org/packages/7e/66/e1333e7ec6f8d6ed0d810e71dfe24972f64183f0b6fa1f648ae8e087debc/glcontext-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ac1c991c23e42c90281e23f584be525", "sha256": "ea006cfc44ce639dfd6d6f062d8239efcf24d30439b00797be4df3b5f62971b3" }, "downloads": -1, "filename": "glcontext-1.0.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2ac1c991c23e42c90281e23f584be525", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 34085, "upload_time": "2019-11-14T03:26:21", "upload_time_iso_8601": "2019-11-14T03:26:21.373314Z", "url": "https://files.pythonhosted.org/packages/57/c2/87e8c3de8926adf3bd33e06bea71218d8f90d2e771838b076e0d300c6761/glcontext-1.0.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb52151750139481a4832cd12373f926", "sha256": "a1a65e1765559a7e859c20d88c628c11529c8872222489e1be1681be88bded63" }, "downloads": -1, "filename": "glcontext-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cb52151750139481a4832cd12373f926", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 34828, "upload_time": "2019-11-14T03:26:22", "upload_time_iso_8601": "2019-11-14T03:26:22.966018Z", "url": "https://files.pythonhosted.org/packages/86/10/9c76c6f9acf42adcd2bea692cf2879f4db0ba54ba669a2bec2aa75fe9b10/glcontext-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46dec5fd78b9e8221c829c37fb41d489", "sha256": "56c6098fdb260bfbd17f66788447a355a52dc1cbce48609286669c93665bc644" }, "downloads": -1, "filename": "glcontext-1.0.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "46dec5fd78b9e8221c829c37fb41d489", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8698, "upload_time": "2019-11-14T03:13:49", "upload_time_iso_8601": "2019-11-14T03:13:49.265134Z", "url": "https://files.pythonhosted.org/packages/8a/bc/1107c6d143dacb9acef05c098e9b608ad950f00fae2bf39dd39fde730a34/glcontext-1.0.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8617725b59fcccf0c56229dabc106ff", "sha256": "b2c426f14d9840f8173305139cada44b79da60f70fec1a6372049ec25592af0b" }, "downloads": -1, "filename": "glcontext-1.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f8617725b59fcccf0c56229dabc106ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9597, "upload_time": "2019-11-14T03:13:50", "upload_time_iso_8601": "2019-11-14T03:13:50.749785Z", "url": "https://files.pythonhosted.org/packages/bb/f4/03476c403cbf96f27931565d3912ddafc8127f95dcd8ebef5f6bb697be1a/glcontext-1.0.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1d6939d8c84920254e487b7ca56a392", "sha256": "03ea1452f76957c1d3a3de78bb709f57b439ac5b4523e57d025f304f5c05991c" }, "downloads": -1, "filename": "glcontext-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d1d6939d8c84920254e487b7ca56a392", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 6052, "upload_time": "2019-11-14T03:33:39", "upload_time_iso_8601": "2019-11-14T03:33:39.145625Z", "url": "https://files.pythonhosted.org/packages/ff/b4/90ea2b8eab46e0c27e7904ab010d699430615139a588f8dcab46a7d58fe0/glcontext-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96af41f9e23445722625896698f32228", "sha256": "dd95830737f2690c100340b56f121a0bbd60a8e986a9e59b293ba32074381883" }, "downloads": -1, "filename": "glcontext-1.0.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "96af41f9e23445722625896698f32228", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 34450, "upload_time": "2019-11-14T03:26:24", "upload_time_iso_8601": "2019-11-14T03:26:24.467235Z", "url": "https://files.pythonhosted.org/packages/7b/86/5f82822eceb8e4858a4c165287e118b4c817ece40ce9d78ab0f3ab6e748d/glcontext-1.0.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2de989eeaef1ba2c3d1561e2f383e99", "sha256": "4e52d2bf7777d27d2bb84ff1ffd8e47124cb36b7cbebdfe145e9aaef1c821d9d" }, "downloads": -1, "filename": "glcontext-1.0.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f2de989eeaef1ba2c3d1561e2f383e99", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35231, "upload_time": "2019-11-14T03:26:25", "upload_time_iso_8601": "2019-11-14T03:26:25.979217Z", "url": "https://files.pythonhosted.org/packages/3b/ac/8de67962761dea173cc0ad62819f3af8b31844590af67353b9fe0038a3fe/glcontext-1.0.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d2d55cd77f825d28b214f4642abe205", "sha256": "04fd8abbee0e7bd914f9c46256743319c7124202971dd95d38a7fed5df1ef6a5" }, "downloads": -1, "filename": "glcontext-1.0.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0d2d55cd77f825d28b214f4642abe205", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8696, "upload_time": "2019-11-14T03:13:52", "upload_time_iso_8601": "2019-11-14T03:13:52.306101Z", "url": "https://files.pythonhosted.org/packages/69/55/4bafc5a1a62435281dc7a9e6ffb403300aeb6cfce6ea1a0cdf5f0ea4a45d/glcontext-1.0.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9cdef764fca8408d5900af0c67e151a4", "sha256": "e90aaf17dbb5bbfa5d1de7f1dc8d785be4c0abecdcc4c3239b0cf22216951376" }, "downloads": -1, "filename": "glcontext-1.0.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "9cdef764fca8408d5900af0c67e151a4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9600, "upload_time": "2019-11-14T03:13:53", "upload_time_iso_8601": "2019-11-14T03:13:53.786710Z", "url": "https://files.pythonhosted.org/packages/ce/79/4c7def06d21ce195073990172a05d09024e415a084566b1586e74e97d5b3/glcontext-1.0.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d27f5000af85093434186ec21b5e889f", "sha256": "8442da5baf57270c04c6ab315596ee0c3fffb9694a6a14051f33290d9dde72fe" }, "downloads": -1, "filename": "glcontext-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d27f5000af85093434186ec21b5e889f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 6100, "upload_time": "2019-11-14T03:33:40", "upload_time_iso_8601": "2019-11-14T03:33:40.584567Z", "url": "https://files.pythonhosted.org/packages/6d/95/cbb137194a8854022d08c6a7a493627a81c4827f7cafb1bfd6e6d5cddac0/glcontext-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2180436f381ca559f4e255db6c3987f", "sha256": "9852b75a5720efc0defd753a3315dd02262880898146fd03154f0b4b18079214" }, "downloads": -1, "filename": "glcontext-1.0.0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e2180436f381ca559f4e255db6c3987f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 35039, "upload_time": "2019-11-14T03:26:27", "upload_time_iso_8601": "2019-11-14T03:26:27.593213Z", "url": "https://files.pythonhosted.org/packages/a9/f3/9ebe32464ff78ce7cede902e46e0c82aa9d439c13f8fdc07dddf32b708ec/glcontext-1.0.0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a59700c5a423cb0bcfdaf755503667c2", "sha256": "467c55bfd68a5509d14e1b8a7f634aefa18c6235517560920a7774ed87f9f3e9" }, "downloads": -1, "filename": "glcontext-1.0.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a59700c5a423cb0bcfdaf755503667c2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 35863, "upload_time": "2019-11-14T03:26:29", "upload_time_iso_8601": "2019-11-14T03:26:29.113547Z", "url": "https://files.pythonhosted.org/packages/cd/4a/cd252aa7d945c4d5514cd937136c5ecd0f7b3c1de296af689bf1898ef1ae/glcontext-1.0.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58d784b7968c87d58e38221061d9a721", "sha256": "73fbf9137782b214cfe5879eda11e5c0ce8514239e832d0d78182751453e9429" }, "downloads": -1, "filename": "glcontext-1.0.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "58d784b7968c87d58e38221061d9a721", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8748, "upload_time": "2019-11-14T03:13:55", "upload_time_iso_8601": "2019-11-14T03:13:55.190185Z", "url": "https://files.pythonhosted.org/packages/8b/65/224f86c24681aa0f56c7d2a0c24b2f25c095280f08097911b2daa3be5f1c/glcontext-1.0.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f687582cc2317ba2db18feb4d185604", "sha256": "572606c4d1a881db64cefae74d31daccc5bef4c38f0410c24160685c19e78db5" }, "downloads": -1, "filename": "glcontext-1.0.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3f687582cc2317ba2db18feb4d185604", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9655, "upload_time": "2019-11-14T03:13:56", "upload_time_iso_8601": "2019-11-14T03:13:56.640674Z", "url": "https://files.pythonhosted.org/packages/f4/c0/71bf741d40fa0f51665243da38cb0112d159c4c31e57e6b2e0907c55b343/glcontext-1.0.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "082b762f2ced9c4b1a07b679e545a8af", "sha256": "550d8013ecd8d336d5c981ebf0b81eae5558a43112436620a420c4a71d0cc543" }, "downloads": -1, "filename": "glcontext-1.0.0.tar.gz", "has_sig": false, "md5_digest": "082b762f2ced9c4b1a07b679e545a8af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10241, "upload_time": "2019-11-14T03:08:45", "upload_time_iso_8601": "2019-11-14T03:08:45.148875Z", "url": "https://files.pythonhosted.org/packages/1c/cc/523af356f3c720629ac6c59301a9b95868d87e70cd3c5389938415d68195/glcontext-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "c1445417eddbae0bbd3ecbb00591268b", "sha256": "86d18e4781595f2a2ab4e8e7bce3ec2a08fe57168fb88deee7bbe75a0e6e02b7" }, "downloads": -1, "filename": "glcontext-1.0.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c1445417eddbae0bbd3ecbb00591268b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 9188, "upload_time": "2019-11-22T22:55:30", "upload_time_iso_8601": "2019-11-22T22:55:30.439102Z", "url": "https://files.pythonhosted.org/packages/36/b5/d74c10edf21dba1bb731a88a8c4d472ae573db64c8ddafa7344bc42aadc4/glcontext-1.0.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b8793bef91d793020f6203848827e31", "sha256": "efdd4e4aab55a64b85121e74caf4f5e54e779a8ccb67c7fde7640341348f7011" }, "downloads": -1, "filename": "glcontext-1.0.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8b8793bef91d793020f6203848827e31", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 35157, "upload_time": "2019-11-22T23:24:05", "upload_time_iso_8601": "2019-11-22T23:24:05.708556Z", "url": "https://files.pythonhosted.org/packages/64/6d/114d0256d673fb23cd0b33e54f180159a9dca7d9e21b36a79cdb17d56e61/glcontext-1.0.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eda27022d03ec3dd90dbc25582f41c14", "sha256": "ad49dcb22cd99baae0f2fe524b8ff9ff155cd791f33324720bcaea367ba5bc4a" }, "downloads": -1, "filename": "glcontext-1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eda27022d03ec3dd90dbc25582f41c14", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 35877, "upload_time": "2019-11-22T23:24:07", "upload_time_iso_8601": "2019-11-22T23:24:07.246909Z", "url": "https://files.pythonhosted.org/packages/0b/d6/49d6d76c424d28011f80b3a85c4397ea5a56574cb1844e6f276062e2edb6/glcontext-1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "607c4354aa6599af68b3b34f0f519df1", "sha256": "b88d7f6f0d5eb8e24fefb186be824fd7093a9a954d043aa287d3af3afc56e9a3" }, "downloads": -1, "filename": "glcontext-1.0.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "607c4354aa6599af68b3b34f0f519df1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10059, "upload_time": "2019-11-22T22:47:07", "upload_time_iso_8601": "2019-11-22T22:47:07.253975Z", "url": "https://files.pythonhosted.org/packages/86/bb/2acd17964ae2a0ba689613474f3ff0dce52103be30904947906317cfb7a0/glcontext-1.0.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb06ff3ea191bd46756e7e02378bd216", "sha256": "7ae4965d1a5930b60c7e3ce6303cf4b2b2b6461c34328489401c7a2ee0c6a2a9" }, "downloads": -1, "filename": "glcontext-1.0.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "bb06ff3ea191bd46756e7e02378bd216", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10966, "upload_time": "2019-11-22T22:47:08", "upload_time_iso_8601": "2019-11-22T22:47:08.492301Z", "url": "https://files.pythonhosted.org/packages/ac/4a/b43daff3ea6607b5519e90d7b7c8185ce5e9dc262eda8645bae8e91be536/glcontext-1.0.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8358d874e57b4dd291662d9f32643c95", "sha256": "e8755ae7704058421fa84106ae0f08aaa4c62d752cbf2954951a5ee970b92241" }, "downloads": -1, "filename": "glcontext-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8358d874e57b4dd291662d9f32643c95", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7294, "upload_time": "2019-11-22T22:55:31", "upload_time_iso_8601": "2019-11-22T22:55:31.773305Z", "url": "https://files.pythonhosted.org/packages/12/72/39b5e4694b34f5fa19784386d8926888efc2e7b583837c9bd10e5e0b31dc/glcontext-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03ccc88c6c0d25f3c3c5589d5607ed6d", "sha256": "f2717e6656ccd83868c358029bb9af18bf75050ed569ca200015eb74be775deb" }, "downloads": -1, "filename": "glcontext-1.0.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "03ccc88c6c0d25f3c3c5589d5607ed6d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35357, "upload_time": "2019-11-22T23:24:08", "upload_time_iso_8601": "2019-11-22T23:24:08.873471Z", "url": "https://files.pythonhosted.org/packages/bd/64/e85c07c280ba642988f4b3a4057358e19f5c065f7958ee5d6462c5a430ec/glcontext-1.0.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e829fef8c71a21eeba5fa588f8f0edc", "sha256": "4af3794ed420c81783d10fefb44da363958ffd924534fda4ee0b9bef64f3abd9" }, "downloads": -1, "filename": "glcontext-1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7e829fef8c71a21eeba5fa588f8f0edc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 36094, "upload_time": "2019-11-22T23:24:10", "upload_time_iso_8601": "2019-11-22T23:24:10.513898Z", "url": "https://files.pythonhosted.org/packages/4e/8a/60232a3d1c2b61ea03fb750662191024ac8b4cfa4216cb0be964b49d77bc/glcontext-1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3459bda3a7d4bb78991bcac66ec46a0", "sha256": "18958aab5b780bc6281b8488eaaff00f55cf3402c28cc117f5e6cd4d6dbdac42" }, "downloads": -1, "filename": "glcontext-1.0.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f3459bda3a7d4bb78991bcac66ec46a0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9933, "upload_time": "2019-11-22T22:47:09", "upload_time_iso_8601": "2019-11-22T22:47:09.972649Z", "url": "https://files.pythonhosted.org/packages/d7/7d/610b099550126dd02a69e2d15924350d47f010fc36c6417c9687e6c66c95/glcontext-1.0.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "956b211a90878f323901492a7e5bf3c7", "sha256": "26ebaef488d3438ed6c00d06e02c2f07d3a711c8b0d07d8f7f82562b4fe4219e" }, "downloads": -1, "filename": "glcontext-1.0.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "956b211a90878f323901492a7e5bf3c7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10831, "upload_time": "2019-11-22T22:47:11", "upload_time_iso_8601": "2019-11-22T22:47:11.506033Z", "url": "https://files.pythonhosted.org/packages/91/28/b0d3e487b320310737e2e52ff3f75f9613f5c2f2a9c36b3b7cd5f040a776/glcontext-1.0.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03ad4273459dbad8bfb09c9e227f712c", "sha256": "75fd4a9debfdd8121a352d90f9e8ded42a1e040f1ea8ba3143c3b0cd514dafcc" }, "downloads": -1, "filename": "glcontext-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "03ad4273459dbad8bfb09c9e227f712c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7293, "upload_time": "2019-11-22T22:55:32", "upload_time_iso_8601": "2019-11-22T22:55:32.886022Z", "url": "https://files.pythonhosted.org/packages/45/eb/9044b9a4c15de7414bdc0d41ed89d23ba1e6bbcfc5a3b5d03ae3f96b9a63/glcontext-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1c350407b4d5275bda46282ca840373", "sha256": "d35c203f011dd7381662d0079fa9cc175a38bcaa6eabe278465c51968cf71c8a" }, "downloads": -1, "filename": "glcontext-1.0.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a1c350407b4d5275bda46282ca840373", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 35729, "upload_time": "2019-11-22T23:24:11", "upload_time_iso_8601": "2019-11-22T23:24:11.686908Z", "url": "https://files.pythonhosted.org/packages/d2/07/d1ac7f41a6adca05ab1441e9ff02a882bb3661240ebcbebccbea99e0f09c/glcontext-1.0.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69467577618212ae7eba346b051ea9e6", "sha256": "65afef4cf94fe3630c94769cad70d416118fc8efcbb21af168cadb805e45cbfb" }, "downloads": -1, "filename": "glcontext-1.0.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "69467577618212ae7eba346b051ea9e6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 36493, "upload_time": "2019-11-22T23:24:12", "upload_time_iso_8601": "2019-11-22T23:24:12.945401Z", "url": "https://files.pythonhosted.org/packages/b5/83/481d48a52f8a90f5fce0cb2517f49cc24af4a8089b77267534d46216198e/glcontext-1.0.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e45842731a349127c43785ffd09c3a4", "sha256": "84a7f8273f3e99a5327dee9e339797e96772b60e2a482a63eeddd39c3ee839bb" }, "downloads": -1, "filename": "glcontext-1.0.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "7e45842731a349127c43785ffd09c3a4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9929, "upload_time": "2019-11-22T22:47:12", "upload_time_iso_8601": "2019-11-22T22:47:12.628311Z", "url": "https://files.pythonhosted.org/packages/c4/be/dea015e2853993a11415a582b0dcc02adf57323f9ce48ab4551985a7fd63/glcontext-1.0.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68f9bec16cb38fbaac2738b996af0a34", "sha256": "7759ca3cc2c61030f4d321efcab288e8ddd3b3ed7c339b15ea9c3985a06d0228" }, "downloads": -1, "filename": "glcontext-1.0.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "68f9bec16cb38fbaac2738b996af0a34", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 10831, "upload_time": "2019-11-22T22:47:14", "upload_time_iso_8601": "2019-11-22T22:47:14.091820Z", "url": "https://files.pythonhosted.org/packages/04/d5/4ae552e0c664404b93222aa1e95ba67b56895a8b3bd940338bb4846c648c/glcontext-1.0.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8fb32c4da6e7a9f796a5059788d78b2", "sha256": "0e117ea26641c67c0e92a37eed75f11953b7d11920842970b7d89c1adb494e71" }, "downloads": -1, "filename": "glcontext-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d8fb32c4da6e7a9f796a5059788d78b2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7343, "upload_time": "2019-11-22T22:55:34", "upload_time_iso_8601": "2019-11-22T22:55:34.433303Z", "url": "https://files.pythonhosted.org/packages/26/59/85b013f14abdf153197205aa38f08f860df7ce5a7f952c8371ae1ed39653/glcontext-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59d05e19dc77488362642229a536929b", "sha256": "aa864691ac6594e3b65e3d6708d95d3cb9620d27917e104b3eda021dccdb5cef" }, "downloads": -1, "filename": "glcontext-1.0.1-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "59d05e19dc77488362642229a536929b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 36311, "upload_time": "2019-11-22T23:24:14", "upload_time_iso_8601": "2019-11-22T23:24:14.298524Z", "url": "https://files.pythonhosted.org/packages/ab/d7/94159312b637d1049e7b25a3ee4b4091d77608a48265944bc1a97c2261a1/glcontext-1.0.1-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2341370acf81570aa7d7b7c2fbf8ec7", "sha256": "4c522f0309f943d9e220d41415584bdb26a7ca56e1c02807103b6290c0b40e94" }, "downloads": -1, "filename": "glcontext-1.0.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f2341370acf81570aa7d7b7c2fbf8ec7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 37127, "upload_time": "2019-11-22T23:24:15", "upload_time_iso_8601": "2019-11-22T23:24:15.521346Z", "url": "https://files.pythonhosted.org/packages/62/99/e492dd8ce663e8956d9a42785539e8ebf10b5de46d8d1ca08deb49214203/glcontext-1.0.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "059d256128450ffe024dc8a9bd531ff1", "sha256": "5fb95875ce60caaa9d84b66c6b3742baa6dc9f0349086ea778fca47b199f59b8" }, "downloads": -1, "filename": "glcontext-1.0.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "059d256128450ffe024dc8a9bd531ff1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9978, "upload_time": "2019-11-22T22:47:15", "upload_time_iso_8601": "2019-11-22T22:47:15.276501Z", "url": "https://files.pythonhosted.org/packages/46/21/117cd01c11237b937147f9c8aaf037bfaef4bf6cb57f9c01f743b09883df/glcontext-1.0.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fcf3df10edcbca643ef3f0047ebbd12", "sha256": "4a31f66567123af58edecf089f8f691db7f3703e4e5a0e919633db5e98fefe10" }, "downloads": -1, "filename": "glcontext-1.0.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "0fcf3df10edcbca643ef3f0047ebbd12", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 10889, "upload_time": "2019-11-22T22:47:16", "upload_time_iso_8601": "2019-11-22T22:47:16.831967Z", "url": "https://files.pythonhosted.org/packages/19/91/990290b6416a3dd8d0cb42570ff2b04dd47b4ba50b2341dd0538b83b54c5/glcontext-1.0.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbf9948695644df11ab25140a7083f7e", "sha256": "5df6d1c11cf7221eca4c27a5a49bcf122879c8b59a88027b081ae1a7777ab955" }, "downloads": -1, "filename": "glcontext-1.0.1.tar.gz", "has_sig": false, "md5_digest": "cbf9948695644df11ab25140a7083f7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11857, "upload_time": "2019-11-22T23:04:58", "upload_time_iso_8601": "2019-11-22T23:04:58.001065Z", "url": "https://files.pythonhosted.org/packages/c2/c8/08816fecadd7483f71ed4fafeb38517181551084e6904594cbb19459dbde/glcontext-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "68d12c95bcf7c5e7c595e5e84139a7a5", "sha256": "c47ebe134f3bd22a60d5bec48a60fc28e4bdf2340ef864b449d82d520b254459" }, "downloads": -1, "filename": "glcontext-2.0.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "68d12c95bcf7c5e7c595e5e84139a7a5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10151, "upload_time": "2020-01-27T01:26:46", "upload_time_iso_8601": "2020-01-27T01:26:46.879588Z", "url": "https://files.pythonhosted.org/packages/e7/3b/82621a6d55c3a91dbf3a07fe26bb018b94f606bc8504cec2ed0ef18d2e16/glcontext-2.0.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0611588c8bb5b11b99dd23b90d66e69e", "sha256": "c721963efbb570e40b848b1e74e8ecce730f985541e5cf55b88e1dc5e0c15c17" }, "downloads": -1, "filename": "glcontext-2.0.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0611588c8bb5b11b99dd23b90d66e69e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 36263, "upload_time": "2020-01-27T01:23:58", "upload_time_iso_8601": "2020-01-27T01:23:58.172627Z", "url": "https://files.pythonhosted.org/packages/3f/8f/30729477d5ec055af1e95cf4ced863b984dd166cee688cb9ed36b2a70a3f/glcontext-2.0.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6be1e29220442a6db084ce1910162956", "sha256": "1c04793b4b04d22afae2a63466906fe7b72f19c9cae3d0f74fd5effa165b6274" }, "downloads": -1, "filename": "glcontext-2.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6be1e29220442a6db084ce1910162956", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 36970, "upload_time": "2020-01-27T01:23:59", "upload_time_iso_8601": "2020-01-27T01:23:59.609164Z", "url": "https://files.pythonhosted.org/packages/58/6e/6cc9f596059893b6cb9a0bebf6708609cda2f8ae646a980c7ba528792958/glcontext-2.0.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d9cb40b8a9d5953466e3ddbc1af671f", "sha256": "776581d42bc4c020ccb7c9041b0d8ed7c4d457339101f32e927ae3ccd616cb86" }, "downloads": -1, "filename": "glcontext-2.0.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4d9cb40b8a9d5953466e3ddbc1af671f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11086, "upload_time": "2020-01-27T01:27:28", "upload_time_iso_8601": "2020-01-27T01:27:28.265652Z", "url": "https://files.pythonhosted.org/packages/18/43/98653e1757917d850cc77e830b217e5fa92ffde2b39d6725747a0318ea67/glcontext-2.0.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0dd02c05a329606b20e6d73e8071bd20", "sha256": "ff8ded63429e957fd6e6e101934be9cadae304b687c95090d8ad7a55b73b0d3b" }, "downloads": -1, "filename": "glcontext-2.0.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0dd02c05a329606b20e6d73e8071bd20", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11986, "upload_time": "2020-01-27T01:27:29", "upload_time_iso_8601": "2020-01-27T01:27:29.169970Z", "url": "https://files.pythonhosted.org/packages/c6/8e/6ee6e412a341b28ff614f89db7fc5a44249fec63a94f141b4567a85d7aa1/glcontext-2.0.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ca138a1120b9e996f56bf361e97cdac", "sha256": "98cb5238cc1f67a2c8f8efd9dd04f15b703615bc19083dc10f4c5b0976957fb8" }, "downloads": -1, "filename": "glcontext-2.0.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0ca138a1120b9e996f56bf361e97cdac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10151, "upload_time": "2020-01-27T01:26:47", "upload_time_iso_8601": "2020-01-27T01:26:47.709890Z", "url": "https://files.pythonhosted.org/packages/65/6c/4e5b3379ec3bc660489932e63d5b3b04fd643652fc793794d7fbceb04ec2/glcontext-2.0.0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f46b45560d8b4d308ddac1d194bef1b", "sha256": "64a03bf3cc23eaf500c8267516a44d5a982ff8d23abf2df637e0ba2a5320a5c4" }, "downloads": -1, "filename": "glcontext-2.0.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3f46b45560d8b4d308ddac1d194bef1b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 36446, "upload_time": "2020-01-27T01:24:01", "upload_time_iso_8601": "2020-01-27T01:24:01.011148Z", "url": "https://files.pythonhosted.org/packages/71/51/c2e39d100b9e31e0e2240c86c86b7e13dc98e6988359f9f3bdb2dfe55e8a/glcontext-2.0.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b1acf0ef11aa88bcef7013e0090896b", "sha256": "eb7ae9836a29b265480ec136f206bbc34f5cbbe46df9287882659a804ef7274b" }, "downloads": -1, "filename": "glcontext-2.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3b1acf0ef11aa88bcef7013e0090896b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 37187, "upload_time": "2020-01-27T01:24:02", "upload_time_iso_8601": "2020-01-27T01:24:02.443643Z", "url": "https://files.pythonhosted.org/packages/12/3e/7c1d9ff077ae56c78dff7b774869a19f023e1dc542231e0f8321a30398ad/glcontext-2.0.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89236df325d72e1e834dcf4283cf8935", "sha256": "48d000bff48c27e34f456ab08ec94e8655e8d081c1597cc60a9a9e8c556c9ae6" }, "downloads": -1, "filename": "glcontext-2.0.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "89236df325d72e1e834dcf4283cf8935", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10951, "upload_time": "2020-01-27T01:27:30", "upload_time_iso_8601": "2020-01-27T01:27:30.517607Z", "url": "https://files.pythonhosted.org/packages/74/43/3339e5599c06817ed460c6c7659f561c0058d8485c858de60852743457dd/glcontext-2.0.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a283b4cdb7e7932cdb1f12fa325f1071", "sha256": "4138ac73175385f4bdd97cb8a603e98fd7f721c89e96673dd99ad10eea1a0f50" }, "downloads": -1, "filename": "glcontext-2.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a283b4cdb7e7932cdb1f12fa325f1071", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11855, "upload_time": "2020-01-27T01:27:32", "upload_time_iso_8601": "2020-01-27T01:27:32.039558Z", "url": "https://files.pythonhosted.org/packages/8f/ac/140386a39ba64f876d5d73a4e060a550a5d77a2517dbf07c41828770039f/glcontext-2.0.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ac4d099704a44bbdb1f900413af6dfe", "sha256": "694557e3d40310ada0ff1cd4ec44e6688bffb2f8410d65dd5d05612e8c9f011b" }, "downloads": -1, "filename": "glcontext-2.0.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "3ac4d099704a44bbdb1f900413af6dfe", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 10151, "upload_time": "2020-01-27T01:26:48", "upload_time_iso_8601": "2020-01-27T01:26:48.539619Z", "url": "https://files.pythonhosted.org/packages/04/45/0285c6aeaa7dd45d5f87d52e7e725ffd693266dd6a61feb1f7bf014cc6b0/glcontext-2.0.0-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f5b55d9b59faeb54ec2e034eab8a6c8", "sha256": "9f60440ecff89f8861f90600969360d7c73c3262f451db046ee965dbac5d93ed" }, "downloads": -1, "filename": "glcontext-2.0.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5f5b55d9b59faeb54ec2e034eab8a6c8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 36818, "upload_time": "2020-01-27T01:24:03", "upload_time_iso_8601": "2020-01-27T01:24:03.521616Z", "url": "https://files.pythonhosted.org/packages/e8/6f/12593014f163db4e9305dc26e6e4116b3bc6612bedd178f2a8b18233a473/glcontext-2.0.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a581a989dd981c30557cc85e37bb957", "sha256": "de736cf8623afebc2fd6758529c9e7ef3bf612c9265cb7af17e288e5c5c1c31d" }, "downloads": -1, "filename": "glcontext-2.0.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a581a989dd981c30557cc85e37bb957", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 37603, "upload_time": "2020-01-27T01:24:04", "upload_time_iso_8601": "2020-01-27T01:24:04.997701Z", "url": "https://files.pythonhosted.org/packages/2c/ec/e6b04662d9868fc76b29f9b2fdaa826c1654d217cc132c3881e8125faf7e/glcontext-2.0.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c342e650e30e58e4411cf6044f43c8ac", "sha256": "667db22c9fdd2a815bb14a66840e2548081518908300b0aaca9a196d0591308b" }, "downloads": -1, "filename": "glcontext-2.0.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c342e650e30e58e4411cf6044f43c8ac", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 10949, "upload_time": "2020-01-27T01:27:32", "upload_time_iso_8601": "2020-01-27T01:27:32.912072Z", "url": "https://files.pythonhosted.org/packages/d2/50/71674685707174229f5161c44b6b0f91ceb492c3bc26f58ef7f9bd758fa7/glcontext-2.0.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "928f7cf653e48ab02ef1a3277116185c", "sha256": "ebaa6c939d670c036184cbc4816503b5b616015f7c45ef8c50751f1fbd0b5e14" }, "downloads": -1, "filename": "glcontext-2.0.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "928f7cf653e48ab02ef1a3277116185c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11856, "upload_time": "2020-01-27T01:27:33", "upload_time_iso_8601": "2020-01-27T01:27:33.907006Z", "url": "https://files.pythonhosted.org/packages/cd/83/575fbf72c5676845fa59f9b2c98b75cc1803acf2970d0db3db10a69d0842/glcontext-2.0.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e602bceab08bedb8fd43ee00e2eca477", "sha256": "7d51e17f016409fc67bf9acfd98712be2264309cb441c9c6e3bafc4e78b87185" }, "downloads": -1, "filename": "glcontext-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e602bceab08bedb8fd43ee00e2eca477", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8375, "upload_time": "2020-01-27T01:26:49", "upload_time_iso_8601": "2020-01-27T01:26:49.891991Z", "url": "https://files.pythonhosted.org/packages/ce/87/21159c79071d70e8a1b5b112c35cbe77cff7026994bd97c967b66b0bd13a/glcontext-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffe33331064e740ee797e17bd03c380c", "sha256": "60a62c953d55b6a13948a34bef77fffe5d7c15dba571f51ff15c9490a1ced5d4" }, "downloads": -1, "filename": "glcontext-2.0.0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ffe33331064e740ee797e17bd03c380c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 37401, "upload_time": "2020-01-27T01:24:05", "upload_time_iso_8601": "2020-01-27T01:24:05.996338Z", "url": "https://files.pythonhosted.org/packages/c8/dc/86db5c8527914c0b7ce22824a0119a3344d402d1669150bb12a4479fe287/glcontext-2.0.0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f39c861b3ed9ae87191223cdca06383", "sha256": "a57750f3d8fb5c191736cdf20ae5d20311f5daa59be21ab74a9d8eb658d3a800" }, "downloads": -1, "filename": "glcontext-2.0.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5f39c861b3ed9ae87191223cdca06383", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 38231, "upload_time": "2020-01-27T01:24:06", "upload_time_iso_8601": "2020-01-27T01:24:06.988069Z", "url": "https://files.pythonhosted.org/packages/68/b7/01a6f0d9435f7549eb9f39b4faed0072b5231d10a022dea88d633d7d9a68/glcontext-2.0.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a06258c23d1b763bcdfe570bf55bffa9", "sha256": "0e863e7d03acdd4585238dbd5a67eaf9a2802871380bf3b400c1c0892e9c59af" }, "downloads": -1, "filename": "glcontext-2.0.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "a06258c23d1b763bcdfe570bf55bffa9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11003, "upload_time": "2020-01-27T01:27:34", "upload_time_iso_8601": "2020-01-27T01:27:34.978186Z", "url": "https://files.pythonhosted.org/packages/79/db/53e8310b85df843c1cef4c113b781160fb09caaa3da7029d1f805722d67d/glcontext-2.0.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69b414dd471da7dcf0531267010b4de7", "sha256": "44d058c0fc505e67260e2a4e1c9e06511747ce1eea3286350f9a53b48af5c08b" }, "downloads": -1, "filename": "glcontext-2.0.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "69b414dd471da7dcf0531267010b4de7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11906, "upload_time": "2020-01-27T01:27:35", "upload_time_iso_8601": "2020-01-27T01:27:35.841388Z", "url": "https://files.pythonhosted.org/packages/62/fb/04b277e0f45ccc352bc902ee6607fa77a697b67cc72a3abed16302193d88/glcontext-2.0.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "4aff21af3c1ab4ae451cf3db1f708c5c", "sha256": "eba19b1264042b4ec399d2c73302d4bf3c4c14e25809738a70537b1791695c79" }, "downloads": -1, "filename": "glcontext-2.1.0-cp35-cp35m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "4aff21af3c1ab4ae451cf3db1f708c5c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10551, "upload_time": "2020-03-22T08:43:32", "upload_time_iso_8601": "2020-03-22T08:43:32.090839Z", "url": "https://files.pythonhosted.org/packages/bf/db/69c82acf4890abff9e9b2d8ecf5caced3a6fe268b323f0d3919eaef98f78/glcontext-2.1.0-cp35-cp35m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfebdb894ed930b7e13232e6ee805bb5", "sha256": "d92b52a589eec92252d691c7726a890f19ca84ce4f9a83ad71ef7d443de1b149" }, "downloads": -1, "filename": "glcontext-2.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bfebdb894ed930b7e13232e6ee805bb5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 36959, "upload_time": "2020-03-22T08:32:11", "upload_time_iso_8601": "2020-03-22T08:32:11.202196Z", "url": "https://files.pythonhosted.org/packages/0c/fe/db42ab0daa6a3deef0d7dcac722da5a2c9a130262e0c8359e3d7705abf64/glcontext-2.1.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e531193dbd90bf0c3ee4204de94b066", "sha256": "482f5de83a4c5fd184da6cfc04af321510254685e9a9f4aea8af6b80d4cc39c1" }, "downloads": -1, "filename": "glcontext-2.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2e531193dbd90bf0c3ee4204de94b066", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 37534, "upload_time": "2020-03-22T08:32:12", "upload_time_iso_8601": "2020-03-22T08:32:12.424662Z", "url": "https://files.pythonhosted.org/packages/c7/fd/b894c199021c60e6b367b891ce62eedaf58f274b2378a3e247c80230bc9c/glcontext-2.1.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5b18bdc2322c08d4b921b9da76797ef", "sha256": "739d8714afec73f9a0c346dd3f2595e6108318a65b6fd89f86b19c11591195dc" }, "downloads": -1, "filename": "glcontext-2.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "a5b18bdc2322c08d4b921b9da76797ef", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11524, "upload_time": "2020-03-22T09:20:51", "upload_time_iso_8601": "2020-03-22T09:20:51.057680Z", "url": "https://files.pythonhosted.org/packages/40/c0/2f8eb8c53c06aca5109b73e010f6270c289cf7f9bdf01701d604653f56a6/glcontext-2.1.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a612f0eb88d9454c116f0999e78b8526", "sha256": "b858fcd55d7db27f1620a64ff0ffdafa5127de2d90c46e651804b1c866abcef0" }, "downloads": -1, "filename": "glcontext-2.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a612f0eb88d9454c116f0999e78b8526", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12239, "upload_time": "2020-03-22T09:20:52", "upload_time_iso_8601": "2020-03-22T09:20:52.346731Z", "url": "https://files.pythonhosted.org/packages/e6/9a/e82252d97b96141b59ee26bb364faadee0c761348a26e3c4336b9365ac86/glcontext-2.1.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08402673d5e1b5cecd36d244d395e3fc", "sha256": "33dba5f5e656e13fdc0be8e7d9509f8c43cb5631c7eb205d52b6aeb8fb7283dd" }, "downloads": -1, "filename": "glcontext-2.1.0-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "08402673d5e1b5cecd36d244d395e3fc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10551, "upload_time": "2020-03-22T08:43:32", "upload_time_iso_8601": "2020-03-22T08:43:32.954044Z", "url": "https://files.pythonhosted.org/packages/0a/e5/3c21adee5ce82b2967bd7156430cb6f198e331c19771a8ef2439851402b1/glcontext-2.1.0-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e3f2f351d5dd0496708be3782de2c8f", "sha256": "7b8190e4533820b657777f16b9df8e22327eff64cde57e51d83c035a79e97d2a" }, "downloads": -1, "filename": "glcontext-2.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1e3f2f351d5dd0496708be3782de2c8f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 37157, "upload_time": "2020-03-22T08:32:13", "upload_time_iso_8601": "2020-03-22T08:32:13.625167Z", "url": "https://files.pythonhosted.org/packages/dd/6a/60418d5affd9a360182ac4e2e966a8286c2039d0ed2c9cd24cf93bd5c3ae/glcontext-2.1.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b575ef6f982904aee5b3d33ea69818f9", "sha256": "c28d34f6afa6a932141826822ba4c5a7a1853ca8ca44eca69de5342d4870f17f" }, "downloads": -1, "filename": "glcontext-2.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b575ef6f982904aee5b3d33ea69818f9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 37748, "upload_time": "2020-03-22T08:32:15", "upload_time_iso_8601": "2020-03-22T08:32:15.053951Z", "url": "https://files.pythonhosted.org/packages/45/18/4f38c4e6676d231cbd87157d9856334ca9c04fe6b7bd04ed6e5ccb236934/glcontext-2.1.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a1d1c6a93417d51d24f694ddc455386", "sha256": "050aea9e2406aa457222c5c1aedde591a0799cc30550c56bc74c2f39ad512154" }, "downloads": -1, "filename": "glcontext-2.1.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5a1d1c6a93417d51d24f694ddc455386", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11526, "upload_time": "2020-03-22T09:20:53", "upload_time_iso_8601": "2020-03-22T09:20:53.736022Z", "url": "https://files.pythonhosted.org/packages/17/49/8734364cdbb2e984ff02f95d044a40ba437dd0ad5eaffa6dc72b8c11e390/glcontext-2.1.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "600396cac30a63bd0427263f07c63115", "sha256": "935d2c9e4d0c29573a97fcdefdafa6890be1b774ce7bdad14d1e11ed9ebf1618" }, "downloads": -1, "filename": "glcontext-2.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "600396cac30a63bd0427263f07c63115", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12238, "upload_time": "2020-03-22T09:20:54", "upload_time_iso_8601": "2020-03-22T09:20:54.938930Z", "url": "https://files.pythonhosted.org/packages/db/fb/8b549f7df2ccf6ef5f0ada504343dbd88d534853b751a3124de249859690/glcontext-2.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5bba0b4793170e2e9755ed6b5d90469", "sha256": "1857d166ded2acdaffe0f238cda6c68c736ba6d49d1f6bd23bfe383050dae1be" }, "downloads": -1, "filename": "glcontext-2.1.0-cp37-cp37m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "f5bba0b4793170e2e9755ed6b5d90469", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 10550, "upload_time": "2020-03-22T08:43:33", "upload_time_iso_8601": "2020-03-22T08:43:33.930401Z", "url": "https://files.pythonhosted.org/packages/37/b2/dbd3c437f59b9e06a73e92b73bf7be95a3ef7eaacfd5a247ff44bf760463/glcontext-2.1.0-cp37-cp37m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "868c39cc3787044ca413e111f72f29a6", "sha256": "6e31c84f473de75b9fe9caeb6c976f5aea3d2f35c12309caf98a24d314a2bd5a" }, "downloads": -1, "filename": "glcontext-2.1.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "868c39cc3787044ca413e111f72f29a6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 37529, "upload_time": "2020-03-22T08:32:16", "upload_time_iso_8601": "2020-03-22T08:32:16.237589Z", "url": "https://files.pythonhosted.org/packages/96/cb/c94a9599931108bb85582a1484321a0a98d0276d63394becc6af58c6f0bc/glcontext-2.1.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9af57096fc7b9593c80a95834c286df2", "sha256": "8eccb6d46eac41b8ae81b363446213f7e7db09b66a8cb68636694d93c939d0f2" }, "downloads": -1, "filename": "glcontext-2.1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9af57096fc7b9593c80a95834c286df2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38163, "upload_time": "2020-03-22T08:32:17", "upload_time_iso_8601": "2020-03-22T08:32:17.504593Z", "url": "https://files.pythonhosted.org/packages/2f/64/dc205751126b2d82223ae5f959541524d39c849c0e40a25a8893cda6a9c3/glcontext-2.1.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cea8aa1fcae353553fbb8c9da6a4a3a5", "sha256": "e298419d42506fe6a40dc41677df25b84f51271c2961f9e19b29886e58f29396" }, "downloads": -1, "filename": "glcontext-2.1.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "cea8aa1fcae353553fbb8c9da6a4a3a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11525, "upload_time": "2020-03-22T09:20:55", "upload_time_iso_8601": "2020-03-22T09:20:55.987885Z", "url": "https://files.pythonhosted.org/packages/f9/cd/0d616e1f191a544bff4d5643a64710cad9f58856da6bb4c49f343d3f72e2/glcontext-2.1.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cc6e1545e1cc57ed85a76e4dd694431", "sha256": "2af1444cdea78c7c9561f4fadc63c2b4d9370ae2d639126f8481ac0331900e16" }, "downloads": -1, "filename": "glcontext-2.1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0cc6e1545e1cc57ed85a76e4dd694431", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12238, "upload_time": "2020-03-22T09:20:56", "upload_time_iso_8601": "2020-03-22T09:20:56.970778Z", "url": "https://files.pythonhosted.org/packages/74/99/9cc87511010614bea0fad2f87297eb2ceffeaf4edd1f13cd1a7ee8a6a9a5/glcontext-2.1.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "451dce0fe6c9975fe3c61ebabc591371", "sha256": "743f3e8701be4bd6c27e163b5c232b57723bb02643117b90c59c66b7309a6393" }, "downloads": -1, "filename": "glcontext-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "451dce0fe6c9975fe3c61ebabc591371", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8775, "upload_time": "2020-03-22T08:43:34", "upload_time_iso_8601": "2020-03-22T08:43:34.814724Z", "url": "https://files.pythonhosted.org/packages/c5/97/e68e61880568c5b881e7546806f5ffb634ea308d1979ce9071bedebccf00/glcontext-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d087cad34967d436bed0c68c643cf5d5", "sha256": "f5eb051af1e6d1a35ada65dc6af640a6fffd5c48de014267dad4a7312ad33470" }, "downloads": -1, "filename": "glcontext-2.1.0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d087cad34967d436bed0c68c643cf5d5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 38120, "upload_time": "2020-03-22T08:32:18", "upload_time_iso_8601": "2020-03-22T08:32:18.399501Z", "url": "https://files.pythonhosted.org/packages/b6/f5/47d11b369538c02fcec759475147fe6c6f29e9a043027b5795a0c728d390/glcontext-2.1.0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46d4b20be113030342c54bfd38b5f7b0", "sha256": "3ba0c7d5f2787236c265fc2bb8575d8ab639094e5e3edbd32456fd39c180ff6d" }, "downloads": -1, "filename": "glcontext-2.1.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "46d4b20be113030342c54bfd38b5f7b0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 38761, "upload_time": "2020-03-22T08:32:19", "upload_time_iso_8601": "2020-03-22T08:32:19.208333Z", "url": "https://files.pythonhosted.org/packages/fd/1d/1fcb6cabda1e790f03abba0684b81969569a4762a25de49989bc21594bc2/glcontext-2.1.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "509d6699900353bdfbb29c12b54f0624", "sha256": "d4e66e1b92b3d28b3887904e70235661ee2564405170b632ae10bfdd49367263" }, "downloads": -1, "filename": "glcontext-2.1.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "509d6699900353bdfbb29c12b54f0624", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11570, "upload_time": "2020-03-22T09:20:58", "upload_time_iso_8601": "2020-03-22T09:20:58.098005Z", "url": "https://files.pythonhosted.org/packages/1c/a1/e233d0cdb1720155de772abaabbd831292cb2450acfddf0caea0c3ad9631/glcontext-2.1.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66553c2f24f5f548624b760dec6f17dc", "sha256": "ba1ce267aea851084d32a9327dc22cd43604f90d489d05b9c54b8ec9f23faa75" }, "downloads": -1, "filename": "glcontext-2.1.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "66553c2f24f5f548624b760dec6f17dc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12306, "upload_time": "2020-03-22T09:20:59", "upload_time_iso_8601": "2020-03-22T09:20:59.509170Z", "url": "https://files.pythonhosted.org/packages/00/11/c4078ec636998da61bd278254a4297536b89117d48783d331db2e513c4f0/glcontext-2.1.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "9e7383244140adb809ad41a5eb1e427e", "sha256": "3b659068ef1bd885096d263cb34eed2f702a6211d348ea5bf061c7ae15167788" }, "downloads": -1, "filename": "glcontext-2.2.0-cp35-cp35m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "9e7383244140adb809ad41a5eb1e427e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10667, "upload_time": "2020-05-21T01:50:08", "upload_time_iso_8601": "2020-05-21T01:50:08.896548Z", "url": "https://files.pythonhosted.org/packages/18/0b/981c8d37e4027e8f8279d36aa48874a4be9e904c06e3cef253a2eccbd654/glcontext-2.2.0-cp35-cp35m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60bb8168e2fa2213c0da361de6b785ab", "sha256": "7f048678751f4dae080df087302ee6a5e18d5626ef640b417970961be374c01a" }, "downloads": -1, "filename": "glcontext-2.2.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "60bb8168e2fa2213c0da361de6b785ab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 37849, "upload_time": "2020-05-21T01:47:44", "upload_time_iso_8601": "2020-05-21T01:47:44.133594Z", "url": "https://files.pythonhosted.org/packages/2d/34/3cfb0fe8c1837b0397dc295b9203fb086aa20e38a8894fce38c7fc0132ae/glcontext-2.2.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "056ddfec434fd4138716480fafef260a", "sha256": "8a168d6fc0a175e7a6c5a0eeb7267fc9938121d706a549bfe051ae3f3e63687a" }, "downloads": -1, "filename": "glcontext-2.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "056ddfec434fd4138716480fafef260a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38428, "upload_time": "2020-05-21T01:47:45", "upload_time_iso_8601": "2020-05-21T01:47:45.181551Z", "url": "https://files.pythonhosted.org/packages/24/94/2ed93025583e0186b037700463fca8e68d767a635c897bb5308ce26a8823/glcontext-2.2.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c32a3198d2b088ee835d8557477db76", "sha256": "7a3f1bcd611a05b6bf3b06169df580e6ba24041210142235873cb699bff0dfa8" }, "downloads": -1, "filename": "glcontext-2.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "9c32a3198d2b088ee835d8557477db76", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11481, "upload_time": "2020-05-21T01:49:39", "upload_time_iso_8601": "2020-05-21T01:49:39.152419Z", "url": "https://files.pythonhosted.org/packages/d6/19/25496822b639c71f8b395eade033cdb8b40c3631a90405d256bf1fda2a71/glcontext-2.2.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8856d0a58ad94c6abb3382d269a5b286", "sha256": "303ca3fc78a796d51e6d441a83fd7287a294eae43f4715c58f8003898a00310b" }, "downloads": -1, "filename": "glcontext-2.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8856d0a58ad94c6abb3382d269a5b286", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12308, "upload_time": "2020-05-21T01:49:40", "upload_time_iso_8601": "2020-05-21T01:49:40.020292Z", "url": "https://files.pythonhosted.org/packages/72/b8/a9a5844baf4d86216c41cdb6167ba3cfa46df223c0481a0da1fbf3068b2c/glcontext-2.2.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f44df137b1c2248813bf5e7014927d6", "sha256": "233bc992aa7f486b8fffa05154150e847238e908fdc6d97f50abfd9fcabe0125" }, "downloads": -1, "filename": "glcontext-2.2.0-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "1f44df137b1c2248813bf5e7014927d6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10669, "upload_time": "2020-05-21T01:50:09", "upload_time_iso_8601": "2020-05-21T01:50:09.951748Z", "url": "https://files.pythonhosted.org/packages/5e/8c/c154e7d77edd488eeb789488148ce59e58a1f253637ec08367a07f74f41d/glcontext-2.2.0-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b09ab178afd3df8600625c2d8340849", "sha256": "2fe13c58d637e963994462367b1f5227aac20c43fc4f43b9fae7485eb7fbe7eb" }, "downloads": -1, "filename": "glcontext-2.2.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2b09ab178afd3df8600625c2d8340849", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38049, "upload_time": "2020-05-21T01:47:46", "upload_time_iso_8601": "2020-05-21T01:47:46.217413Z", "url": "https://files.pythonhosted.org/packages/36/51/a5107db4d9d7dda59f1c7d732c8572691dd06e7012740fd6d67fdc8f92ef/glcontext-2.2.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9269c2270e40a1ea1e09b38660c04e73", "sha256": "b2071a5e33ab06997cfb20b37f8dd14066f3483bb2cb4985054f43cf1977e152" }, "downloads": -1, "filename": "glcontext-2.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9269c2270e40a1ea1e09b38660c04e73", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38632, "upload_time": "2020-05-21T01:47:47", "upload_time_iso_8601": "2020-05-21T01:47:47.409099Z", "url": "https://files.pythonhosted.org/packages/b0/8d/93915df9cd8d31c5f054bbacd1c7a76cd2f776b8212dcc768358bd2d4a37/glcontext-2.2.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ce0986a173a82c9339d121da4a3b4b0", "sha256": "2f03eed480f993c28f3179009af9e9b939050e5599d6c7965ed027182aa445ec" }, "downloads": -1, "filename": "glcontext-2.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "7ce0986a173a82c9339d121da4a3b4b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11486, "upload_time": "2020-05-21T01:49:40", "upload_time_iso_8601": "2020-05-21T01:49:40.674999Z", "url": "https://files.pythonhosted.org/packages/1f/b4/4622e86554b69996ac9f304e4498cffe30d6b7fbbbc8e37af639cc09d52c/glcontext-2.2.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a1009e94db59b69ec7df674f7aad46e", "sha256": "e0e9a3a94421dac7052fde7c69ae5e0bd4c1195e799d09108b95977786725ae7" }, "downloads": -1, "filename": "glcontext-2.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5a1009e94db59b69ec7df674f7aad46e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12310, "upload_time": "2020-05-21T01:49:41", "upload_time_iso_8601": "2020-05-21T01:49:41.345407Z", "url": "https://files.pythonhosted.org/packages/b8/c9/85a233730eadd0ebcc982dd8a5092141c2a9f28c7e2f3a8ae42c6fddca52/glcontext-2.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc9e3953bef3afc20074bd1b535d5b18", "sha256": "617457b1235c8fd77cf4ad453317faab29c643cbedac2a6226839db297c9c183" }, "downloads": -1, "filename": "glcontext-2.2.0-cp37-cp37m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "bc9e3953bef3afc20074bd1b535d5b18", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 10666, "upload_time": "2020-05-21T01:50:11", "upload_time_iso_8601": "2020-05-21T01:50:11.060348Z", "url": "https://files.pythonhosted.org/packages/ab/05/c5aff6c21e69398703609afddb98bc43e7d35692f78b31b37c18ae4299af/glcontext-2.2.0-cp37-cp37m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f474ecc873bea9361379df827d1d7f12", "sha256": "506a5ad4f3d8b212939728f4f1a0b9b35bb9bfe8f244c0e1c09360f67212987d" }, "downloads": -1, "filename": "glcontext-2.2.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f474ecc873bea9361379df827d1d7f12", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 38405, "upload_time": "2020-05-21T01:47:48", "upload_time_iso_8601": "2020-05-21T01:47:48.447753Z", "url": "https://files.pythonhosted.org/packages/55/a6/3cb0588ec501925c0c027d5b90a294377d01a065b6c014ce0ef2d87ff864/glcontext-2.2.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19673e397d2d061cae3c051de84db1ec", "sha256": "23b67527ab2ed5ad3eaaf01655d4a32bdcfc75f146fd2dc3b0c371b2e051e4be" }, "downloads": -1, "filename": "glcontext-2.2.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "19673e397d2d061cae3c051de84db1ec", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 39063, "upload_time": "2020-05-21T01:47:49", "upload_time_iso_8601": "2020-05-21T01:47:49.565791Z", "url": "https://files.pythonhosted.org/packages/45/22/cef77063df1d28f416e9e358b1ec97a6ff54c1726cc4dd72757a9bc183e1/glcontext-2.2.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c55d796e6fb3f6f711ea67506cc92d75", "sha256": "58e345f322f75ecea52c1f7816b709cb104e0fde5eb809f722b2b99fe27de20a" }, "downloads": -1, "filename": "glcontext-2.2.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c55d796e6fb3f6f711ea67506cc92d75", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11482, "upload_time": "2020-05-21T01:49:42", "upload_time_iso_8601": "2020-05-21T01:49:42.097509Z", "url": "https://files.pythonhosted.org/packages/1d/41/38dcc111ca9a8c5e563247ceea06bfe3c4fc246b98761d45a3f7d0729df9/glcontext-2.2.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd7451b91aa5cbdfb3d8fa347ddf3203", "sha256": "1c4fbb155a338217aa6dc1a27993fc9e4bbb34cf87978742e2d8349f1a82bb46" }, "downloads": -1, "filename": "glcontext-2.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "dd7451b91aa5cbdfb3d8fa347ddf3203", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12306, "upload_time": "2020-05-21T01:49:42", "upload_time_iso_8601": "2020-05-21T01:49:42.802811Z", "url": "https://files.pythonhosted.org/packages/be/ce/1e1de83d948c7cb736e369b99fc7766a27bc384b3e3dd4fd96c3810ad499/glcontext-2.2.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "310232e4777a3d67e81e44ae5eab00d9", "sha256": "687a736f84e748551a5ca82ed52dffbef9e04e1db24ca02c40b45e1a8c4b7927" }, "downloads": -1, "filename": "glcontext-2.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "310232e4777a3d67e81e44ae5eab00d9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8895, "upload_time": "2020-05-21T01:50:11", "upload_time_iso_8601": "2020-05-21T01:50:11.814777Z", "url": "https://files.pythonhosted.org/packages/1c/32/67ea41a058de8d46f4c4e9674107cd5040a46d67554823cf437416259989/glcontext-2.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24781871bbc2425f56077bde2c059b0a", "sha256": "e7b8d5f4d5ed149f6fb1e716c53df1e5c6f20dc710bb33ba3f6a5ea093af1281" }, "downloads": -1, "filename": "glcontext-2.2.0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "24781871bbc2425f56077bde2c059b0a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 39023, "upload_time": "2020-05-21T01:47:50", "upload_time_iso_8601": "2020-05-21T01:47:50.552710Z", "url": "https://files.pythonhosted.org/packages/90/31/efbfd1ddda0de4d98a7a3d88fa2aedcf3cb29256c0a87e17321d204cdb7e/glcontext-2.2.0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2b5cc8a39ed4c72c1e1e72c44e40d31", "sha256": "09ad56c3438a7fee3d44daca4929ac190446dfb346a3ef01b1b1dc9a4174636d" }, "downloads": -1, "filename": "glcontext-2.2.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b2b5cc8a39ed4c72c1e1e72c44e40d31", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 39680, "upload_time": "2020-05-21T01:47:51", "upload_time_iso_8601": "2020-05-21T01:47:51.743612Z", "url": "https://files.pythonhosted.org/packages/98/89/4647e620917967aeec4382861678397ef0e5887bc403955c9226eaa9f935/glcontext-2.2.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6e70d8a5f6662a302111cd241c58fc2", "sha256": "a9527e2a67b7378c0f22851bfcd4a7a7d72db54a3e728b9a3b54813de187444e" }, "downloads": -1, "filename": "glcontext-2.2.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "a6e70d8a5f6662a302111cd241c58fc2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11534, "upload_time": "2020-05-21T01:49:43", "upload_time_iso_8601": "2020-05-21T01:49:43.580517Z", "url": "https://files.pythonhosted.org/packages/0b/94/7753f9e9593a4aa04ac299e7565c16f746bac2feb6ecabce07c7d9745874/glcontext-2.2.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb2117a95e6ae5d3f65c2798af42ef7e", "sha256": "05c23b95376a713f31baae112a52f915245c3bd3b185b602efdfd5209650cf40" }, "downloads": -1, "filename": "glcontext-2.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "eb2117a95e6ae5d3f65c2798af42ef7e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12356, "upload_time": "2020-05-21T01:49:44", "upload_time_iso_8601": "2020-05-21T01:49:44.221656Z", "url": "https://files.pythonhosted.org/packages/6c/55/83e92b9023607634899ebe28f6baf886ba70a51ec4b315bcef28fa0c5b2c/glcontext-2.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.3": [ { "comment_text": "", "digests": { "md5": "30601d9bc8b960fcc71cbc7f424642eb", "sha256": "7895ed4f4aab4fccbd9dfe3c5eb5e85604ee7a9c0e7689995e82fdb76c4ac252" }, "downloads": -1, "filename": "glcontext-2.3-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "30601d9bc8b960fcc71cbc7f424642eb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8901, "upload_time": "2021-01-19T01:09:02", "upload_time_iso_8601": "2021-01-19T01:09:02.377515Z", "url": "https://files.pythonhosted.org/packages/7d/5a/492274fe96d26122fc8caeab224f652f60958bf020d70079cbb30941860f/glcontext-2.3-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ad28296a0b6f895cac249b53395b6eb", "sha256": "471d829a47292ff47724aede1ceba9a845bfc03f1e49c0dffa600d1e149529a5" }, "downloads": -1, "filename": "glcontext-2.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8ad28296a0b6f895cac249b53395b6eb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38702, "upload_time": "2021-01-19T01:09:26", "upload_time_iso_8601": "2021-01-19T01:09:26.557553Z", "url": "https://files.pythonhosted.org/packages/f5/0d/47df2d238683ff69b0bd8c4103b499452963b8756839c7ecfd07dbc50a99/glcontext-2.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b3b66956eda8402927d0c9c04a39ffd", "sha256": "ecb9fd614dc4384dcfad665d3e029ab68d068d635a4365f4645f008cc09c3a5e" }, "downloads": -1, "filename": "glcontext-2.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b3b66956eda8402927d0c9c04a39ffd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39436, "upload_time": "2021-01-19T01:09:27", "upload_time_iso_8601": "2021-01-19T01:09:27.374934Z", "url": "https://files.pythonhosted.org/packages/ba/ab/c6378ead63d362e1934ab4937abc3989493c6cbab05ef8d528358e14db91/glcontext-2.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e1960c7eaea10acc30504e50c2b6d02", "sha256": "7293f012918b5a61defee8727ffb13cbdad3bbbeb44359c2caf2b8c7895af5ca" }, "downloads": -1, "filename": "glcontext-2.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "9e1960c7eaea10acc30504e50c2b6d02", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11531, "upload_time": "2021-01-19T01:12:27", "upload_time_iso_8601": "2021-01-19T01:12:27.850306Z", "url": "https://files.pythonhosted.org/packages/ac/e9/c2e2c3e7cb931c68d02d265895903e1008cbb752a3f81014027630316671/glcontext-2.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09a3e0c4d677f70268e2c5a0b1807887", "sha256": "a0cb19f4a0c3b42451dd14883f85d6f22f2454e86d4f01cc76ad47f7f8a8c1be" }, "downloads": -1, "filename": "glcontext-2.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "09a3e0c4d677f70268e2c5a0b1807887", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12362, "upload_time": "2021-01-19T01:12:28", "upload_time_iso_8601": "2021-01-19T01:12:28.566004Z", "url": "https://files.pythonhosted.org/packages/71/5d/ae8a26d6e239ca4632b568252b0f38bf4373b852ec71f6fd7db884e3890a/glcontext-2.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "933435dfbdfa7531d4ef200129f04b14", "sha256": "6003ea3044e6800cd6eb6f96973a038cdf45c1a423f3a89b40f87359ff6a7d5e" }, "downloads": -1, "filename": "glcontext-2.3-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "933435dfbdfa7531d4ef200129f04b14", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8903, "upload_time": "2021-01-19T01:09:03", "upload_time_iso_8601": "2021-01-19T01:09:03.471032Z", "url": "https://files.pythonhosted.org/packages/2d/82/07399ed9e5ed1528efae81303a086911627e9df63fb7dd3a9200e8252865/glcontext-2.3-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bcc8c2ba48d4d572a5168f180cf0ab7a", "sha256": "7b86b49f18949be1aee2e3732283a1a33814524d45cb8c5535e746fe3f3f3a1c" }, "downloads": -1, "filename": "glcontext-2.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bcc8c2ba48d4d572a5168f180cf0ab7a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38903, "upload_time": "2021-01-19T01:09:28", "upload_time_iso_8601": "2021-01-19T01:09:28.129197Z", "url": "https://files.pythonhosted.org/packages/c9/de/3181052246d69d69fad8e7f9d7ccb9a50b90c9277e663863de470586e8fd/glcontext-2.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c43a9b9347b8f30945a8fa6b496b99c6", "sha256": "fe32359a63dac9fd7b13e80d62b7268308c5f35894991499f3d92ecec5775d63" }, "downloads": -1, "filename": "glcontext-2.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c43a9b9347b8f30945a8fa6b496b99c6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39652, "upload_time": "2021-01-19T01:09:28", "upload_time_iso_8601": "2021-01-19T01:09:28.898837Z", "url": "https://files.pythonhosted.org/packages/c1/c1/082611d9c5adcd2e115d2a6f187af7c7eb8e69fc108adaca654beef732d3/glcontext-2.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d312bb1d86e8fc62f60ea38dca595dc2", "sha256": "c161662bf347688a01c5788843a63e1e38390ad5c83014f9ea527cc52d43e7e5" }, "downloads": -1, "filename": "glcontext-2.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d312bb1d86e8fc62f60ea38dca595dc2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11534, "upload_time": "2021-01-19T01:12:29", "upload_time_iso_8601": "2021-01-19T01:12:29.237565Z", "url": "https://files.pythonhosted.org/packages/8d/fe/7e97b096991ca8a36ecf58a793fe5927eae36b679b7d6374ef7e820052d3/glcontext-2.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60863421f88d164e6777df9c306164aa", "sha256": "f40a6aeb33b2f1c4c06bd70060425c1ace76360bd07d020df66bbd8d91dbee00" }, "downloads": -1, "filename": "glcontext-2.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "60863421f88d164e6777df9c306164aa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12361, "upload_time": "2021-01-19T01:12:29", "upload_time_iso_8601": "2021-01-19T01:12:29.974317Z", "url": "https://files.pythonhosted.org/packages/40/ac/16d48e0225055bdd5bc89ced2a4f56be0311b6b1d181d29da630ec86aca7/glcontext-2.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d42d052a65077d7220f885a450d20b1", "sha256": "55727b569aca2f665c9f1348ef3c709ec655dcab0d90ae71caa92843f62a315f" }, "downloads": -1, "filename": "glcontext-2.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4d42d052a65077d7220f885a450d20b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8902, "upload_time": "2021-01-19T01:09:04", "upload_time_iso_8601": "2021-01-19T01:09:04.596477Z", "url": "https://files.pythonhosted.org/packages/69/06/1e031d1b247a7916eeeed3530dad6ccabbc192c1585c4d15cb9c628d2ee2/glcontext-2.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2be1126c1b812ef60656eb5ffcbfbd80", "sha256": "6e3fdca6c3986bf614aa6727f1f17f6e82c5809d7b859c604345bb00a6b8b22d" }, "downloads": -1, "filename": "glcontext-2.3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2be1126c1b812ef60656eb5ffcbfbd80", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 39275, "upload_time": "2021-01-19T01:09:30", "upload_time_iso_8601": "2021-01-19T01:09:30.006608Z", "url": "https://files.pythonhosted.org/packages/e8/68/57b2907f539f32cb6ad032da27d206e84f6fc6c642dfe43e727301e86697/glcontext-2.3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c17dd4e54de352a336ea72c6db90ef2f", "sha256": "ab1bfa3f3bdb13e393de1b2a953256ab298aeeddd1b5fb1ba9c8270819d856eb" }, "downloads": -1, "filename": "glcontext-2.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c17dd4e54de352a336ea72c6db90ef2f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 40060, "upload_time": "2021-01-19T01:09:30", "upload_time_iso_8601": "2021-01-19T01:09:30.715208Z", "url": "https://files.pythonhosted.org/packages/6f/8d/c80861ddaf26ac0856246b3a9d38e2de7bb5b90f6a0aefaf56124191a9b8/glcontext-2.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccd9203f89d2a8ad42487c5061b9abf0", "sha256": "fbba930c259ab858f27ebd58b3bca501badd2b324923f2c6e3e8450724205e5b" }, "downloads": -1, "filename": "glcontext-2.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "ccd9203f89d2a8ad42487c5061b9abf0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11531, "upload_time": "2021-01-19T01:12:30", "upload_time_iso_8601": "2021-01-19T01:12:30.738436Z", "url": "https://files.pythonhosted.org/packages/42/dc/287b9baae8826d75ee1bb2fad83f3fda19dc6fb64abc781e4cdbba6697e2/glcontext-2.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c83ee7bff87ec57cdb799d02ba60f34", "sha256": "a19ef8b6cb466d4d383ca689bb75100c22708c79f18f5584e9c0f8d2b2bb064f" }, "downloads": -1, "filename": "glcontext-2.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2c83ee7bff87ec57cdb799d02ba60f34", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12366, "upload_time": "2021-01-19T01:12:31", "upload_time_iso_8601": "2021-01-19T01:12:31.411885Z", "url": "https://files.pythonhosted.org/packages/76/78/1b35ec412ec7ea7550ba79302f0aa70a29771528d4a9a85b3b507eeb9ce1/glcontext-2.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97759d69863bd1125c4174f4f1cb0879", "sha256": "a1c8192fd6641ce9ee383fa9582e43f5e9f81931693be40bcffa77f1560b1ac5" }, "downloads": -1, "filename": "glcontext-2.3-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "97759d69863bd1125c4174f4f1cb0879", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8954, "upload_time": "2021-01-19T01:09:05", "upload_time_iso_8601": "2021-01-19T01:09:05.542237Z", "url": "https://files.pythonhosted.org/packages/0d/ba/d988aa85d4886358177c0310a2f2365a861cf773744540940f10d0f55941/glcontext-2.3-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07902a312456d4565f2b9b45323224dd", "sha256": "12df95ea141bb607295cf760d084d694950a1ebf96c9aa246231867bf1cd3fca" }, "downloads": -1, "filename": "glcontext-2.3-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "07902a312456d4565f2b9b45323224dd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 39864, "upload_time": "2021-01-19T01:09:31", "upload_time_iso_8601": "2021-01-19T01:09:31.529801Z", "url": "https://files.pythonhosted.org/packages/42/42/a6af1f952d143562de1de5f76113d80fe258a8bf873cf8b68539cf3028e4/glcontext-2.3-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "203c5160385bd319d46ea2eb0aa958fa", "sha256": "e63b997e9a5d6fe18b9a64b0e90a540bbdf8b06dbebe693feecbadc0d579537a" }, "downloads": -1, "filename": "glcontext-2.3-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "203c5160385bd319d46ea2eb0aa958fa", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 40610, "upload_time": "2021-01-19T01:09:32", "upload_time_iso_8601": "2021-01-19T01:09:32.287895Z", "url": "https://files.pythonhosted.org/packages/6a/ae/7da0e73f4aa3f3256aa98054520af836a12cca8581a9692b94d6584606e9/glcontext-2.3-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "308d16bc84e577981b798e89d7a23e4c", "sha256": "38d37df2efeb194948ebcc79875faf2f0ae8af88cb65d91a7dc3051a5e60e9da" }, "downloads": -1, "filename": "glcontext-2.3-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "308d16bc84e577981b798e89d7a23e4c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11585, "upload_time": "2021-01-19T01:12:32", "upload_time_iso_8601": "2021-01-19T01:12:32.144613Z", "url": "https://files.pythonhosted.org/packages/c8/88/3b2c3f8e51c8c74627e0250a0c1190b97973c1840fcd6486f57259ee00c5/glcontext-2.3-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a5d494884e6a64648eb69ba4a0d9180", "sha256": "ff84c7559a7c427ea5f7c94409d16bd47bc6d35a133c7c386b62d393ad984295" }, "downloads": -1, "filename": "glcontext-2.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "6a5d494884e6a64648eb69ba4a0d9180", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12410, "upload_time": "2021-01-19T01:12:32", "upload_time_iso_8601": "2021-01-19T01:12:32.989807Z", "url": "https://files.pythonhosted.org/packages/fe/51/482650f719c20d7087ca8576cd1fd5da10d78e85ffa709e0a9ae0e2d41c1/glcontext-2.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc525471310f6bf1174b8fa194f640f8", "sha256": "e50c41c421c541b4c2b499620d7f917ebe1c5424aba5eaf07e48593ab024ae61" }, "downloads": -1, "filename": "glcontext-2.3-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fc525471310f6bf1174b8fa194f640f8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8955, "upload_time": "2021-01-19T01:09:06", "upload_time_iso_8601": "2021-01-19T01:09:06.578720Z", "url": "https://files.pythonhosted.org/packages/3f/97/9863be3dc8b0574f3a54d600e7439dd9a83358e3a2c6a9b9c56c97184011/glcontext-2.3-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90f09b23a2c2164caaee710972334f8f", "sha256": "508e21edad75cb2c4a5ca5892b9fc99e1843944f0867d42012fe38a6c1fb0550" }, "downloads": -1, "filename": "glcontext-2.3-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "90f09b23a2c2164caaee710972334f8f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 11538, "upload_time": "2021-01-19T01:12:33", "upload_time_iso_8601": "2021-01-19T01:12:33.636481Z", "url": "https://files.pythonhosted.org/packages/86/2d/c5aafaeebeecae896f04c2cf151ad21cbed058f894b7189c6d49900f761c/glcontext-2.3-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42408f6537ea3bf0420fec3ae203b775", "sha256": "170ad25921f3911a46d8f295274d6261aaf9bb8e86f862b15af5d85c34912eea" }, "downloads": -1, "filename": "glcontext-2.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "42408f6537ea3bf0420fec3ae203b775", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12372, "upload_time": "2021-01-19T01:12:34", "upload_time_iso_8601": "2021-01-19T01:12:34.374167Z", "url": "https://files.pythonhosted.org/packages/dd/3d/56d5e4dd796d8de4265e9c02801131205886690b0d20140fbb851448dc9a/glcontext-2.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d95d5326307bd62edc25dd215dcd8715", "sha256": "35b9576dfd0c97ddea238c89d7fc0d9f0721485898d0d5995cfc80df4be6df91" }, "downloads": -1, "filename": "glcontext-2.3.tar.gz", "has_sig": false, "md5_digest": "d95d5326307bd62edc25dd215dcd8715", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14978, "upload_time": "2021-01-19T01:28:29", "upload_time_iso_8601": "2021-01-19T01:28:29.116114Z", "url": "https://files.pythonhosted.org/packages/f8/c2/4bc3158c3897abe91c1fd8e7f9efb87e215c97688647646efc25d6762c55/glcontext-2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "fe5a330e6065c9ed317072351c32ab26", "sha256": "22e0d8d037b7270d2443eb1cfcaa2e0ae095bf3a729ed8fcbbdd9cbe3a80ccf2" }, "downloads": -1, "filename": "glcontext-2.3.1-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fe5a330e6065c9ed317072351c32ab26", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8968, "upload_time": "2021-02-16T06:58:11", "upload_time_iso_8601": "2021-02-16T06:58:11.954398Z", "url": "https://files.pythonhosted.org/packages/d5/d1/cdf7b6a13fe88d8f6c4de358e47888c8fa09e9a05fe5736e14c704dd67f3/glcontext-2.3.1-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fb433b9c48c94eeef9d8b8b744cdafa", "sha256": "31ebe2c216a37f83e48c183c7cf63fd3a589c8a954f35714108393b8dea33dfc" }, "downloads": -1, "filename": "glcontext-2.3.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8fb433b9c48c94eeef9d8b8b744cdafa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38764, "upload_time": "2021-02-16T06:54:51", "upload_time_iso_8601": "2021-02-16T06:54:51.126940Z", "url": "https://files.pythonhosted.org/packages/86/3e/0b01f40731b562664b28450f558e63020a75db4c3860cbceffc310bce030/glcontext-2.3.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15f74f4f19927cc7365b87072eb01177", "sha256": "e9827c43267a62cc4e637e685c9012b6e386edf137028246fbb3d2cabbdde76d" }, "downloads": -1, "filename": "glcontext-2.3.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "15f74f4f19927cc7365b87072eb01177", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39509, "upload_time": "2021-02-16T06:54:52", "upload_time_iso_8601": "2021-02-16T06:54:52.213096Z", "url": "https://files.pythonhosted.org/packages/4c/ec/119bf55c12785753037f55af0a4eb233c05e19844ffe3500868e0909a767/glcontext-2.3.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6c2c68d307c45a249ea3b8a6bf16abd", "sha256": "9067ea89a6f8dc7604d478bbe2cbb050e468f2627bd0028028c46249feac7496" }, "downloads": -1, "filename": "glcontext-2.3.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e6c2c68d307c45a249ea3b8a6bf16abd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11596, "upload_time": "2021-02-16T06:57:53", "upload_time_iso_8601": "2021-02-16T06:57:53.654049Z", "url": "https://files.pythonhosted.org/packages/34/22/afe8d0bb0c7e8a4f805b9344149885099022969d0e6401df91179189df74/glcontext-2.3.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb68b0c7767ddeb806f6bec316b887cf", "sha256": "7a4ead18900ee37f34560256a22bdb72a643b2d5351771e94d9f2abef7243bd0" }, "downloads": -1, "filename": "glcontext-2.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "cb68b0c7767ddeb806f6bec316b887cf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12424, "upload_time": "2021-02-16T06:57:54", "upload_time_iso_8601": "2021-02-16T06:57:54.361399Z", "url": "https://files.pythonhosted.org/packages/2e/91/2bd7faeff2cc300a88a56aed3f3bdc37c1cab57f3f7d0f49328ce003d6ff/glcontext-2.3.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f027484c40b67a73ff996bfb4914c1c", "sha256": "f05f07d0bc2159d4809618cee9fc65d0fad13d9df2462e95064dee0e506e3ff6" }, "downloads": -1, "filename": "glcontext-2.3.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1f027484c40b67a73ff996bfb4914c1c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8969, "upload_time": "2021-02-16T06:58:12", "upload_time_iso_8601": "2021-02-16T06:58:12.673452Z", "url": "https://files.pythonhosted.org/packages/71/7d/7a384e3a69ae749c51ef01566e834e9e86a0f72229b30cb3abaf02808b2f/glcontext-2.3.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06347ed28389259ae0932ac002aa06d3", "sha256": "df9795be68c91427f437f4d27268d918977e797786e6f419ca6ab99d6d6d37bf" }, "downloads": -1, "filename": "glcontext-2.3.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "06347ed28389259ae0932ac002aa06d3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38957, "upload_time": "2021-02-16T06:54:53", "upload_time_iso_8601": "2021-02-16T06:54:53.244051Z", "url": "https://files.pythonhosted.org/packages/ca/b7/1b8041192c96439794636b0b34b6250e9ae992971ad65507cfb7ff29e7d6/glcontext-2.3.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b197f3de308378ba321d842af06896fb", "sha256": "e938f67a278130100587bce2b4c32b6c0f73426ea991fda1575caeecf66a01f7" }, "downloads": -1, "filename": "glcontext-2.3.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b197f3de308378ba321d842af06896fb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39719, "upload_time": "2021-02-16T06:54:54", "upload_time_iso_8601": "2021-02-16T06:54:54.022065Z", "url": "https://files.pythonhosted.org/packages/94/69/f9545ddb93e6bab00eb38e6e0deec0c642731715e80542db90af1a6b9df9/glcontext-2.3.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e01c02ed7c22fe25ae272fd87173156b", "sha256": "d4fa5d4f172b0f173aa1b59817a453ec2cdb8e2cf5b143f40b2dcbf70e3df9d6" }, "downloads": -1, "filename": "glcontext-2.3.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e01c02ed7c22fe25ae272fd87173156b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11596, "upload_time": "2021-02-16T06:57:55", "upload_time_iso_8601": "2021-02-16T06:57:55.058789Z", "url": "https://files.pythonhosted.org/packages/4d/bc/68211dfa69d2bed2f6555e9710a025ba930ad9e9abfcf362075901c04451/glcontext-2.3.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22486f690620c12963f62ea3a483a496", "sha256": "179133d84c719b8483d7369247ff3fa48c45156213af11a8b6553f1cf9602244" }, "downloads": -1, "filename": "glcontext-2.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "22486f690620c12963f62ea3a483a496", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12425, "upload_time": "2021-02-16T06:57:55", "upload_time_iso_8601": "2021-02-16T06:57:55.795541Z", "url": "https://files.pythonhosted.org/packages/2b/24/54b1aa7d258531c3bea3130f0d22aae27ac638cecdaa2fabc919c068d400/glcontext-2.3.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99b674f31855265f865f6b9962c7690b", "sha256": "7920b81ea7116102855c863dc7ac71687ec8508db68a4fdcb2b293c7f0e02bd3" }, "downloads": -1, "filename": "glcontext-2.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "99b674f31855265f865f6b9962c7690b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8968, "upload_time": "2021-02-16T06:58:13", "upload_time_iso_8601": "2021-02-16T06:58:13.399750Z", "url": "https://files.pythonhosted.org/packages/8d/c2/e61e3949e9dd7fbbfc16987f024076d528d47ec96505e40acbd00cd0ceea/glcontext-2.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4319fee84a57e4d5d1638c3be449cd61", "sha256": "2cbd8920af80ae8d797a25eae8ca4dd57706847254b5b160a94d1ae427369277" }, "downloads": -1, "filename": "glcontext-2.3.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4319fee84a57e4d5d1638c3be449cd61", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 39353, "upload_time": "2021-02-16T06:54:55", "upload_time_iso_8601": "2021-02-16T06:54:55.073432Z", "url": "https://files.pythonhosted.org/packages/15/1b/e186d0a6b13851864ece7a372737cddb7ce210922a31be8fa9a7cee4c391/glcontext-2.3.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c1c3fd584ddc3979cfbfcdb3d150785", "sha256": "15f7fefae9985bf9a25df3d35c326203bd6910d7cc576d0174291de36173df2a" }, "downloads": -1, "filename": "glcontext-2.3.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9c1c3fd584ddc3979cfbfcdb3d150785", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 40125, "upload_time": "2021-02-16T06:54:56", "upload_time_iso_8601": "2021-02-16T06:54:56.159932Z", "url": "https://files.pythonhosted.org/packages/1b/b4/a45df8cb58c4ceffae4acc74e7180a6342cc97af6e75c6d087d6f3a9bbf2/glcontext-2.3.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8e464cda7573bba21457778bf78fbfa", "sha256": "dddeadf38805f2e5c63bdd5e8c0cfe6d767afb83c7b0a475beee00b39b7b2b71" }, "downloads": -1, "filename": "glcontext-2.3.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e8e464cda7573bba21457778bf78fbfa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11596, "upload_time": "2021-02-16T06:57:56", "upload_time_iso_8601": "2021-02-16T06:57:56.468865Z", "url": "https://files.pythonhosted.org/packages/2e/ab/149dfb8915fb3c0cfd96f4251eabbca962e05d9b891d38449aac8505d4aa/glcontext-2.3.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c618fa95fa88582b17fdee6657c94ce9", "sha256": "ef2faeb2c20f0efba0fc4934caf46e10d46b9e803e9a9bf69ba1c2fdd413bf33" }, "downloads": -1, "filename": "glcontext-2.3.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c618fa95fa88582b17fdee6657c94ce9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12426, "upload_time": "2021-02-16T06:57:57", "upload_time_iso_8601": "2021-02-16T06:57:57.077584Z", "url": "https://files.pythonhosted.org/packages/4f/6c/1087f9ad10f5b56fe2fee856db1488741c71fcfc1f79b47eda8c8d9a42be/glcontext-2.3.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89c9a67b6150e95ad7779280ae62196f", "sha256": "f4aa9e898f691a5739e3e44c7ae809164c3b4a75b589f6ef39ae85bf599079b4" }, "downloads": -1, "filename": "glcontext-2.3.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "89c9a67b6150e95ad7779280ae62196f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9018, "upload_time": "2021-02-16T06:58:14", "upload_time_iso_8601": "2021-02-16T06:58:14.369018Z", "url": "https://files.pythonhosted.org/packages/e2/a5/2e00b403dcf42196115b7bff3b556f067d1fe6f13a634f15732d4552e5ab/glcontext-2.3.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d8dc2268e2fab5192753480d03e45dd", "sha256": "042dd905437f9435102629acea53cb13f1c0a042db51cfdcf6598d305e1e1487" }, "downloads": -1, "filename": "glcontext-2.3.1-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1d8dc2268e2fab5192753480d03e45dd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 39916, "upload_time": "2021-02-16T06:54:57", "upload_time_iso_8601": "2021-02-16T06:54:57.230038Z", "url": "https://files.pythonhosted.org/packages/20/44/d7d71e327653ce54e77d800392cba4a51602915da632e92ab287c59a3018/glcontext-2.3.1-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abc68652bb1d3c65cea956c865ff7d63", "sha256": "1d6556dedb399425c10d3c0174c8ce839577900489594bc8695f7b6f83f7a9d2" }, "downloads": -1, "filename": "glcontext-2.3.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "abc68652bb1d3c65cea956c865ff7d63", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 40667, "upload_time": "2021-02-16T06:54:57", "upload_time_iso_8601": "2021-02-16T06:54:57.956931Z", "url": "https://files.pythonhosted.org/packages/de/8c/efac41ccc4cf2daf298353873b75da79fde7085ba247758bc4eff8b98210/glcontext-2.3.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d03ed5bdf27582bbf359b016b754857", "sha256": "2c0f0f9aedb0287409ef03f4788cae5b7d1e7ba988d0314c6749841a7d379091" }, "downloads": -1, "filename": "glcontext-2.3.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "8d03ed5bdf27582bbf359b016b754857", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11653, "upload_time": "2021-02-16T06:57:57", "upload_time_iso_8601": "2021-02-16T06:57:57.963114Z", "url": "https://files.pythonhosted.org/packages/42/c5/2dfb0fa7d8e4a9e7776607fad54ef75cbc3907a7f24ba0cd062c496be794/glcontext-2.3.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "721551ee5a6d55de4da2aaa614bedd2c", "sha256": "5c88c5ae6037a396bff322b88f0c5e9aa61059c4db2adb55529ecbc4206bbd10" }, "downloads": -1, "filename": "glcontext-2.3.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "721551ee5a6d55de4da2aaa614bedd2c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12477, "upload_time": "2021-02-16T06:57:58", "upload_time_iso_8601": "2021-02-16T06:57:58.738049Z", "url": "https://files.pythonhosted.org/packages/e1/26/220cd43c8535d1061f5fc5361632de4f4ce2d601c9d04f99e6acbe26b94b/glcontext-2.3.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "452431c923ed9707e480f5192c3be8eb", "sha256": "f5c33e566755149644a64de7a9b8e16dfb51cfa14d459be9574e8f7896034f7c" }, "downloads": -1, "filename": "glcontext-2.3.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "452431c923ed9707e480f5192c3be8eb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9019, "upload_time": "2021-02-16T06:58:15", "upload_time_iso_8601": "2021-02-16T06:58:15.065818Z", "url": "https://files.pythonhosted.org/packages/15/f0/768f9b81f91f96baee6b2b6753503e0e158c06bc1eac0fcb7a1336f34ffa/glcontext-2.3.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1274bbf02e9e930d6bc4ce2c1449a1f", "sha256": "b2e7d27c226a5354b518b8ee8df17bc8b2512d6bfcb83352d662d5bf54545494" }, "downloads": -1, "filename": "glcontext-2.3.1-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "b1274bbf02e9e930d6bc4ce2c1449a1f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 11604, "upload_time": "2021-02-16T06:57:59", "upload_time_iso_8601": "2021-02-16T06:57:59.550612Z", "url": "https://files.pythonhosted.org/packages/86/7f/dcf70437f9491833b41775c7fa7abae2c620b02ab0d19280111c735b4ac4/glcontext-2.3.1-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b199e2068441930257f025b29acc1bb", "sha256": "9198abb476c6683d56227ac17ec805d18fa58466922c748c1ea44bf35c9c16c8" }, "downloads": -1, "filename": "glcontext-2.3.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "2b199e2068441930257f025b29acc1bb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12437, "upload_time": "2021-02-16T06:58:00", "upload_time_iso_8601": "2021-02-16T06:58:00.310404Z", "url": "https://files.pythonhosted.org/packages/b8/fe/1b26d75ed17d7517cc9fbaa5d5cf615fff303bd1c1be65ac0b1d48312ac9/glcontext-2.3.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1eebe1cdacd7fbd945b670053adc9e4a", "sha256": "559705d3e1059311c53e87d91d7270f07aed594bebf25d328253c0155ac00fc4" }, "downloads": -1, "filename": "glcontext-2.3.1.tar.gz", "has_sig": false, "md5_digest": "1eebe1cdacd7fbd945b670053adc9e4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15048, "upload_time": "2021-02-16T07:21:33", "upload_time_iso_8601": "2021-02-16T07:21:33.573331Z", "url": "https://files.pythonhosted.org/packages/82/ff/24434a5abb6b5a810cc93bca0eb04ee3c7b3778b8ed9f3ad42a1c78917cd/glcontext-2.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "e40fd8e747d5695b09dc0f783dbe854e", "sha256": "8b92a3bcca1cd0be5fa6add8c3feb723747a160b372523c6f720485c7648838d" }, "downloads": -1, "filename": "glcontext-2.3.2-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e40fd8e747d5695b09dc0f783dbe854e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8949, "upload_time": "2021-02-16T15:40:25", "upload_time_iso_8601": "2021-02-16T15:40:25.359314Z", "url": "https://files.pythonhosted.org/packages/20/8f/4f08dbfd5a483c92b256e092bc27f00c9ee0d19473a5af490c1171218c37/glcontext-2.3.2-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec993a0aab68083f78e482432f69880b", "sha256": "3c62af1f972f97565deac6d08230bcd3ce09e6ab580b822eebe30dd9c902d19b" }, "downloads": -1, "filename": "glcontext-2.3.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ec993a0aab68083f78e482432f69880b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38744, "upload_time": "2021-02-16T15:37:10", "upload_time_iso_8601": "2021-02-16T15:37:10.930094Z", "url": "https://files.pythonhosted.org/packages/0f/32/9a5f34ff7f008b76039914c96cec634c94c299575ac0b9d4f802b43eaba7/glcontext-2.3.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a068f59fb6c3222c214de1413ae3d84f", "sha256": "771c36d0a2fc03b94130f46ff996e0f607c72b54fcba72fb7493cf2dd18fe46a" }, "downloads": -1, "filename": "glcontext-2.3.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a068f59fb6c3222c214de1413ae3d84f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39493, "upload_time": "2021-02-16T15:37:11", "upload_time_iso_8601": "2021-02-16T15:37:11.959667Z", "url": "https://files.pythonhosted.org/packages/80/69/a1f5612db3b6daebf6cbf5d69ee6cf5b233261572dcee8868a1dfa9fd2b7/glcontext-2.3.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b54ea85b9bf09b595574a005d5d1958", "sha256": "fdf3ae07f8de29b7fa9c6006b5bc6b8fc8e508455574405473f680ecba8272b7" }, "downloads": -1, "filename": "glcontext-2.3.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6b54ea85b9bf09b595574a005d5d1958", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11582, "upload_time": "2021-02-16T15:39:54", "upload_time_iso_8601": "2021-02-16T15:39:54.454788Z", "url": "https://files.pythonhosted.org/packages/ef/8f/c871a62d62fb8872f382a8ce6be7307c95cb748f5abedd0d3853c899e525/glcontext-2.3.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95c94b8dd03a786aab51e4e8f696930d", "sha256": "eb35d324239cc42df402b8716f0aa0d7f30d68b895f183f4d4a3f424b3b9579b" }, "downloads": -1, "filename": "glcontext-2.3.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "95c94b8dd03a786aab51e4e8f696930d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12412, "upload_time": "2021-02-16T15:39:55", "upload_time_iso_8601": "2021-02-16T15:39:55.292374Z", "url": "https://files.pythonhosted.org/packages/5f/e7/e9bf8cc977048297dd79647ffa010535b8333105269eeb490ae089bbd572/glcontext-2.3.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eed7495fe058d22570414cb1d5b72a84", "sha256": "17cf58e4a70897da8a99d72044cf1437e2fd232d4e3af599e018e858e27df6d7" }, "downloads": -1, "filename": "glcontext-2.3.2-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "eed7495fe058d22570414cb1d5b72a84", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8952, "upload_time": "2021-02-16T15:40:26", "upload_time_iso_8601": "2021-02-16T15:40:26.217823Z", "url": "https://files.pythonhosted.org/packages/4f/cc/ff00ecebaf73f7baec19e456646b334a3477893b3248c75756afc5682536/glcontext-2.3.2-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c66e777c4e90e478a004da426e32baa", "sha256": "470474a7b2e963af284c07116dd9b3f7fab0a5195da308f33599fcad1ef5de7f" }, "downloads": -1, "filename": "glcontext-2.3.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c66e777c4e90e478a004da426e32baa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38934, "upload_time": "2021-02-16T15:37:13", "upload_time_iso_8601": "2021-02-16T15:37:13.005129Z", "url": "https://files.pythonhosted.org/packages/f2/df/3e35809d1807cf11d99d1161a44e875bca48e808e489cb784e604713e9ff/glcontext-2.3.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2717b07b701d8fa760e77e3f03909317", "sha256": "842492c39ec7fc87f982300def79751dab7888b985c6f1dab13b5937f56f5a0d" }, "downloads": -1, "filename": "glcontext-2.3.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2717b07b701d8fa760e77e3f03909317", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39694, "upload_time": "2021-02-16T15:37:13", "upload_time_iso_8601": "2021-02-16T15:37:13.933481Z", "url": "https://files.pythonhosted.org/packages/7f/c7/d573c01263f4989ba5f2ddfbc4144e7864c0eb644503bd1a3bb86e1ddbf9/glcontext-2.3.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db270f45d461aea95079fbc044a2e7da", "sha256": "b59ec600fbdd7bffeb22ac96fd1639980fe08a41a5935c9deb0c2012cdd190da" }, "downloads": -1, "filename": "glcontext-2.3.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "db270f45d461aea95079fbc044a2e7da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11583, "upload_time": "2021-02-16T15:39:56", "upload_time_iso_8601": "2021-02-16T15:39:56.053897Z", "url": "https://files.pythonhosted.org/packages/4c/ab/cccb322bf669cc1cd4554bc89aa83f5e3cfd2716a520883e2cd5fcff4572/glcontext-2.3.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3e02352973cfd10bc9211929d7b5888", "sha256": "4385d2d6626a7f3d33b06eefe5b506bb1c4afc2b2996b9ac8c5ff32d7de2b432" }, "downloads": -1, "filename": "glcontext-2.3.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d3e02352973cfd10bc9211929d7b5888", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12410, "upload_time": "2021-02-16T15:39:56", "upload_time_iso_8601": "2021-02-16T15:39:56.794112Z", "url": "https://files.pythonhosted.org/packages/6f/20/796c3cde95ce70f5ac986978eae2a8515e3bbf6831d8a463d0cb94b4093b/glcontext-2.3.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f838d4c40c8ebe8e648c58b94ef77ac", "sha256": "ecea09f612eed473b5eec2f56b68e3278ce683e7220b2895e5864b6c4ccef87f" }, "downloads": -1, "filename": "glcontext-2.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5f838d4c40c8ebe8e648c58b94ef77ac", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8950, "upload_time": "2021-02-16T15:40:27", "upload_time_iso_8601": "2021-02-16T15:40:27.055456Z", "url": "https://files.pythonhosted.org/packages/01/27/e54dae38c0b4b83fafd2e59e8b1cae43d712b61d1f4b7a3f28663798450e/glcontext-2.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f815c92352822633e1d8f04ff4d7c2ca", "sha256": "59bf670a5899998ee7190bc5130da025512c765b36b89dcb06477535f67ae882" }, "downloads": -1, "filename": "glcontext-2.3.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f815c92352822633e1d8f04ff4d7c2ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 39324, "upload_time": "2021-02-16T15:37:14", "upload_time_iso_8601": "2021-02-16T15:37:14.724740Z", "url": "https://files.pythonhosted.org/packages/ec/b1/de687443c3724c995809cfe602c29dff26c9ac685d76d8ea8d1b7cc4e17f/glcontext-2.3.2-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ffa9c39e6f41caa0f43d8c414e031ff", "sha256": "eb83051e4246160c1f60943b74accb5fe91835022deb753ffc18e3087d82a011" }, "downloads": -1, "filename": "glcontext-2.3.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8ffa9c39e6f41caa0f43d8c414e031ff", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 40106, "upload_time": "2021-02-16T15:37:15", "upload_time_iso_8601": "2021-02-16T15:37:15.863170Z", "url": "https://files.pythonhosted.org/packages/cf/da/6d23298b25ee5b79ff0f644882837aad1aff82e88b55b0de424974f50812/glcontext-2.3.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c1396000e4e8bd561064df5ac7e2fce", "sha256": "6257b0319bf05859630c117550d46b71973b591e863bd8b1eb6faec0f51199fe" }, "downloads": -1, "filename": "glcontext-2.3.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3c1396000e4e8bd561064df5ac7e2fce", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11580, "upload_time": "2021-02-16T15:39:57", "upload_time_iso_8601": "2021-02-16T15:39:57.844177Z", "url": "https://files.pythonhosted.org/packages/9b/ef/01d5937d1f0266df47f05a8a997ccedf3f848ba7b7d42036cd16d53b7f10/glcontext-2.3.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "372b236075148924340b5578897a1ee5", "sha256": "7804bc3ef37ba0d35845e02e5e428713857b181bd2826ffc48b863613e40649b" }, "downloads": -1, "filename": "glcontext-2.3.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "372b236075148924340b5578897a1ee5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12412, "upload_time": "2021-02-16T15:39:58", "upload_time_iso_8601": "2021-02-16T15:39:58.749551Z", "url": "https://files.pythonhosted.org/packages/fb/63/61e9f679a123ad7d4e62115339b2f2ca8de1d4bc15b4b5128214ff65fa24/glcontext-2.3.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ceb5b0331779cef181aa522e58ce533", "sha256": "eae3ff044064f2b6b5a6023afbccd6751aa6b1c1896dd4bb411e36cc8f64c143" }, "downloads": -1, "filename": "glcontext-2.3.2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2ceb5b0331779cef181aa522e58ce533", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9000, "upload_time": "2021-02-16T15:40:27", "upload_time_iso_8601": "2021-02-16T15:40:27.867818Z", "url": "https://files.pythonhosted.org/packages/43/d9/ff129831f1f36474daf8971231f78e99676bdb546aa97159f5ad0fe598e6/glcontext-2.3.2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e6d5db2af4effa37be20f74fa1df22e", "sha256": "01632bc0c33e71f57801daacb0f3e552a01a426e1e9cd45dadd969bc66fc0c9c" }, "downloads": -1, "filename": "glcontext-2.3.2-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6e6d5db2af4effa37be20f74fa1df22e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 39908, "upload_time": "2021-02-16T15:37:16", "upload_time_iso_8601": "2021-02-16T15:37:16.743424Z", "url": "https://files.pythonhosted.org/packages/70/37/43f0230361bdd8a2cc2bd012214e3dc0b5b3f6d58b1f7e7bc857b2c4e815/glcontext-2.3.2-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea0d32bd3d534a4db4bb30a17135874c", "sha256": "e34b8d6f0598d27ce02fb1b535d37827b37259ddc811ec689091d68e9f8df054" }, "downloads": -1, "filename": "glcontext-2.3.2-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ea0d32bd3d534a4db4bb30a17135874c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 40655, "upload_time": "2021-02-16T15:37:17", "upload_time_iso_8601": "2021-02-16T15:37:17.490430Z", "url": "https://files.pythonhosted.org/packages/4a/a9/5b7fb6a2c26acccc1dfbc6588326ec36c4c0487d05ace4133a7faa3b108c/glcontext-2.3.2-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fa742988c31153faaf1a233a309bb68", "sha256": "beeb8aa834773cc3dc1c37809841cfb26be16dfd2dedffdf76a246fb9c92de51" }, "downloads": -1, "filename": "glcontext-2.3.2-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "8fa742988c31153faaf1a233a309bb68", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11637, "upload_time": "2021-02-16T15:39:59", "upload_time_iso_8601": "2021-02-16T15:39:59.793500Z", "url": "https://files.pythonhosted.org/packages/c1/8e/a5d0f4c75b0adf2ff198ba356e08793646818c8ce5f114f757ca938852cd/glcontext-2.3.2-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31bd0c57a21a50537fba47f78f7a1271", "sha256": "dad729ebbb870a725aba7fba75589d3b90e1b495b8d4b4533721b8ea798898f8" }, "downloads": -1, "filename": "glcontext-2.3.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "31bd0c57a21a50537fba47f78f7a1271", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12460, "upload_time": "2021-02-16T15:40:00", "upload_time_iso_8601": "2021-02-16T15:40:00.746138Z", "url": "https://files.pythonhosted.org/packages/a0/b9/9303373269c2f76d5cb67d655dd17fde902e3ffbe6faa1515b3ec780a37a/glcontext-2.3.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "411c23db6f9a5a88d1d2532c6890ef92", "sha256": "54324b5b5486ca53f83a64410939c08549ee5253845675131b54e57c8f9bc11a" }, "downloads": -1, "filename": "glcontext-2.3.2-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "411c23db6f9a5a88d1d2532c6890ef92", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9000, "upload_time": "2021-02-16T15:40:28", "upload_time_iso_8601": "2021-02-16T15:40:28.618153Z", "url": "https://files.pythonhosted.org/packages/47/ec/7f7a6e2621f397fe1251b0cd30a17d8a93dfc242d47d69a58c57274e52f6/glcontext-2.3.2-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b32f2184d90f2fc1da79deb79cab5b04", "sha256": "44f8c5a07add0b90a46b10e3f328731f51d7ac973047dfada6e0338d3bf3f77e" }, "downloads": -1, "filename": "glcontext-2.3.2-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "b32f2184d90f2fc1da79deb79cab5b04", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 11588, "upload_time": "2021-02-16T15:40:01", "upload_time_iso_8601": "2021-02-16T15:40:01.521666Z", "url": "https://files.pythonhosted.org/packages/d8/a9/ee4b6f153aa98e2d237ffe18cbfe3d068475d8f84fcca3fa3da9204ac322/glcontext-2.3.2-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16f011bb4c8ee1c978e37a7a3de08d26", "sha256": "950bdbfad1162ecaee03cdd070ab02b0e0ce4a9efe03708f706bd3c5985f29f7" }, "downloads": -1, "filename": "glcontext-2.3.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "16f011bb4c8ee1c978e37a7a3de08d26", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12421, "upload_time": "2021-02-16T15:40:02", "upload_time_iso_8601": "2021-02-16T15:40:02.647417Z", "url": "https://files.pythonhosted.org/packages/44/fd/2780cb5fcbe85c4949f6212455e6273823742a4a1645e4f9e899819142f6/glcontext-2.3.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c660f49868f9f10d582578846fe1e654", "sha256": "f716c05689ddf911afe68c7e7e3ac2b283e40a184031d81055141d310f07235e" }, "downloads": -1, "filename": "glcontext-2.3.2.tar.gz", "has_sig": false, "md5_digest": "c660f49868f9f10d582578846fe1e654", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15031, "upload_time": "2021-02-16T15:37:46", "upload_time_iso_8601": "2021-02-16T15:37:46.592762Z", "url": "https://files.pythonhosted.org/packages/ee/80/c39ed832220b329f59658490416fa8820b050e33c3ab5734c97d5698a742/glcontext-2.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "1c2415edb12b3e3c6ca1dc3a0bdecfb0", "sha256": "f518379551a2b60d45c1eec23759cb1ee85517d4b943fc31530b6ab13e304fe4" }, "downloads": -1, "filename": "glcontext-2.3.3-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1c2415edb12b3e3c6ca1dc3a0bdecfb0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8948, "upload_time": "2021-03-13T15:28:32", "upload_time_iso_8601": "2021-03-13T15:28:32.403520Z", "url": "https://files.pythonhosted.org/packages/02/0a/4f0bedde41383338706495158a51be11ceb75d517f590e2de316e7c0ce4f/glcontext-2.3.3-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c7cdf7a3a6ed18933abcc0830d400f7", "sha256": "d3a8fbc27f43766d168bae02474790459f4050adeb25832ff0a227cc5006c933" }, "downloads": -1, "filename": "glcontext-2.3.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9c7cdf7a3a6ed18933abcc0830d400f7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38737, "upload_time": "2021-03-13T15:25:43", "upload_time_iso_8601": "2021-03-13T15:25:43.115734Z", "url": "https://files.pythonhosted.org/packages/e9/32/5eef316cfa5528ef8b81e2f8fc9d8b9d34880360e3d7d9c36badebac66a8/glcontext-2.3.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84ce03b1fce29b6bc0ae94d50c4524da", "sha256": "aa1d9e4f9bd6eda3d195f39c47c849b3721caf65813a4ad1e006a20fa02d33e4" }, "downloads": -1, "filename": "glcontext-2.3.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "84ce03b1fce29b6bc0ae94d50c4524da", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39491, "upload_time": "2021-03-13T15:25:44", "upload_time_iso_8601": "2021-03-13T15:25:44.283109Z", "url": "https://files.pythonhosted.org/packages/a9/d3/2fda2e2776d1eb90502213de9b5597dd2eb5f2ddba0600acbbf6466e84a6/glcontext-2.3.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c19b99eb5fb2b7ee0f739cd74b0381d1", "sha256": "8b4ee9cb5573e2ae313e1681fdfe2c5ac5b8780b20e857daf8f95e318c36aa2f" }, "downloads": -1, "filename": "glcontext-2.3.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c19b99eb5fb2b7ee0f739cd74b0381d1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11578, "upload_time": "2021-03-13T15:28:28", "upload_time_iso_8601": "2021-03-13T15:28:28.542515Z", "url": "https://files.pythonhosted.org/packages/18/e2/9826102e0c29db24bd91414eb9e64cf583cf9165d334e3924b30bd8b9e81/glcontext-2.3.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03ad7d5d526ca1087e9d50e89951a24f", "sha256": "b92ca447a04c3a05afb3974a6e94f584e60f55444c3e55ecd31fbfacad6ee07a" }, "downloads": -1, "filename": "glcontext-2.3.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "03ad7d5d526ca1087e9d50e89951a24f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12406, "upload_time": "2021-03-13T15:28:29", "upload_time_iso_8601": "2021-03-13T15:28:29.362456Z", "url": "https://files.pythonhosted.org/packages/57/30/911acf2945c96e823eeb1794e3a47b477347654449749bf149e7e22674b4/glcontext-2.3.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1afd0983dbc7d47adbf6580677278ebd", "sha256": "b102a00e7bbce03a5e8bb02692197f96fcb77c51dbe133859b70afa361eef5b7" }, "downloads": -1, "filename": "glcontext-2.3.3-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1afd0983dbc7d47adbf6580677278ebd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8950, "upload_time": "2021-03-13T15:28:33", "upload_time_iso_8601": "2021-03-13T15:28:33.131275Z", "url": "https://files.pythonhosted.org/packages/18/9f/b9b3d06ee0968ed0ff29448bace1b6c3cd3e0894d192ced6cafde289bb85/glcontext-2.3.3-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4863c4b374d1c857897a9cdc8da8493e", "sha256": "ea3975a9d86a97b49f9524713c8e3f0df92044715cfbe5a24102e10762673b23" }, "downloads": -1, "filename": "glcontext-2.3.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4863c4b374d1c857897a9cdc8da8493e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38943, "upload_time": "2021-03-13T15:25:45", "upload_time_iso_8601": "2021-03-13T15:25:45.362553Z", "url": "https://files.pythonhosted.org/packages/9d/6b/1ee19d69fe31968782f2bace99fc674862d8c3b959a9d031080436a10bad/glcontext-2.3.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f86ffde38ac4b8fc7e3274d05f1a366d", "sha256": "5f2e7fb61ea1f69c44db0799f8929ea66ad207619c18063ae60cfb26ad0f447f" }, "downloads": -1, "filename": "glcontext-2.3.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f86ffde38ac4b8fc7e3274d05f1a366d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39696, "upload_time": "2021-03-13T15:25:46", "upload_time_iso_8601": "2021-03-13T15:25:46.396909Z", "url": "https://files.pythonhosted.org/packages/1a/e6/88f4a94943a9381962e65295fb4ce0523e33124a3802201646d95fd802ff/glcontext-2.3.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e3c6917eea06ef329fd0bbf9a797b1b", "sha256": "bf8c3fa5f3a8962c9bcc03a869a0bb178bd1681619225b9f0a070a65ff3f766d" }, "downloads": -1, "filename": "glcontext-2.3.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "7e3c6917eea06ef329fd0bbf9a797b1b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11580, "upload_time": "2021-03-13T15:28:30", "upload_time_iso_8601": "2021-03-13T15:28:30.295211Z", "url": "https://files.pythonhosted.org/packages/76/07/59417de6e88c621c76cbcdaef11555e72384274a1267d7b57ec1be6e07fc/glcontext-2.3.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93b352633a6168cfb7a6ad1b059268b6", "sha256": "e0b637f2ac1c2dd1e0dbfcbad6d7be2dae75290f9af8f82aa67aa55b977766e1" }, "downloads": -1, "filename": "glcontext-2.3.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "93b352633a6168cfb7a6ad1b059268b6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12405, "upload_time": "2021-03-13T15:28:31", "upload_time_iso_8601": "2021-03-13T15:28:31.048631Z", "url": "https://files.pythonhosted.org/packages/b9/57/7164b759ff573ff8572d520909f588af88bb38d66d61356985e4a496e205/glcontext-2.3.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5718c1eb327c56c0df08fd659db39c9b", "sha256": "2002d29dee90e9ba800c8699e13e1ff8b0fa1292a7c5bb0a98ef50b5f6cd3f14" }, "downloads": -1, "filename": "glcontext-2.3.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5718c1eb327c56c0df08fd659db39c9b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8949, "upload_time": "2021-03-13T15:28:34", "upload_time_iso_8601": "2021-03-13T15:28:34.267066Z", "url": "https://files.pythonhosted.org/packages/5b/8c/20150c17e35aacc184545a4d978d2295f0722be67152167ad8d6f5275b33/glcontext-2.3.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5621012e9796d6aee49119f9b300a91", "sha256": "941be8972ad64e70080ad4702c037c64c09d1378ddd9b1b4576b957bc2d7f1c2" }, "downloads": -1, "filename": "glcontext-2.3.3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c5621012e9796d6aee49119f9b300a91", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 39335, "upload_time": "2021-03-13T15:25:47", "upload_time_iso_8601": "2021-03-13T15:25:47.411138Z", "url": "https://files.pythonhosted.org/packages/c7/52/c55ca8efc0d2e021c2cc54a51b7ace77cea98d075a17a896c18146fecf3a/glcontext-2.3.3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "903d53511040122aa1da7a172e61c7a9", "sha256": "0eb69c4add7f724017169bcefc2a8ef8ce053183e9384cc4770162e934090592" }, "downloads": -1, "filename": "glcontext-2.3.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "903d53511040122aa1da7a172e61c7a9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 40097, "upload_time": "2021-03-13T15:25:48", "upload_time_iso_8601": "2021-03-13T15:25:48.242787Z", "url": "https://files.pythonhosted.org/packages/c3/e7/d4c1b33146e879edc59909e170a288118af3bc424b75c520de492301e142/glcontext-2.3.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45bbe55d624b19944b443114298797cf", "sha256": "f63aed2116907225f7392921df790a391fd1a843cd1af0756dcd533e9d3ecf2b" }, "downloads": -1, "filename": "glcontext-2.3.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "45bbe55d624b19944b443114298797cf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11579, "upload_time": "2021-03-13T15:28:31", "upload_time_iso_8601": "2021-03-13T15:28:31.814181Z", "url": "https://files.pythonhosted.org/packages/4c/51/9e278bffc73430f652c66ea39bc24759a2dd9a025c089ab77e5eba1deb9c/glcontext-2.3.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5167915714d36f7ee92e3dd134111db", "sha256": "2fa9b939c15f5f7e63110a1021e8d20341c03921b8d3aebbb4bb191f11414d86" }, "downloads": -1, "filename": "glcontext-2.3.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a5167915714d36f7ee92e3dd134111db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12408, "upload_time": "2021-03-13T15:28:32", "upload_time_iso_8601": "2021-03-13T15:28:32.480633Z", "url": "https://files.pythonhosted.org/packages/65/72/209caeb4f66dabe581968c4735adb60135952d74fd8bf46f1a946f41140e/glcontext-2.3.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3519f25d5ee7f77ed2684e08b71290c4", "sha256": "44f95953bbd6a26caa9489b4f838b106470ede432c5ef837cd3e0d3657ca2a06" }, "downloads": -1, "filename": "glcontext-2.3.3-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3519f25d5ee7f77ed2684e08b71290c4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8999, "upload_time": "2021-03-13T15:28:35", "upload_time_iso_8601": "2021-03-13T15:28:35.391811Z", "url": "https://files.pythonhosted.org/packages/f4/1f/8691ba522409c2fff5affda92ce29c3b7970f669de7e589a807c0c20006d/glcontext-2.3.3-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e206aa3f8dbf754c78881a25745cf6b2", "sha256": "843d3361bf46aec487f268bb7f680700166640995a82424fa86e53f428dc43ae" }, "downloads": -1, "filename": "glcontext-2.3.3-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e206aa3f8dbf754c78881a25745cf6b2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 39920, "upload_time": "2021-03-13T15:25:49", "upload_time_iso_8601": "2021-03-13T15:25:49.286205Z", "url": "https://files.pythonhosted.org/packages/24/c8/d4a2b606c2d3ab772339ae1cebeb0051c627a69a8ebd359959463ca7f457/glcontext-2.3.3-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db6e593491e9242a21946ee3d3c2887d", "sha256": "be3e25a8595976699b6d30a2619ca4faf7bd5e60ff38dcd4445fa38a8f3b2cf9" }, "downloads": -1, "filename": "glcontext-2.3.3-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "db6e593491e9242a21946ee3d3c2887d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 40667, "upload_time": "2021-03-13T15:25:50", "upload_time_iso_8601": "2021-03-13T15:25:50.243547Z", "url": "https://files.pythonhosted.org/packages/af/7c/b298b01a98fccd0e1b61335a856753e5fe357d13ea7e0dcef784e4cb9da4/glcontext-2.3.3-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a223b97b9941eb493665da497556e85", "sha256": "7abbd227bf9e4e62ec196360fa0f440143a66b7aae3d3deb7960b87aac654043" }, "downloads": -1, "filename": "glcontext-2.3.3-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "5a223b97b9941eb493665da497556e85", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11635, "upload_time": "2021-03-13T15:28:33", "upload_time_iso_8601": "2021-03-13T15:28:33.682805Z", "url": "https://files.pythonhosted.org/packages/1e/3e/5860ebfd7e540d167aa0c8b67332221857c0a53f9e16c7a52c7044e52f4e/glcontext-2.3.3-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0752d7a1d6c4934852613706346f0e1e", "sha256": "b91010d033789d1f876789e4aa4e6498e87cd284b4d0cb7a4aa1b7e620caaf57" }, "downloads": -1, "filename": "glcontext-2.3.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "0752d7a1d6c4934852613706346f0e1e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12458, "upload_time": "2021-03-13T15:28:34", "upload_time_iso_8601": "2021-03-13T15:28:34.977455Z", "url": "https://files.pythonhosted.org/packages/17/f2/280445610f51c464f7c5d57d5d2d4bf441cc29e4fb89c310bd235b99a153/glcontext-2.3.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "282b87a3f372b4b99928fb54618fbdc8", "sha256": "0a851f569f165a13f8fedf60dd4f2831f7c2ffbb9bc9f867d6e0e3fdd1846c8d" }, "downloads": -1, "filename": "glcontext-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "282b87a3f372b4b99928fb54618fbdc8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9000, "upload_time": "2021-03-13T15:28:36", "upload_time_iso_8601": "2021-03-13T15:28:36.465026Z", "url": "https://files.pythonhosted.org/packages/6a/32/c26e018ea77e0bffce9b35f5a42388294f66383c6baad6ef5de5470bd035/glcontext-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f5524add396c809323aa16ca03964b8", "sha256": "f36935ba84e8c52ed22bb9f683875bdf1690abd318ae704f40511f1afca5f71a" }, "downloads": -1, "filename": "glcontext-2.3.3-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "3f5524add396c809323aa16ca03964b8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 11584, "upload_time": "2021-03-13T15:28:35", "upload_time_iso_8601": "2021-03-13T15:28:35.862936Z", "url": "https://files.pythonhosted.org/packages/dd/9b/52a7a0e8600b9b16f7b98ad357fd0d07730cea2544f3acc4b49159a9552c/glcontext-2.3.3-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33624aaae4181d6a943b65f963225e2d", "sha256": "69e3a04c677e4925c0b6daf5efc5469a86d0982b05bb1d0ca29bce57f4aaf7d1" }, "downloads": -1, "filename": "glcontext-2.3.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "33624aaae4181d6a943b65f963225e2d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12416, "upload_time": "2021-03-13T15:28:36", "upload_time_iso_8601": "2021-03-13T15:28:36.956851Z", "url": "https://files.pythonhosted.org/packages/07/f9/0a7b5ea06b075c4e139273c982b545efc3ec1b16a9c0dc58abe1db32d7df/glcontext-2.3.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e8b6712217db3c882f67bd11a3ae653", "sha256": "f86a6c4ad99f941623911f964da74c443dc3f833fac7eb03cd485fae82acb80c" }, "downloads": -1, "filename": "glcontext-2.3.3.tar.gz", "has_sig": false, "md5_digest": "3e8b6712217db3c882f67bd11a3ae653", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15051, "upload_time": "2021-03-13T15:26:41", "upload_time_iso_8601": "2021-03-13T15:26:41.639610Z", "url": "https://files.pythonhosted.org/packages/95/e3/5eabcd9f81116d830ddf2f4e5bfb38506452f748c66d228a315045484a06/glcontext-2.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.4": [ { "comment_text": "", "digests": { "md5": "1c9984bdd46f74cb8f8898bbd4ebfc75", "sha256": "e558960888be5a4aa8e2f6f43b5320a227c8519bc3517bf7202cb40925114a6d" }, "downloads": -1, "filename": "glcontext-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1c9984bdd46f74cb8f8898bbd4ebfc75", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 50146, "upload_time": "2021-09-22T12:24:42", "upload_time_iso_8601": "2021-09-22T12:24:42.003634Z", "url": "https://files.pythonhosted.org/packages/0a/a7/bafa5516cbaf279fda776b33b58a4710e90118bab0fd41adc8c2a9337ae8/glcontext-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9878f5aa4ac3ca59d535e776850c436c", "sha256": "8983f0eae99c4ec04ece197537d3914a2c9e21f074bd518f21ce3c4be6d300cb" }, "downloads": -1, "filename": "glcontext-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "9878f5aa4ac3ca59d535e776850c436c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 50147, "upload_time": "2021-09-22T12:24:44", "upload_time_iso_8601": "2021-09-22T12:24:44.034785Z", "url": "https://files.pythonhosted.org/packages/18/35/bc0189a34adb157c89bf38cd6e3ac4e3cf694ff6618d03a06a4a8cf6aa82/glcontext-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e7a160fe4ec177a3580aa8b9684808d", "sha256": "5e9289db306a4255328128cea0d250e078c9546678659499f5d1e819924e2225" }, "downloads": -1, "filename": "glcontext-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "0e7a160fe4ec177a3580aa8b9684808d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 50140, "upload_time": "2021-09-22T12:24:45", "upload_time_iso_8601": "2021-09-22T12:24:45.989338Z", "url": "https://files.pythonhosted.org/packages/53/a2/82155380550182e1e5ba9fd761f6867aeef91ac1ff29a402de2d8b38891b/glcontext-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7af426d16c1f46af60f46b9b8ab86ed", "sha256": "1ca421ca610b4c3da6e41be28585839af48fd961a0f2f4c8f3377a445e9b016a" }, "downloads": -1, "filename": "glcontext-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_27_x86_64.whl", "has_sig": false, "md5_digest": "b7af426d16c1f46af60f46b9b8ab86ed", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 50140, "upload_time": "2021-09-22T12:24:47", "upload_time_iso_8601": "2021-09-22T12:24:47.860876Z", "url": "https://files.pythonhosted.org/packages/d5/9f/29edd5d470bf3ed39b0c1c2a9bcd6295f5c2ad3702f19d25f33e83cc9e7f/glcontext-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_27_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8746ffc717fb687243cf3fe96ad1340", "sha256": "821f354c60ea82e73d3d5f788c22c31e60af578b0d4fd6aa9329a770ca966257" }, "downloads": -1, "filename": "glcontext-2.3.4-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "d8746ffc717fb687243cf3fe96ad1340", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 12568, "upload_time": "2021-09-22T12:34:17", "upload_time_iso_8601": "2021-09-22T12:34:17.387056Z", "url": "https://files.pythonhosted.org/packages/1f/f9/d3da8c52814a504993b45dc278172b4bd0a8d4ac95f823a8119d3a7e98d4/glcontext-2.3.4-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c955272641314616bfa8d7415fe21fd2", "sha256": "1af3314f20c97fa2a8fc6d2b68d597463066416a7cc3c1ea4f05b4ecb0fc3e9c" }, "downloads": -1, "filename": "glcontext-2.3.4-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "c955272641314616bfa8d7415fe21fd2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9018, "upload_time": "2021-05-25T05:18:17", "upload_time_iso_8601": "2021-05-25T05:18:17.305064Z", "url": "https://files.pythonhosted.org/packages/36/e9/bc042b7c704ae8914028ea75d7a50c98d51f2dc966c50b4f35d37bfc3e14/glcontext-2.3.4-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac6af1dc3a484e2b315d49fe98766ce0", "sha256": "3e1ef7e93a6a0f8b89a76fb41c58af4d9e69686504785883b628f0eeee29b153" }, "downloads": -1, "filename": "glcontext-2.3.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ac6af1dc3a484e2b315d49fe98766ce0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 62070, "upload_time": "2021-05-25T05:18:18", "upload_time_iso_8601": "2021-05-25T05:18:18.493883Z", "url": "https://files.pythonhosted.org/packages/a4/f9/364b92388eaabcd48ca5602a07bbaeaf425eaf905f75f3496fe141bae00c/glcontext-2.3.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc39a0eb8f2e9c21e2dbcd986b86f483", "sha256": "448bafceaad2716a260fce53f171f168546691dddd18c1d4532c8d0e6f305a50" }, "downloads": -1, "filename": "glcontext-2.3.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "dc39a0eb8f2e9c21e2dbcd986b86f483", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11743, "upload_time": "2021-05-25T05:18:19", "upload_time_iso_8601": "2021-05-25T05:18:19.274692Z", "url": "https://files.pythonhosted.org/packages/5d/d1/1264e51c1e5539367b02e778621652e5f4f1dd5e1e5054ba27d709ce64b7/glcontext-2.3.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06056a033786466277ac8b913c4e669a", "sha256": "1ceb88d1cb22387af5a3d5e0223835ed0676da350774ba15ba68f6d815519f90" }, "downloads": -1, "filename": "glcontext-2.3.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "06056a033786466277ac8b913c4e669a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12486, "upload_time": "2021-05-25T05:18:20", "upload_time_iso_8601": "2021-05-25T05:18:20.248891Z", "url": "https://files.pythonhosted.org/packages/93/9f/698b5b3517ced5acef074fa095863d99a9e3091c4e5a61e94d0e91c60782/glcontext-2.3.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2088aea5ee4a9e8d0eb0140f2df56092", "sha256": "0be3e1cb47fe3a8f48b2e66cdcc2d330490990aba3913648c9d67d58c646765e" }, "downloads": -1, "filename": "glcontext-2.3.4-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "2088aea5ee4a9e8d0eb0140f2df56092", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9018, "upload_time": "2021-05-25T05:18:21", "upload_time_iso_8601": "2021-05-25T05:18:21.004747Z", "url": "https://files.pythonhosted.org/packages/e9/00/3bc17c8bcf214d4a5d3ed4f3daa9b1fe1fc4f81013f3d5d5e93efbe3a93f/glcontext-2.3.4-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c83653c8dc2d1130190c2b476929b22", "sha256": "0f99726238ac132cc1fd7b9a62e449c7914957f451e6aea1a54e24be8b1ce04a" }, "downloads": -1, "filename": "glcontext-2.3.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0c83653c8dc2d1130190c2b476929b22", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 64325, "upload_time": "2021-05-25T05:18:22", "upload_time_iso_8601": "2021-05-25T05:18:22.545169Z", "url": "https://files.pythonhosted.org/packages/9c/b7/4cec6e920bcad3d48b0384b320102f789ca4bee6444fd400ac01213a07ae/glcontext-2.3.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a40719222cddec444f9f5f42bee9158", "sha256": "4290542e696ca6c52230521552ed26322d62eda935c43da01d9913af2e95165b" }, "downloads": -1, "filename": "glcontext-2.3.4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "9a40719222cddec444f9f5f42bee9158", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11740, "upload_time": "2021-05-25T05:18:23", "upload_time_iso_8601": "2021-05-25T05:18:23.519855Z", "url": "https://files.pythonhosted.org/packages/9f/f0/0fc85b98c0944e70d72edb77e32910ae59d5261fd6346a97fa61db27b004/glcontext-2.3.4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f033da4ac7c30d5ed63f764c5b1368c4", "sha256": "2d585a586cd5a401e9aeeca18c8d56a4b908cd5b365241ab6834e35f28f7dafb" }, "downloads": -1, "filename": "glcontext-2.3.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f033da4ac7c30d5ed63f764c5b1368c4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12483, "upload_time": "2021-05-25T05:18:24", "upload_time_iso_8601": "2021-05-25T05:18:24.205987Z", "url": "https://files.pythonhosted.org/packages/8c/c8/d5537ccb32f3eb1b64b1539ba130a1660ba2e1b95ea612133db680fd9ca8/glcontext-2.3.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4e8a8705270c086cbd9e923f0ad2ad8", "sha256": "b7eecb1a1f689bcb3b77f8aed45e6b9139b3dec4fdeef894b6a7aa2b7c9b4312" }, "downloads": -1, "filename": "glcontext-2.3.4-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "c4e8a8705270c086cbd9e923f0ad2ad8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9042, "upload_time": "2021-05-25T05:18:25", "upload_time_iso_8601": "2021-05-25T05:18:25.244986Z", "url": "https://files.pythonhosted.org/packages/2d/57/80d527b69a6392e0ba2a4a4e2e7d1045298665846207aec020bb8f817308/glcontext-2.3.4-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f408d622423d6805b9d284d463a42cfc", "sha256": "1ad78fce244afa860cb11c30c42fb710251035b2df4d84b0e72457128b7a830f" }, "downloads": -1, "filename": "glcontext-2.3.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f408d622423d6805b9d284d463a42cfc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 62533, "upload_time": "2021-05-25T05:18:26", "upload_time_iso_8601": "2021-05-25T05:18:26.365087Z", "url": "https://files.pythonhosted.org/packages/af/82/d38f9a7666546134c709ad93e8ce7e5d4439ec730efacde57e50b227d050/glcontext-2.3.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe25fc5c47bf7776c8602971a4b40c96", "sha256": "e71121ac65a98808f9caaeaa3912756c07cd6cf73857a90b31170703103b644c" }, "downloads": -1, "filename": "glcontext-2.3.4-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "fe25fc5c47bf7776c8602971a4b40c96", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11797, "upload_time": "2021-05-25T05:18:27", "upload_time_iso_8601": "2021-05-25T05:18:27.195042Z", "url": "https://files.pythonhosted.org/packages/6a/ef/ccf06e1d0aa69daf9d34dbb46cebfc0e035af27c0daffb0ab789070943f1/glcontext-2.3.4-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92ba12f1871d1fd4cd0e184480952cff", "sha256": "a27c5bbbe9d88ae547ddb89d3f55edec14b44126999d7f6214838240b1cb8c2a" }, "downloads": -1, "filename": "glcontext-2.3.4-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "92ba12f1871d1fd4cd0e184480952cff", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12550, "upload_time": "2021-05-25T05:18:28", "upload_time_iso_8601": "2021-05-25T05:18:28.058643Z", "url": "https://files.pythonhosted.org/packages/52/75/3a7e9d0b899d0a078cab0791dcb636a05062844e716db64f66d01b049106/glcontext-2.3.4-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37adeebbb8586c4ea79cdb7a2d7a0b80", "sha256": "25100ea7df50728937f96cb3cb6cba5ce42d674a0a6c2efae23198674212032a" }, "downloads": -1, "filename": "glcontext-2.3.4-cp39-cp39-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "37adeebbb8586c4ea79cdb7a2d7a0b80", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9043, "upload_time": "2021-05-25T05:18:28", "upload_time_iso_8601": "2021-05-25T05:18:28.914451Z", "url": "https://files.pythonhosted.org/packages/14/6f/915e7d8107c168108866d28f2941e1bfb536992437586c7f49d5285418ca/glcontext-2.3.4-cp39-cp39-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc0ce3f1f7ab40f974de33b492df7f0e", "sha256": "2f99c62f234f2859d626e1b24d7949d8d76a3a6fb7c2883b6f376e70586ce0ad" }, "downloads": -1, "filename": "glcontext-2.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fc0ce3f1f7ab40f974de33b492df7f0e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 62186, "upload_time": "2021-05-25T05:18:30", "upload_time_iso_8601": "2021-05-25T05:18:30.216881Z", "url": "https://files.pythonhosted.org/packages/d3/9b/658463a2bd97fd88b783c06d01f7ffd6593c423e40a955426a855ab7dbee/glcontext-2.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a598f7ea0cca54da076f5f4167088d3c", "sha256": "e1404b84e40daf7181168f4afa4f6ac5c4984e1f090fbd538da5b49046e4a078" }, "downloads": -1, "filename": "glcontext-2.3.4-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "a598f7ea0cca54da076f5f4167088d3c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 11748, "upload_time": "2021-05-25T05:18:31", "upload_time_iso_8601": "2021-05-25T05:18:31.243239Z", "url": "https://files.pythonhosted.org/packages/e2/d8/ac5f58f54d1c327804513e84c60346829e619295578e9d1abc5ead4461ad/glcontext-2.3.4-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ea2d3c7076bbd199444e53606f28b54", "sha256": "247ac15cbef85befb8c3ddb62659cc36b26786f0cec609724b60419ffb0a423a" }, "downloads": -1, "filename": "glcontext-2.3.4-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "3ea2d3c7076bbd199444e53606f28b54", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12489, "upload_time": "2021-05-25T05:18:32", "upload_time_iso_8601": "2021-05-25T05:18:32.225014Z", "url": "https://files.pythonhosted.org/packages/5d/50/6fa24e0a8d805d011e3a8c3416fae60bcf525dd0093d35c40479164594b9/glcontext-2.3.4-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e84c95c76a195abf88f751f04e3bc1f1", "sha256": "537cd5113f7a5c17094dee50107587adeaea01d4854407bdab8e3bcd808e0bc6" }, "downloads": -1, "filename": "glcontext-2.3.4.tar.gz", "has_sig": false, "md5_digest": "e84c95c76a195abf88f751f04e3bc1f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14418, "upload_time": "2021-05-25T05:18:33", "upload_time_iso_8601": "2021-05-25T05:18:33.067907Z", "url": "https://files.pythonhosted.org/packages/24/95/98284450ae53363f6cd0bdc09cc43783a91c2a6b3634d930c69e8c46682e/glcontext-2.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.5": [ { "comment_text": "", "digests": { "md5": "c61c99347ab52267330b8e8e90a4cc8e", "sha256": "9ab27d42e2247defd047b067b011c41e46a2fa23b679d89203d426cc074fbc08" }, "downloads": -1, "filename": "glcontext-2.3.5-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "c61c99347ab52267330b8e8e90a4cc8e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 12666, "upload_time": "2022-03-09T16:25:46", "upload_time_iso_8601": "2022-03-09T16:25:46.969165Z", "url": "https://files.pythonhosted.org/packages/be/f8/c2d98b5b82b960ffbcad1626bf04b7231e389d434abc435aab9db656bcc0/glcontext-2.3.5-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8dcbe08ccc4debd752aaa7f12f028bd", "sha256": "b7df77de7b4b34b24b0d528c48e298876c9072bdf70f31afb899081dd95fc625" }, "downloads": -1, "filename": "glcontext-2.3.5-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d8dcbe08ccc4debd752aaa7f12f028bd", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 9182, "upload_time": "2022-03-09T16:25:48", "upload_time_iso_8601": "2022-03-09T16:25:48.544937Z", "url": "https://files.pythonhosted.org/packages/40/f4/3322f63aefbd3f799854357e043f43f4b58b24fc81b568e7f7b7889484c2/glcontext-2.3.5-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bf45f175659e749bb5b82dc1e11057c", "sha256": "6d39a7c042198eb52986771cbf30837d5b29247cb915b162474a28eb7c40f3dc" }, "downloads": -1, "filename": "glcontext-2.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "3bf45f175659e749bb5b82dc1e11057c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 52658, "upload_time": "2022-03-09T16:25:50", "upload_time_iso_8601": "2022-03-09T16:25:50.099702Z", "url": "https://files.pythonhosted.org/packages/e6/c9/eb75956e632775f49be01572695af6b339f7672da1b5e0a2f87bf9c59566/glcontext-2.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce5e90a9a80f5d910d3f4d0ef657b19b", "sha256": "1af56c80d0b28bdb7e0cef879986e95fddfe9e8f2c16cd7ae9839e7202483776" }, "downloads": -1, "filename": "glcontext-2.3.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "ce5e90a9a80f5d910d3f4d0ef657b19b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 49587, "upload_time": "2022-03-09T16:25:51", "upload_time_iso_8601": "2022-03-09T16:25:51.186700Z", "url": "https://files.pythonhosted.org/packages/9e/7b/580eec7a0c9f19c256791e0de0755111dac2d6a7f33cc9620f066bc8c844/glcontext-2.3.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2da5f01330061a6943655b420292676e", "sha256": "52be87a32884663525d2ce62b2f3af73b6e27271e3a7beb646da20afb2c47f7f" }, "downloads": -1, "filename": "glcontext-2.3.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2da5f01330061a6943655b420292676e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 50496, "upload_time": "2022-03-09T16:25:52", "upload_time_iso_8601": "2022-03-09T16:25:52.728883Z", "url": "https://files.pythonhosted.org/packages/49/3c/bbb279bcd966d97c6a059635c61031cec2db79528cb8785e6da16e3ae151/glcontext-2.3.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "444be808acf660d1ecef447b65187a81", "sha256": "cd5b3dbba97328d3dbc8d00c74aedb1b67462e0f6c2dfee9123015047dac86ef" }, "downloads": -1, "filename": "glcontext-2.3.5-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "444be808acf660d1ecef447b65187a81", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 11870, "upload_time": "2022-03-09T16:25:53", "upload_time_iso_8601": "2022-03-09T16:25:53.939916Z", "url": "https://files.pythonhosted.org/packages/6f/67/fcc6e3e5ef82091faf44db096ac6ee1bb67dbf5e060f2fe7aa832d6c7875/glcontext-2.3.5-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53c79675627487a39f6efaeedce82c15", "sha256": "9439f79b4cbff5102ff609e1fc8b507c808bc8a17dcf5764d6d3736c0aeea8df" }, "downloads": -1, "filename": "glcontext-2.3.5-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "53c79675627487a39f6efaeedce82c15", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 12588, "upload_time": "2022-03-09T16:25:55", "upload_time_iso_8601": "2022-03-09T16:25:55.277636Z", "url": "https://files.pythonhosted.org/packages/cb/55/ff31b79ec6bc190cc4966e3ae6c68d033016ed481d515e9e3237a545029b/glcontext-2.3.5-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55b32a0b0fed3d0b64814f66a1a8bbd8", "sha256": "a1046141afc30b60f92bc9707a5537b5d08788c2c7027fccc1aafafaff33be2f" }, "downloads": -1, "filename": "glcontext-2.3.5-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "55b32a0b0fed3d0b64814f66a1a8bbd8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9101, "upload_time": "2022-03-09T16:25:56", "upload_time_iso_8601": "2022-03-09T16:25:56.551534Z", "url": "https://files.pythonhosted.org/packages/65/ba/c2fa620caa75c02a358ac754f41e8af56156f3ce103c9d2b6997e1693ce9/glcontext-2.3.5-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47348eeb84aab2a895da366058077bc9", "sha256": "929c395fd22e648929e0e959865e7dae3c0c113c0dbb0a221523aa1450ff3580" }, "downloads": -1, "filename": "glcontext-2.3.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "47348eeb84aab2a895da366058077bc9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 52511, "upload_time": "2022-03-09T16:25:57", "upload_time_iso_8601": "2022-03-09T16:25:57.958573Z", "url": "https://files.pythonhosted.org/packages/2f/e9/2a1910b5760557e66635f27d225bf29c9fb8c999791aa78002c0d70be7a3/glcontext-2.3.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3a711622280b3975e353dbe1d185aa1", "sha256": "3a80321b5b081a9c8836680e460f6b52b0bbfbe1aae722ad402207a8488d40e4" }, "downloads": -1, "filename": "glcontext-2.3.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "e3a711622280b3975e353dbe1d185aa1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49591, "upload_time": "2022-03-09T16:25:59", "upload_time_iso_8601": "2022-03-09T16:25:59.754267Z", "url": "https://files.pythonhosted.org/packages/da/31/1014f55611c8038529bf52641506c5a6018c7f4ed30cfc0bd29df02877cb/glcontext-2.3.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b7dbb48448d01af8748c243e62aac08", "sha256": "09891760b2027a3a690b0f506d82ac34ed0abd58fe54ff65cf8816df4398d75f" }, "downloads": -1, "filename": "glcontext-2.3.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0b7dbb48448d01af8748c243e62aac08", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 50388, "upload_time": "2022-03-09T16:26:00", "upload_time_iso_8601": "2022-03-09T16:26:00.934289Z", "url": "https://files.pythonhosted.org/packages/d3/e2/cec251e0562f36a176af658632dc303bf2de2d1ba2c0f6a5997b317c0e93/glcontext-2.3.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1d00cf5913e8ac6dbd4551c7cc9d9bb", "sha256": "f9472db9e98f92ed91f86f0838419071ec3e33b4c99e1b910c5beff677df14f5" }, "downloads": -1, "filename": "glcontext-2.3.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c1d00cf5913e8ac6dbd4551c7cc9d9bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11931, "upload_time": "2022-03-09T16:26:01", "upload_time_iso_8601": "2022-03-09T16:26:01.931736Z", "url": "https://files.pythonhosted.org/packages/c5/80/7be2e675285548b85340e07a83ffb9cc235abd27cf6df13c77d0805a55e3/glcontext-2.3.5-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b654bd38cba29e3fe3edfa697d47bb65", "sha256": "b19bdcc17e298991e54185235f0a9d1158bd683077353f31b3df14b577d6ab2f" }, "downloads": -1, "filename": "glcontext-2.3.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b654bd38cba29e3fe3edfa697d47bb65", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12678, "upload_time": "2022-03-09T16:26:03", "upload_time_iso_8601": "2022-03-09T16:26:03.258704Z", "url": "https://files.pythonhosted.org/packages/05/1d/bf2adc23897fcd9112396c4679f7765b481848b4eb457dac377872bf83db/glcontext-2.3.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36795ea5d78323d92a4b6e16017247aa", "sha256": "95d1cf0ea4cb7868a336746ac4fdbb6e17afb98fcdbd04c2aa16f52bf035f213" }, "downloads": -1, "filename": "glcontext-2.3.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "36795ea5d78323d92a4b6e16017247aa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9103, "upload_time": "2022-03-09T16:26:05", "upload_time_iso_8601": "2022-03-09T16:26:05.316085Z", "url": "https://files.pythonhosted.org/packages/93/dc/d59c357456f413e20a286f9d7f5fa451d851a7bd408beaf32ff62f0fbf10/glcontext-2.3.5-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e21f7c57fe7d27be1c1550df4b824c3", "sha256": "f16493a72d9caab2c707a1f916f6dea5349c3ee8d293f39cbc6617c3f9fa68fe" }, "downloads": -1, "filename": "glcontext-2.3.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8e21f7c57fe7d27be1c1550df4b824c3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53028, "upload_time": "2022-03-09T16:26:06", "upload_time_iso_8601": "2022-03-09T16:26:06.332931Z", "url": "https://files.pythonhosted.org/packages/d6/3f/f66c4bed9bedab2f026ed1d9458cf6ce0b9a9271318939546a232681f70c/glcontext-2.3.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9410e6a70bdeb9c854ef9ce061396794", "sha256": "31146dcf54e3538dbffce5ee6b6f92710ed69d513a1838a1eba39f727c7d330a" }, "downloads": -1, "filename": "glcontext-2.3.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "9410e6a70bdeb9c854ef9ce061396794", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50128, "upload_time": "2022-03-09T16:26:07", "upload_time_iso_8601": "2022-03-09T16:26:07.366402Z", "url": "https://files.pythonhosted.org/packages/1e/fd/2ebaca8c5f0aacef8eaf1bc65eec06ec2f36d65f00960121ff4bbdf7f0de/glcontext-2.3.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dda3f1852b61353681b6ebefa2ede465", "sha256": "f7eb4600ab24fa5f7007833bf9f309f78e6f31240d7b80f7b1beae76e21800a7" }, "downloads": -1, "filename": "glcontext-2.3.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "dda3f1852b61353681b6ebefa2ede465", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50870, "upload_time": "2022-03-09T16:26:08", "upload_time_iso_8601": "2022-03-09T16:26:08.412014Z", "url": "https://files.pythonhosted.org/packages/39/3a/40b5be6ba5cecaea47d43d7b3cab3e7522c3fb812cf28d21a3bd72f161a6/glcontext-2.3.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d2037bc0d76fdaeb0a39ebca45d3266", "sha256": "2ff68c5d08e00246967440c2b72816bcbd01c8cde0ad30b979f0fb1149e7ebb8" }, "downloads": -1, "filename": "glcontext-2.3.5-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "6d2037bc0d76fdaeb0a39ebca45d3266", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11871, "upload_time": "2022-03-09T16:26:09", "upload_time_iso_8601": "2022-03-09T16:26:09.458465Z", "url": "https://files.pythonhosted.org/packages/4e/ac/424b13c13dc1c0d028275cb401e1dc9764ea7466f0beea70fd72bb8c561c/glcontext-2.3.5-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57fc81b70a8d2b5cb327a0db6767d8be", "sha256": "f20a7065b3191f2244579ea19c0cb6967b5c623142c585616f5dbdab508e7aa4" }, "downloads": -1, "filename": "glcontext-2.3.5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "57fc81b70a8d2b5cb327a0db6767d8be", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12596, "upload_time": "2022-03-09T16:26:10", "upload_time_iso_8601": "2022-03-09T16:26:10.663420Z", "url": "https://files.pythonhosted.org/packages/5e/42/09f385b71f4be94ad0bd60549330e7add23dde823d76609f6573ee080089/glcontext-2.3.5-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "057e90446eef1884129c6a924aaf0ac5", "sha256": "1348b3e82e92d04f1ddc6ebd08210951f4c37c0f2b9334adf00c43d84763ea45" }, "downloads": -1, "filename": "glcontext-2.3.5-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "057e90446eef1884129c6a924aaf0ac5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12663, "upload_time": "2022-03-09T16:26:11", "upload_time_iso_8601": "2022-03-09T16:26:11.574580Z", "url": "https://files.pythonhosted.org/packages/41/9b/bbae3890d91b55dfb27e4b05d0c6a410f7c2ddb5bb2521b75234b389014d/glcontext-2.3.5-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27eea4313fdadb5a3c94cc2dc59614de", "sha256": "418a89c8563eba061e3e8a26eafa4d720199d3945a9e46548d3bd13bfdc72f73" }, "downloads": -1, "filename": "glcontext-2.3.5-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "27eea4313fdadb5a3c94cc2dc59614de", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9177, "upload_time": "2022-03-09T16:26:12", "upload_time_iso_8601": "2022-03-09T16:26:12.589510Z", "url": "https://files.pythonhosted.org/packages/fe/17/5abb2b8e6f5596425d4a6a3455d32c3c1798da41d668f66d29e853b78b54/glcontext-2.3.5-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4dce18bb6480f0b1fa371b90943ff19", "sha256": "86bdd828320144a70d6687e63dd0132dbcfc0723c86aa7c214dfd78998eedca1" }, "downloads": -1, "filename": "glcontext-2.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "a4dce18bb6480f0b1fa371b90943ff19", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53434, "upload_time": "2022-03-09T16:26:13", "upload_time_iso_8601": "2022-03-09T16:26:13.952669Z", "url": "https://files.pythonhosted.org/packages/ba/c2/808b6e280f39920e6233cc13dc229c7fa5b18a576af22100a8c61e30e6c2/glcontext-2.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "007a8a46009d52890e13af7c1cf451a8", "sha256": "f8809ebf227203405f7dea672859d996168e53aac2b65e2dbb99f860632c3d33" }, "downloads": -1, "filename": "glcontext-2.3.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "007a8a46009d52890e13af7c1cf451a8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 50403, "upload_time": "2022-03-09T16:26:15", "upload_time_iso_8601": "2022-03-09T16:26:15.155667Z", "url": "https://files.pythonhosted.org/packages/e1/a1/043cec7c849fd9589cf203a44df01182315dac36a33bb0fb31ae2c9987ae/glcontext-2.3.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17cfc1784ff8f10ed5951f29feb4acdb", "sha256": "d7e6063ba81b4028af3d8960376f26eac63b3393677d19c805678febfb908e94" }, "downloads": -1, "filename": "glcontext-2.3.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "17cfc1784ff8f10ed5951f29feb4acdb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 51261, "upload_time": "2022-03-09T16:26:16", "upload_time_iso_8601": "2022-03-09T16:26:16.344462Z", "url": "https://files.pythonhosted.org/packages/d5/fb/b7bfd4d423e23fae7607ee1937d587422c83a577b0cdf1655aec25609eba/glcontext-2.3.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74e811b7574ca3b0dd0c268a5525e7c5", "sha256": "2286d4fe22a95147a917cb887a2c298f37ec56ef57c52e5969a56463f7540cb4" }, "downloads": -1, "filename": "glcontext-2.3.5-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "74e811b7574ca3b0dd0c268a5525e7c5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11869, "upload_time": "2022-03-09T16:26:17", "upload_time_iso_8601": "2022-03-09T16:26:17.832507Z", "url": "https://files.pythonhosted.org/packages/d2/38/3229926ed6f6eb05114f8d8d489bb1408858e04d62a63472c4cabb217ae6/glcontext-2.3.5-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3439d58d4c25fca726b6ebd66eb99b3", "sha256": "db3f3a3df661f0c2ac2994b6012650d997a9e3520abe543eb6f8f71567facb26" }, "downloads": -1, "filename": "glcontext-2.3.5-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "c3439d58d4c25fca726b6ebd66eb99b3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12593, "upload_time": "2022-03-09T16:26:18", "upload_time_iso_8601": "2022-03-09T16:26:18.943978Z", "url": "https://files.pythonhosted.org/packages/69/b6/7a1eb368fc77b40b2b75ad65ec3611c78448a636843128c7c829630b14c7/glcontext-2.3.5-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bad8a11a369f618b5df65a147b2f193c", "sha256": "2669694475924e283b3c429bf53c5867e0fe7dd3fc674f857f13ebd566eea71e" }, "downloads": -1, "filename": "glcontext-2.3.5-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "bad8a11a369f618b5df65a147b2f193c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12668, "upload_time": "2022-03-09T16:26:20", "upload_time_iso_8601": "2022-03-09T16:26:20.046015Z", "url": "https://files.pythonhosted.org/packages/a1/8c/1ccc075635d2cea5d23ca16995b5cbdb8104fe80df63f074248b3b6d0cf6/glcontext-2.3.5-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd24a65f3a1972878c30c40271042f16", "sha256": "d6e90642e102de51015dcfebe656dffa1339834db3215b5ea44f6fa7109f5f54" }, "downloads": -1, "filename": "glcontext-2.3.5-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bd24a65f3a1972878c30c40271042f16", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9173, "upload_time": "2022-03-09T16:26:21", "upload_time_iso_8601": "2022-03-09T16:26:21.340792Z", "url": "https://files.pythonhosted.org/packages/58/16/751aecd27199687184d591851df144f6d1a0f782643023918d4074fad8aa/glcontext-2.3.5-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66b635a07362ef7e47f031b3115f867e", "sha256": "088be0e62c874a376b3eecc95fbe6b8c469b97087696232c616b70e89b5cdf52" }, "downloads": -1, "filename": "glcontext-2.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "66b635a07362ef7e47f031b3115f867e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52174, "upload_time": "2022-03-09T16:26:22", "upload_time_iso_8601": "2022-03-09T16:26:22.402530Z", "url": "https://files.pythonhosted.org/packages/ad/22/135e3547052cc0c6acc0a250af8ca74ab08d29141770a79b1048a9407774/glcontext-2.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09af48fa25c992dbfb6b543ea6fe5b80", "sha256": "2559a9a83f53de9f6cbc79a96b97c62617b990d6828b96d6d8cf6ec2883e65df" }, "downloads": -1, "filename": "glcontext-2.3.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "09af48fa25c992dbfb6b543ea6fe5b80", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 49080, "upload_time": "2022-03-09T16:26:23", "upload_time_iso_8601": "2022-03-09T16:26:23.538251Z", "url": "https://files.pythonhosted.org/packages/27/e7/ad3c60a234b56f33698d48c7bfddadb8d57fddb9aef0a5ffd403e34557f4/glcontext-2.3.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3aca86bccaa58fc267b3171a7bd3a865", "sha256": "f5aadb61aece5648f9b82a6cd9c83074b44bc3568440175d7aac6533add7486b" }, "downloads": -1, "filename": "glcontext-2.3.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3aca86bccaa58fc267b3171a7bd3a865", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 49969, "upload_time": "2022-03-09T16:26:25", "upload_time_iso_8601": "2022-03-09T16:26:25.154426Z", "url": "https://files.pythonhosted.org/packages/6f/c3/731327612d533b08c8a851311ca66afb82ae6ce20bc3c9f89a0df8294690/glcontext-2.3.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f588941aa08ba5aff185abd129f2476f", "sha256": "f9fe81003daf6a0b43e6467a7d53765c3703dc9f684b30e50c95d9a2b11a97b1" }, "downloads": -1, "filename": "glcontext-2.3.5-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "f588941aa08ba5aff185abd129f2476f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 11871, "upload_time": "2022-03-09T16:26:26", "upload_time_iso_8601": "2022-03-09T16:26:26.552673Z", "url": "https://files.pythonhosted.org/packages/9e/4e/3c7699c6f6abbd6851be036d71647965c079c4030d07794bcf07da819878/glcontext-2.3.5-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a86a0c6c45c16f09419f4f437096b78", "sha256": "2da4f13cff095e637bf817e3f41dcc28c3ee9dca9544a0c6223196705a3b8c43" }, "downloads": -1, "filename": "glcontext-2.3.5-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "6a86a0c6c45c16f09419f4f437096b78", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12589, "upload_time": "2022-03-09T16:26:27", "upload_time_iso_8601": "2022-03-09T16:26:27.916404Z", "url": "https://files.pythonhosted.org/packages/5b/b7/fea35e4be0e06001f19c87803510c95781e70a49219b280c6ae352f9fa99/glcontext-2.3.5-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea6699d50b2c3da990ccbd29aa39b0c2", "sha256": "45b27269fdaff3c937166b8f06b625bf74fa13c8d3e5eb2d4a7c316d94e345aa" }, "downloads": -1, "filename": "glcontext-2.3.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ea6699d50b2c3da990ccbd29aa39b0c2", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 8942, "upload_time": "2022-03-09T16:26:28", "upload_time_iso_8601": "2022-03-09T16:26:28.893768Z", "url": "https://files.pythonhosted.org/packages/38/61/6e0064249d1d0b62f22164ace9a618d595bec1dbfd5fbcd8fc8e7b4d6a74/glcontext-2.3.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0c6e96b9e0c3cdda0d433dacfc1121c", "sha256": "dfda32c812a739665f2bc91252b75a86d8256cfea75279a5d56b434e1df36fc8" }, "downloads": -1, "filename": "glcontext-2.3.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b0c6e96b9e0c3cdda0d433dacfc1121c", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 65135, "upload_time": "2022-03-09T16:26:29", "upload_time_iso_8601": "2022-03-09T16:26:29.880262Z", "url": "https://files.pythonhosted.org/packages/f2/7c/af1b78c784b0ded4d75d0b197524be6561cb28165b13323b2b3aab97c1c5/glcontext-2.3.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92d5b41896cb4b0f8126be340a2fa11e", "sha256": "7107df7f83abe00637ea27fa33e75b7407e3c819a06cb8e16dfbe4be25023b20" }, "downloads": -1, "filename": "glcontext-2.3.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "92d5b41896cb4b0f8126be340a2fa11e", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 61264, "upload_time": "2022-03-09T16:26:31", "upload_time_iso_8601": "2022-03-09T16:26:31.080480Z", "url": "https://files.pythonhosted.org/packages/42/c1/cbd8f3e44cf287c0817c77394f6957521ef676f7c15a259923ed47ba5208/glcontext-2.3.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e997ae6a964affe2b25af22e95055044", "sha256": "4e4ae8a67d6fd2fa3a4019e9b476be2e5a35aeff2a995aa23019d8cf47a03ebb" }, "downloads": -1, "filename": "glcontext-2.3.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e997ae6a964affe2b25af22e95055044", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 61397, "upload_time": "2022-03-09T16:26:32", "upload_time_iso_8601": "2022-03-09T16:26:32.247614Z", "url": "https://files.pythonhosted.org/packages/35/0e/dffd0cc8a3ff89a1a9d411411042eaf732300e3ed1a997df8a46b6244ea1/glcontext-2.3.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ed83a0f37aa10f657144d2e6be22e73", "sha256": "7a7edda12bab73ff9520a2a980292b1d82e432a7008ff545e24032248a746f77" }, "downloads": -1, "filename": "glcontext-2.3.5-pp37-pypy37_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "0ed83a0f37aa10f657144d2e6be22e73", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 19325, "upload_time": "2022-03-09T16:26:33", "upload_time_iso_8601": "2022-03-09T16:26:33.481484Z", "url": "https://files.pythonhosted.org/packages/77/d7/e76debc51599ba4adfab440b49601fca2942eb99ef789322771a299dd51f/glcontext-2.3.5-pp37-pypy37_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18703b14e81631dfe54915b5774f42d3", "sha256": "94f1881a7e1e64c6a0c2d3eb5038e12bd18176c3e4c922c93ecbcdf069cfedcc" }, "downloads": -1, "filename": "glcontext-2.3.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "18703b14e81631dfe54915b5774f42d3", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 12270, "upload_time": "2022-03-09T16:26:34", "upload_time_iso_8601": "2022-03-09T16:26:34.459930Z", "url": "https://files.pythonhosted.org/packages/1d/50/9b7bbb9d3470d73bdb40ef52ca8b4ac75d716359b248958d10c619ddb3b1/glcontext-2.3.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2a4027594de0a3fef7ec4e61fe174e4", "sha256": "773850860e81b219db9593e54955b6f3b2b3ccd9f699aaf693214b353cc053e5" }, "downloads": -1, "filename": "glcontext-2.3.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "f2a4027594de0a3fef7ec4e61fe174e4", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 65569, "upload_time": "2022-03-09T16:26:35", "upload_time_iso_8601": "2022-03-09T16:26:35.414607Z", "url": "https://files.pythonhosted.org/packages/99/f2/b0caa3cffde6513e19ddf610b8b82866448a718cd650e673ecbfbcc75a1c/glcontext-2.3.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "088f78f2ec407a9c6ade69491c49ea83", "sha256": "accb0d14d5aff08af629937361cdfef07261a521479dcb228214a90f371460e2" }, "downloads": -1, "filename": "glcontext-2.3.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "088f78f2ec407a9c6ade69491c49ea83", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 61537, "upload_time": "2022-03-09T16:26:36", "upload_time_iso_8601": "2022-03-09T16:26:36.452955Z", "url": "https://files.pythonhosted.org/packages/6e/be/2db47ac10cf02b2068fd82e8f7ab88866976f00ef2038888019ec31d136c/glcontext-2.3.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1fc72d69ac1777a7c1d943a96049167", "sha256": "cedf181a5a05feb710c12557b988c8755a25674f41133bde02504a42f3b8ddb3" }, "downloads": -1, "filename": "glcontext-2.3.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f1fc72d69ac1777a7c1d943a96049167", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 61788, "upload_time": "2022-03-09T16:26:37", "upload_time_iso_8601": "2022-03-09T16:26:37.692047Z", "url": "https://files.pythonhosted.org/packages/5e/e9/cadd11e21adfe816fe568e2e3fb3a1dcd7edfb1e2b3a5ac4bd3f07661091/glcontext-2.3.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c3526008357f2c91824252db4722ea5", "sha256": "abfc26acc5397b07d7b7e3e463b6e318de7512faddbb52a344afb5b07c6ba5ed" }, "downloads": -1, "filename": "glcontext-2.3.5-pp38-pypy38_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "5c3526008357f2c91824252db4722ea5", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 19325, "upload_time": "2022-03-09T16:26:38", "upload_time_iso_8601": "2022-03-09T16:26:38.751922Z", "url": "https://files.pythonhosted.org/packages/b6/22/06d79e7c7cba4237ad89801723cf4f4b3ee596028809fcb12e390c659df4/glcontext-2.3.5-pp38-pypy38_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cfccb64d8b72099e42f75723edc63310", "sha256": "44d3ef950e39930c6aefc038c9f43f1e2b6bc5c03914a4c68ac187bdc8e7636c" }, "downloads": -1, "filename": "glcontext-2.3.5.tar.gz", "has_sig": false, "md5_digest": "cfccb64d8b72099e42f75723edc63310", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14948, "upload_time": "2022-03-09T16:26:39", "upload_time_iso_8601": "2022-03-09T16:26:39.824660Z", "url": "https://files.pythonhosted.org/packages/d5/c2/146a7967647eda1e621a278f99cd1a30f68befb10b3e69204ac3c1eb70a4/glcontext-2.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.6": [ { "comment_text": "", "digests": { "md5": "373a208d3f1ddffa0b07bd3d94e7c798", "sha256": "2eb3c2d7879076a33e801283ab2403788b78e1a45dc89e664a3100b967d471a1" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "373a208d3f1ddffa0b07bd3d94e7c798", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 12835, "upload_time": "2022-04-23T19:47:19", "upload_time_iso_8601": "2022-04-23T19:47:19.846365Z", "url": "https://files.pythonhosted.org/packages/50/f7/169aafd3ce892274cd0f87a1e41dd0f346e838c6f4572df3c39f7a70a860/glcontext-2.3.6-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5c462a17694fe8848e7a1d93a96c089", "sha256": "86441e63363dcbb97ee813c9978c1d8998563e76b3726776da04b7be49813be3" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d5c462a17694fe8848e7a1d93a96c089", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 9251, "upload_time": "2022-04-23T19:47:21", "upload_time_iso_8601": "2022-04-23T19:47:21.259292Z", "url": "https://files.pythonhosted.org/packages/39/48/7e17565b063b58c5d867b77e8bc8942e6978349db285004faf0dad677d23/glcontext-2.3.6-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7079061642ecd642508530db3ed0ffc7", "sha256": "0e613a52a32b9fd5a528981c94b39078064a96380cad91ade4c312340d5404af" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "7079061642ecd642508530db3ed0ffc7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 52992, "upload_time": "2022-04-23T19:47:22", "upload_time_iso_8601": "2022-04-23T19:47:22.259500Z", "url": "https://files.pythonhosted.org/packages/0a/8d/a215f1b89dd6b6ce45b04d8650dac97c65a03f0c7104a004fa149133cec8/glcontext-2.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b034e0615a298ca70fb9ddc60e080f2", "sha256": "12ba701c46e7b774857b756ac6af15487b917a29dce195e40d834638edaad6f4" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "2b034e0615a298ca70fb9ddc60e080f2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 49906, "upload_time": "2022-04-23T19:47:23", "upload_time_iso_8601": "2022-04-23T19:47:23.452844Z", "url": "https://files.pythonhosted.org/packages/ff/bd/52a0106c333146c83dceceaff13f6eecdfb0578930ada3e045312386e056/glcontext-2.3.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19387453bfe468c2a91d2bbeeee697e5", "sha256": "861304731c2fa5413e24abc32ac8335e93cf9f8dc7ab767ea69d380d8d503b1b" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "19387453bfe468c2a91d2bbeeee697e5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 50734, "upload_time": "2022-04-23T19:47:24", "upload_time_iso_8601": "2022-04-23T19:47:24.645231Z", "url": "https://files.pythonhosted.org/packages/67/2a/4df5a2b40aa28579b976b0a0542706427edada8960bf6351ec1846d724a1/glcontext-2.3.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f13bb7ec06e8c841fb2d0f5cf1d9503b", "sha256": "cb5b67ffc75ff4a358e8f739d3c65e1bbcc9e75c651dd5945c787d7b9c3ad03f" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "f13bb7ec06e8c841fb2d0f5cf1d9503b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 11893, "upload_time": "2022-04-23T19:47:25", "upload_time_iso_8601": "2022-04-23T19:47:25.898457Z", "url": "https://files.pythonhosted.org/packages/b1/6c/e212494fcb5e70629fd47f3ef31ff666019a43e9f31870c3111bea1973c1/glcontext-2.3.6-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8aa4deed555815c100ce43f5fad9c43", "sha256": "032d10008de005b51a2401820356e9f7d51bc9c2a28f8194cc1c345bf1a8a3f9" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "c8aa4deed555815c100ce43f5fad9c43", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 12604, "upload_time": "2022-04-23T19:47:27", "upload_time_iso_8601": "2022-04-23T19:47:27.085930Z", "url": "https://files.pythonhosted.org/packages/9f/48/7d243c849d5561b452b47d891859b2aa8e9e0ca55fb81bbd117ae352b489/glcontext-2.3.6-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fac39f9c9739de7b47a66216256ac33f", "sha256": "16bde9cf3bae7129f5308be4a1143db58e68b49b10c77e4e34f9a51cf98fd557" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fac39f9c9739de7b47a66216256ac33f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9170, "upload_time": "2022-04-23T19:47:28", "upload_time_iso_8601": "2022-04-23T19:47:28.041371Z", "url": "https://files.pythonhosted.org/packages/68/e3/9b96b2ad569812fd0e8a18e4a97c6132458103421495b6476b545a0a2c15/glcontext-2.3.6-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2ce991f816af4628a4b8f8fe5070830", "sha256": "b25a94ddd93eef639fd0a377b7ebc1ac972978796a2ada74fd5b03b88719d88a" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b2ce991f816af4628a4b8f8fe5070830", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53362, "upload_time": "2022-04-23T19:47:28", "upload_time_iso_8601": "2022-04-23T19:47:28.980025Z", "url": "https://files.pythonhosted.org/packages/b3/a0/2be02b2e0c9601fe2757e45eda701fd70f1d4dfc745fc4925ce744f2ec46/glcontext-2.3.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17d30387bb2bd81b2c571e449d8d6e2f", "sha256": "0a800ba7fd1912f6424bd5979ba596f08308a9e949da73aba942b0a535860170" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "17d30387bb2bd81b2c571e449d8d6e2f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50418, "upload_time": "2022-04-23T19:47:29", "upload_time_iso_8601": "2022-04-23T19:47:29.872201Z", "url": "https://files.pythonhosted.org/packages/29/77/6cc3819122a21f08b73aec17ff197011fdcde3b11a9dce460facbeaeeb1f/glcontext-2.3.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79dee0ec2a4b968949b1cefee05aa377", "sha256": "1bcb5b2ddd21d37f8a1b2aaa62e3952e54a09bc31d29b861a4dcc57a536514f0" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "79dee0ec2a4b968949b1cefee05aa377", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 51166, "upload_time": "2022-04-23T19:47:30", "upload_time_iso_8601": "2022-04-23T19:47:30.779506Z", "url": "https://files.pythonhosted.org/packages/01/bb/0bc46b568ce6eb053811e36bb060c4c73afb874be5c1baabe16662c671d4/glcontext-2.3.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "025db1092000695c43bcf1b40f48d3ca", "sha256": "e646d9c5af3b583f74a586fd151b787314352116e7c06c4902da93e15082bdb4" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "025db1092000695c43bcf1b40f48d3ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11891, "upload_time": "2022-04-23T19:47:31", "upload_time_iso_8601": "2022-04-23T19:47:31.925646Z", "url": "https://files.pythonhosted.org/packages/df/b1/117b08e76cf0852c5c994c9e77afb9c19bfac5d51f546c440ee9ee35b315/glcontext-2.3.6-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2cc345906d4e1b6336cffe23d2dc2fc", "sha256": "2ac6f80440510473621d287603ef69a08b985c06619f62f42cb485e5ca6e872c" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e2cc345906d4e1b6336cffe23d2dc2fc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12610, "upload_time": "2022-04-23T19:47:33", "upload_time_iso_8601": "2022-04-23T19:47:33.198987Z", "url": "https://files.pythonhosted.org/packages/f1/6d/68d2451d2f5f880a25b185ac6edd42da81b50abe80f5cef55a874d711ea7/glcontext-2.3.6-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60321629602965b79f46c2401d0204dc", "sha256": "b6030d9deedba125d95d39abd72c36fbf6f0a7f866e600f22b210e368afbf522" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "60321629602965b79f46c2401d0204dc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12828, "upload_time": "2022-04-23T19:47:34", "upload_time_iso_8601": "2022-04-23T19:47:34.119552Z", "url": "https://files.pythonhosted.org/packages/26/ae/23a082ec67d03730861bbc4dd0465e4e8242a1ca0202dae80b58dda77db7/glcontext-2.3.6-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbb746cf3f4bd2d49f7953f24b8a6452", "sha256": "8ca64b73e16712537a95d2e848a13391f83d72f5c19bde5f05562b62b2a1fee6" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cbb746cf3f4bd2d49f7953f24b8a6452", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9248, "upload_time": "2022-04-23T19:47:35", "upload_time_iso_8601": "2022-04-23T19:47:35.277666Z", "url": "https://files.pythonhosted.org/packages/5d/74/ab1d487adbcbb75b84ac10aa5ed35e14ec4a0a01ed1411a98b78e6292481/glcontext-2.3.6-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "746a6d4a8825c24a3a6ce2017916a037", "sha256": "226453bb7ff5a79e88c59ae38b60d1ce002fa2196b19aa8fada147221816e78c" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "746a6d4a8825c24a3a6ce2017916a037", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53773, "upload_time": "2022-04-23T19:47:36", "upload_time_iso_8601": "2022-04-23T19:47:36.323572Z", "url": "https://files.pythonhosted.org/packages/40/e2/a9898973536f66e95104e60ab18b24e99855e5019bfc010a2226a872ac2a/glcontext-2.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a8150cff2428af27fd03298cddf339b", "sha256": "48f299b77612b9c80f026204ee3a3062b56cb0776c1d25a6b5ce05fb7e18b261" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "6a8150cff2428af27fd03298cddf339b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 50699, "upload_time": "2022-04-23T19:47:37", "upload_time_iso_8601": "2022-04-23T19:47:37.179297Z", "url": "https://files.pythonhosted.org/packages/66/6e/46f78068077797cf6d543a4e90759cc43706c132a5db2f3dee6147a2da13/glcontext-2.3.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e1a63322a106cff2efa40533223511b", "sha256": "81addba70acbc3fa84ace2b53509c89ff3c7bfe068d1ba2d7d3478140aed2838" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3e1a63322a106cff2efa40533223511b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 51515, "upload_time": "2022-04-23T19:47:38", "upload_time_iso_8601": "2022-04-23T19:47:38.069732Z", "url": "https://files.pythonhosted.org/packages/93/dc/7a1f148b32bbf36c98140115e170d3bbbcee6dab06bf1759a5413a10e625/glcontext-2.3.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f5b5ec9da95189f1055b4b3d540f35c", "sha256": "233a9a977d545acf7d2ea1065c986fe6b711948f31499ce5e49e5366eefafa08" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "5f5b5ec9da95189f1055b4b3d540f35c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11890, "upload_time": "2022-04-23T19:47:39", "upload_time_iso_8601": "2022-04-23T19:47:39.312400Z", "url": "https://files.pythonhosted.org/packages/4d/ab/b583d80bc467be25964794cc767fd13279267841aa1bb8b22a5a4683ccc6/glcontext-2.3.6-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7d81e444337f1106bde67b7da7a9555", "sha256": "7f114582574c8013fdec09154767b2c3f87875b74ff9938b20d3265971d08971" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b7d81e444337f1106bde67b7da7a9555", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12609, "upload_time": "2022-04-23T19:47:40", "upload_time_iso_8601": "2022-04-23T19:47:40.309174Z", "url": "https://files.pythonhosted.org/packages/ae/e6/b06e19ee39e639a0004574efadf2996b6f4a0da844b513a93c9cf5af47d4/glcontext-2.3.6-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20b4dc07a71077c76d648e943eb59e45", "sha256": "c8adc530ecbb0c01c0abcc56ee71c7bcf8799209bff9e5c32f1a1d77f7035468" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "20b4dc07a71077c76d648e943eb59e45", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12831, "upload_time": "2022-04-23T19:47:41", "upload_time_iso_8601": "2022-04-23T19:47:41.343378Z", "url": "https://files.pythonhosted.org/packages/23/31/dff503dfa21f7671f96c7361ad220d35a5ffe0f0ebb7ba769e28f07fed25/glcontext-2.3.6-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a2bad5b1fbf974f228403a54d76b0ba", "sha256": "01106836f02d0098cbcacbc6d0c911f27fa728177d5a651ff44325dfafba7077" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7a2bad5b1fbf974f228403a54d76b0ba", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9244, "upload_time": "2022-04-23T19:47:42", "upload_time_iso_8601": "2022-04-23T19:47:42.308882Z", "url": "https://files.pythonhosted.org/packages/d7/60/c73408a8b61b35f46ba547dfbe7c420fa32972f03b3a606cc233ad7a3629/glcontext-2.3.6-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af7b6109e93a468e6a15fb1b1aa510d9", "sha256": "f3f573bde2183943f6161aeb81cad14a2978f143c686dd52253a38cdae7e7667" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "af7b6109e93a468e6a15fb1b1aa510d9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52533, "upload_time": "2022-04-23T19:47:43", "upload_time_iso_8601": "2022-04-23T19:47:43.452890Z", "url": "https://files.pythonhosted.org/packages/7c/ab/8f638749d777ec1cd668c242b6fb02c73e5a57075b77325875746f77be55/glcontext-2.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c53fec272c0a22c8f217e6a64255ce33", "sha256": "60a982fc78b4400d3b5075f9790977c4d2bdf99824af3cd0428ae5a54437635f" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "c53fec272c0a22c8f217e6a64255ce33", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 49391, "upload_time": "2022-04-23T19:47:44", "upload_time_iso_8601": "2022-04-23T19:47:44.630857Z", "url": "https://files.pythonhosted.org/packages/9a/2c/65f4820593b1001ce2e32fd29d46fc2040fe7346b3225cd0b92a694bea1e/glcontext-2.3.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84e7afe2ea0757ab12c2cdc99464797c", "sha256": "64c0425155174fd2faaff7f631d41792365e357484c7f44a6b38efc1ea38468c" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "84e7afe2ea0757ab12c2cdc99464797c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 50284, "upload_time": "2022-04-23T19:47:45", "upload_time_iso_8601": "2022-04-23T19:47:45.607768Z", "url": "https://files.pythonhosted.org/packages/57/6b/b55ef77f422454e57de0cfb65697088d9a659f4232bd5f6689cd235cbb69/glcontext-2.3.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d9695c2d18188f633ce629ec9780f35", "sha256": "8789947abf3594a11655f23be88481dae0a660bbf8f42e2a5fa95a8fce59ba2c" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "3d9695c2d18188f633ce629ec9780f35", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 11889, "upload_time": "2022-04-23T19:47:46", "upload_time_iso_8601": "2022-04-23T19:47:46.642461Z", "url": "https://files.pythonhosted.org/packages/36/a5/22bc0a220168bad7e329f3d3a44896cc015334f870efb2cd71c7f0fc3ab5/glcontext-2.3.6-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c796ee633db61a941ee127b7eeb7a02", "sha256": "22699f81696756ec98fcf8b9a2ebd1dd73a42f81501d7748855e66b63d963c36" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "9c796ee633db61a941ee127b7eeb7a02", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12608, "upload_time": "2022-04-23T19:47:47", "upload_time_iso_8601": "2022-04-23T19:47:47.527562Z", "url": "https://files.pythonhosted.org/packages/30/2c/57eeed72aeac969108b6de2f606d7aae574d2a830d86fd3da005c5e649f2/glcontext-2.3.6-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4957fc8cf792664624cdf31b751f61df", "sha256": "970a2769c6aed12e29bd1edbb30a04fa17871a6cf7bb95190e65302c693ce928" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4957fc8cf792664624cdf31b751f61df", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 8992, "upload_time": "2022-04-23T19:47:48", "upload_time_iso_8601": "2022-04-23T19:47:48.372955Z", "url": "https://files.pythonhosted.org/packages/f8/85/927edd35c337aacf52a8b0b7fbbbdd525135015b28bb923f71e83bc9e7c9/glcontext-2.3.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5c89aeb6a14369cef231df9113d6fa8", "sha256": "3a30c62c6168b42a32083dc8c967e421f8c346e4452a00809c056ce6c6bea0c4" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e5c89aeb6a14369cef231df9113d6fa8", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 18446, "upload_time": "2022-04-23T19:47:49", "upload_time_iso_8601": "2022-04-23T19:47:49.259113Z", "url": "https://files.pythonhosted.org/packages/51/bc/53a69a70657de63a14e7d89da62869cfd6dcb2d93e882d277f5836d79c7e/glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a412ce3730fce23bcc354e77f697d6b4", "sha256": "e531662f37d171c08fcdc4ca442468266bef77da14c72c183bcaa2cd80111386" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "a412ce3730fce23bcc354e77f697d6b4", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 17451, "upload_time": "2022-04-23T19:47:50", "upload_time_iso_8601": "2022-04-23T19:47:50.280916Z", "url": "https://files.pythonhosted.org/packages/c9/86/eb09664d0287d942feee2d461d9db09ea8014742a465e86b6038b1151c67/glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd53a50ddb4db480506bbed4737cf5ac", "sha256": "98d5dfc4629ed85e51176fc1d8563944e0439b77bc6fe2365cb42207838ea32f" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "dd53a50ddb4db480506bbed4737cf5ac", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 16853, "upload_time": "2022-04-23T19:47:51", "upload_time_iso_8601": "2022-04-23T19:47:51.502375Z", "url": "https://files.pythonhosted.org/packages/1d/90/6805ed2c2165063b839649b6f059cf96ac470f211fc2878f8c63993444f4/glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1d1de9c5ee6479b45dc2fef9795199f", "sha256": "41a69166c20b1a67b2652a5074a78078df7e19f36c65d92f6552535a1182d4cc" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "b1d1de9c5ee6479b45dc2fef9795199f", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 12625, "upload_time": "2022-04-23T19:47:52", "upload_time_iso_8601": "2022-04-23T19:47:52.346826Z", "url": "https://files.pythonhosted.org/packages/a7/94/959a903ec8f91a78fa916713405759a4a5637b95e4428b69eba672428092/glcontext-2.3.6-pp37-pypy37_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8cf95809a6780902994600a8c3daa4f7", "sha256": "a8b118f0361e61e21279e414a1fa759288421ac311e44ce08e718de38f788183" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8cf95809a6780902994600a8c3daa4f7", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 8993, "upload_time": "2022-04-23T19:47:53", "upload_time_iso_8601": "2022-04-23T19:47:53.296665Z", "url": "https://files.pythonhosted.org/packages/ca/0f/9d1a0ef08e0730a4e1ddfa57762dcd07bc77c7c179ba6c60148d14d3721d/glcontext-2.3.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e80251dd953cb7e73c294573501d00dd", "sha256": "a4f862f2b4426f1786743448c899d225e8383538602a04c3ffc9622956d08140" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e80251dd953cb7e73c294573501d00dd", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 18485, "upload_time": "2022-04-23T19:47:54", "upload_time_iso_8601": "2022-04-23T19:47:54.176102Z", "url": "https://files.pythonhosted.org/packages/2f/70/4c1f24b148f6708e357e2edc68cc1e4d528b2b966fe285ec1b9860af70f6/glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22de717a04aeac2beb0e3c793b19591d", "sha256": "e59f5afe61c5bc18dc7766c36a0ac912794a53605b30469c6c6be20483f4b42f" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "22de717a04aeac2beb0e3c793b19591d", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 17448, "upload_time": "2022-04-23T19:47:55", "upload_time_iso_8601": "2022-04-23T19:47:55.099712Z", "url": "https://files.pythonhosted.org/packages/ac/10/ad3cf8f4e260d00a34990ad5ce019b205e50ee361a865e643d3977d0a634/glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50bc340430aa96fbe75222d8ac21e183", "sha256": "4d399cba251b301d94eb7a41017ba68e001673f642606229fba7a0d4183b3273" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "50bc340430aa96fbe75222d8ac21e183", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 16853, "upload_time": "2022-04-23T19:47:56", "upload_time_iso_8601": "2022-04-23T19:47:56.415130Z", "url": "https://files.pythonhosted.org/packages/24/62/97b07a2ab9222f113ffe64be24944f41d9071f4595d752d9204e7f6ba2b1/glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fae903ed5db0e02a59f425ce8232db58", "sha256": "bd50f826bb70df2415c7166d5e0aebdda3e47df8af385f562d8d5ba6018f87e9" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "fae903ed5db0e02a59f425ce8232db58", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 12627, "upload_time": "2022-04-23T19:47:57", "upload_time_iso_8601": "2022-04-23T19:47:57.393381Z", "url": "https://files.pythonhosted.org/packages/68/fa/d1ae9e3b0b40e8957f58afa3210f4a6efaa8c1000ee778f23ba5f4da6980/glcontext-2.3.6-pp38-pypy38_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "547702d7a59a040f9bd649843f65907e", "sha256": "cdb540eec587deddca037fb4dfdaa0921dcab0fd4d7ea5f1079e44fcb1b81e67" }, "downloads": -1, "filename": "glcontext-2.3.6.tar.gz", "has_sig": false, "md5_digest": "547702d7a59a040f9bd649843f65907e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15014, "upload_time": "2022-04-23T19:47:58", "upload_time_iso_8601": "2022-04-23T19:47:58.322120Z", "url": "https://files.pythonhosted.org/packages/a5/aa/396b17e4a7ee92080e2fce3e1b362bcaa31612c809f5a4c28a76ce186391/glcontext-2.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.dev0": [ { "comment_text": "", "digests": { "md5": "b2c00519e09ed04dbe842cc10196051c", "sha256": "c45021879070912371b1dbe1d8d304da2fdd3032b7370b02c2b3836d36dd1db3" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp35-cp35m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "b2c00519e09ed04dbe842cc10196051c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10786, "upload_time": "2020-06-09T13:16:32", "upload_time_iso_8601": "2020-06-09T13:16:32.738159Z", "url": "https://files.pythonhosted.org/packages/52/b0/e3ae7bcd00e2dbf908be752387e12930d9863c81d93735ba466143b861e4/glcontext-2.3.dev0-cp35-cp35m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07da6ddd782398f2f4317e810842fe1a", "sha256": "b5201928b1d96eec8bb93cadeee0d517a3fb14c364bc573228ed10c1809bbbb7" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "07da6ddd782398f2f4317e810842fe1a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 38747, "upload_time": "2020-06-09T13:13:31", "upload_time_iso_8601": "2020-06-09T13:13:31.137509Z", "url": "https://files.pythonhosted.org/packages/40/8d/c434d220629894cae77b9615d305735785513dd6ca789711d3877205c740/glcontext-2.3.dev0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe181f997cbee251bfdd0508d7a61eca", "sha256": "1715fd46939d313ab87a3fea1ab271fe0184d493410b252cecb5fd05ef41cccb" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fe181f997cbee251bfdd0508d7a61eca", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39504, "upload_time": "2020-06-09T13:13:32", "upload_time_iso_8601": "2020-06-09T13:13:32.240605Z", "url": "https://files.pythonhosted.org/packages/60/4a/ca688b75eaacd1959a469e3c5c5046d61e09a492493562f707974c1924ca/glcontext-2.3.dev0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6644e1398c307ad8cbb43a3bc6483b7e", "sha256": "54621781fa62c997074b5dd945c599bb0274ec6f70f1f2cd8d9c97e2dbf1e485" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6644e1398c307ad8cbb43a3bc6483b7e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11599, "upload_time": "2020-06-09T13:15:10", "upload_time_iso_8601": "2020-06-09T13:15:10.882358Z", "url": "https://files.pythonhosted.org/packages/fc/50/d0e3e0a7a9ba2b6d2e96183314169ccd5c7008d9cbe5d8d2e7a4db1885f3/glcontext-2.3.dev0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e92ac7fb096c126c25db760cbbe058e2", "sha256": "42c678bae2ecf2f25617fef41bd3384a709173edd2296c4d9c991f57878df36f" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e92ac7fb096c126c25db760cbbe058e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12424, "upload_time": "2020-06-09T13:15:11", "upload_time_iso_8601": "2020-06-09T13:15:11.627473Z", "url": "https://files.pythonhosted.org/packages/4d/2f/63c441eb6ae8ccc2e7d4c1122c89e09e30f251b0072b5886acdf56674dde/glcontext-2.3.dev0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70c1338c079872045b802306ae8c6048", "sha256": "6f3ad9dd8d98cfdfddf5d3b8c92dd9f272fdfe14eed5b8e90337fd3a4d23c92b" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "70c1338c079872045b802306ae8c6048", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10787, "upload_time": "2020-06-09T13:16:33", "upload_time_iso_8601": "2020-06-09T13:16:33.605469Z", "url": "https://files.pythonhosted.org/packages/15/07/d24b2ebf64e6a90919f0ae07db2b720dab9b3406a0d5aaaa6fb144040806/glcontext-2.3.dev0-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08c3b175d4b7fba5da9fe87de4c75f51", "sha256": "cef2aaa5850838549c9a4c35fbca3224de7bd66d2af95a4545a0b759e99c77f7" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "08c3b175d4b7fba5da9fe87de4c75f51", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 38950, "upload_time": "2020-06-09T13:13:33", "upload_time_iso_8601": "2020-06-09T13:13:33.062752Z", "url": "https://files.pythonhosted.org/packages/b5/b9/157100c00313ec29efb4c16695c0f5f6e6fd1e612b4064b4df0fd33251f0/glcontext-2.3.dev0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38b8de0914d5e48b1f886764fd3c734a", "sha256": "c2271e7df0296fae61fe1c98245b86ca0ee17c1f8f3eacd027174022df9f92b1" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "38b8de0914d5e48b1f886764fd3c734a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39708, "upload_time": "2020-06-09T13:13:33", "upload_time_iso_8601": "2020-06-09T13:13:33.943297Z", "url": "https://files.pythonhosted.org/packages/db/83/b78281409629d845ea0a2712b9fc89e124c11303a135de142b325a2ab6d5/glcontext-2.3.dev0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a62bdf796060bc8e5433642b44ee951c", "sha256": "03a66527749c9f2f8c8d255ba86dea04be9834a43889b5d4a5066b126c6d9580" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a62bdf796060bc8e5433642b44ee951c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11603, "upload_time": "2020-06-09T13:15:12", "upload_time_iso_8601": "2020-06-09T13:15:12.633834Z", "url": "https://files.pythonhosted.org/packages/cf/76/82f791ab06822e29615228cc3c2c60e9bd368c31fef38d073b60f97661f8/glcontext-2.3.dev0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6899f0302e84fd564cd8b481331dc956", "sha256": "21eb7e467f8bcd63616c1b8332e6b421adbf8619d35b8608bc8011d62b4a43f2" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6899f0302e84fd564cd8b481331dc956", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12424, "upload_time": "2020-06-09T13:15:13", "upload_time_iso_8601": "2020-06-09T13:15:13.452912Z", "url": "https://files.pythonhosted.org/packages/c8/81/288ab27d4dbc114930957a968cc0a623f2fc67b148904dcb95f8689aaca8/glcontext-2.3.dev0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0a8ee3f73a041602e2b9c88657599f1", "sha256": "bd708e45ee02905af9172aab7bfa0e9a181c742ee564832a81d5d5890450ad2b" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp37-cp37m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "d0a8ee3f73a041602e2b9c88657599f1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 10782, "upload_time": "2020-06-09T13:16:34", "upload_time_iso_8601": "2020-06-09T13:16:34.463854Z", "url": "https://files.pythonhosted.org/packages/b9/5d/8f90033a455fa78172179ece08dd28d6408f9465471e887346761dc68b24/glcontext-2.3.dev0-cp37-cp37m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f23ec4cf7c13d68d7f04406ad0637ad", "sha256": "68cafb9d74b8d2cb4ffcc08f65e26ef80cde3197724ecf329dce69224dfb9c8f" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8f23ec4cf7c13d68d7f04406ad0637ad", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 39336, "upload_time": "2020-06-09T13:13:34", "upload_time_iso_8601": "2020-06-09T13:13:34.974779Z", "url": "https://files.pythonhosted.org/packages/ee/10/71d9538cd3dcaa9503aac280bbc74aef0780e786348156351b5d3758d993/glcontext-2.3.dev0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b8c8eabaaa315e82a140c72a4326371", "sha256": "11f64f0d27f3edf05ef43da5795e541abcf79c5a92a20eb1f0e78690af12b79c" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2b8c8eabaaa315e82a140c72a4326371", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 40120, "upload_time": "2020-06-09T13:13:35", "upload_time_iso_8601": "2020-06-09T13:13:35.941890Z", "url": "https://files.pythonhosted.org/packages/a7/46/2e608bd3aa77cf19004f6165fe3d815ba4812a1d73b813317c7a11613512/glcontext-2.3.dev0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "085573c515ec48d3eb43e986c2eb9b42", "sha256": "6f5ba9bd8a060815a64dab320182e1841b3ecd7497f72f55a93b18462d93d7ad" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "085573c515ec48d3eb43e986c2eb9b42", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11601, "upload_time": "2020-06-09T13:15:14", "upload_time_iso_8601": "2020-06-09T13:15:14.393632Z", "url": "https://files.pythonhosted.org/packages/7c/00/bb7896f0c7a54dc8cdf1ccd4ed3b067cbe852faecfc04996b01c7ea16bcf/glcontext-2.3.dev0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c840ae24f9646ae264e6bdbb3cecc92c", "sha256": "d3da24f388d9f55aae31287ea45d8fd00e0465500498260d86764040b5748db8" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c840ae24f9646ae264e6bdbb3cecc92c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12425, "upload_time": "2020-06-09T13:15:15", "upload_time_iso_8601": "2020-06-09T13:15:15.536796Z", "url": "https://files.pythonhosted.org/packages/c5/80/d48469cdda7624910619e1a1fc446d8f3c105cd564bd454d7b7edccc82b6/glcontext-2.3.dev0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e152948f0dc63d389e7fff919012fd8", "sha256": "39108d00638f9865940377f273a148bcedeb6e301a053b3237edf8cdfadf63ee" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4e152948f0dc63d389e7fff919012fd8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9011, "upload_time": "2020-06-09T13:16:35", "upload_time_iso_8601": "2020-06-09T13:16:35.656182Z", "url": "https://files.pythonhosted.org/packages/75/98/cf7e440e38f3a00286c317e79b44ee3198606e5d414a324d4a53a9d22397/glcontext-2.3.dev0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3828e955e18dc1f6b93b3151ebb9a59", "sha256": "17165cf76737ea9bb37d8b64d3560e14adc7c85e8ab22cec304e83632b1adadb" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b3828e955e18dc1f6b93b3151ebb9a59", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 39935, "upload_time": "2020-06-09T13:13:36", "upload_time_iso_8601": "2020-06-09T13:13:36.936892Z", "url": "https://files.pythonhosted.org/packages/c9/96/d89753c0fbc7f1c2a2253ffdf82026642a4d442a7b23f42dc97b05e98bf5/glcontext-2.3.dev0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68f1a1f5a94254c3c3ada0259dc814c8", "sha256": "67728b8d9ca1b3d66db631e8ccd32a37d6ae034081e32978aa3afd89c019f620" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "68f1a1f5a94254c3c3ada0259dc814c8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 40664, "upload_time": "2020-06-09T13:13:37", "upload_time_iso_8601": "2020-06-09T13:13:37.850471Z", "url": "https://files.pythonhosted.org/packages/22/46/f4a8ce2341b43d41658b9107ce52d215f53b1e7e9150bb37fdaab1bbcb62/glcontext-2.3.dev0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2acbe460e8d1653bc51367f8435133ee", "sha256": "2d3ac9df99f518d28c7be3655ede515dd96d0f6673e1841c91efe8a023f9d4e3" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "2acbe460e8d1653bc51367f8435133ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11651, "upload_time": "2020-06-09T13:15:16", "upload_time_iso_8601": "2020-06-09T13:15:16.277628Z", "url": "https://files.pythonhosted.org/packages/dd/16/75fa5d7a8527a6bb9b7c12b85719e7cb743db95dcef791ab13d9c9ae9757/glcontext-2.3.dev0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecd815f0949ef54d101aa47ffe595514", "sha256": "0d14a1aa70c21df46d8883a2a42b594e94bfee8d56a6594fbf0698289c4890bc" }, "downloads": -1, "filename": "glcontext-2.3.dev0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ecd815f0949ef54d101aa47ffe595514", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12473, "upload_time": "2020-06-09T13:15:17", "upload_time_iso_8601": "2020-06-09T13:15:17.031049Z", "url": "https://files.pythonhosted.org/packages/81/cd/295a8d577d62b7992358d1f854a76e17328d7274cc2aa6c43cb8ad3a5f4d/glcontext-2.3.dev0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "373a208d3f1ddffa0b07bd3d94e7c798", "sha256": "2eb3c2d7879076a33e801283ab2403788b78e1a45dc89e664a3100b967d471a1" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "373a208d3f1ddffa0b07bd3d94e7c798", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 12835, "upload_time": "2022-04-23T19:47:19", "upload_time_iso_8601": "2022-04-23T19:47:19.846365Z", "url": "https://files.pythonhosted.org/packages/50/f7/169aafd3ce892274cd0f87a1e41dd0f346e838c6f4572df3c39f7a70a860/glcontext-2.3.6-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5c462a17694fe8848e7a1d93a96c089", "sha256": "86441e63363dcbb97ee813c9978c1d8998563e76b3726776da04b7be49813be3" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d5c462a17694fe8848e7a1d93a96c089", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 9251, "upload_time": "2022-04-23T19:47:21", "upload_time_iso_8601": "2022-04-23T19:47:21.259292Z", "url": "https://files.pythonhosted.org/packages/39/48/7e17565b063b58c5d867b77e8bc8942e6978349db285004faf0dad677d23/glcontext-2.3.6-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7079061642ecd642508530db3ed0ffc7", "sha256": "0e613a52a32b9fd5a528981c94b39078064a96380cad91ade4c312340d5404af" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "7079061642ecd642508530db3ed0ffc7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 52992, "upload_time": "2022-04-23T19:47:22", "upload_time_iso_8601": "2022-04-23T19:47:22.259500Z", "url": "https://files.pythonhosted.org/packages/0a/8d/a215f1b89dd6b6ce45b04d8650dac97c65a03f0c7104a004fa149133cec8/glcontext-2.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b034e0615a298ca70fb9ddc60e080f2", "sha256": "12ba701c46e7b774857b756ac6af15487b917a29dce195e40d834638edaad6f4" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "2b034e0615a298ca70fb9ddc60e080f2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 49906, "upload_time": "2022-04-23T19:47:23", "upload_time_iso_8601": "2022-04-23T19:47:23.452844Z", "url": "https://files.pythonhosted.org/packages/ff/bd/52a0106c333146c83dceceaff13f6eecdfb0578930ada3e045312386e056/glcontext-2.3.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19387453bfe468c2a91d2bbeeee697e5", "sha256": "861304731c2fa5413e24abc32ac8335e93cf9f8dc7ab767ea69d380d8d503b1b" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "19387453bfe468c2a91d2bbeeee697e5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 50734, "upload_time": "2022-04-23T19:47:24", "upload_time_iso_8601": "2022-04-23T19:47:24.645231Z", "url": "https://files.pythonhosted.org/packages/67/2a/4df5a2b40aa28579b976b0a0542706427edada8960bf6351ec1846d724a1/glcontext-2.3.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f13bb7ec06e8c841fb2d0f5cf1d9503b", "sha256": "cb5b67ffc75ff4a358e8f739d3c65e1bbcc9e75c651dd5945c787d7b9c3ad03f" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "f13bb7ec06e8c841fb2d0f5cf1d9503b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 11893, "upload_time": "2022-04-23T19:47:25", "upload_time_iso_8601": "2022-04-23T19:47:25.898457Z", "url": "https://files.pythonhosted.org/packages/b1/6c/e212494fcb5e70629fd47f3ef31ff666019a43e9f31870c3111bea1973c1/glcontext-2.3.6-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8aa4deed555815c100ce43f5fad9c43", "sha256": "032d10008de005b51a2401820356e9f7d51bc9c2a28f8194cc1c345bf1a8a3f9" }, "downloads": -1, "filename": "glcontext-2.3.6-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "c8aa4deed555815c100ce43f5fad9c43", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 12604, "upload_time": "2022-04-23T19:47:27", "upload_time_iso_8601": "2022-04-23T19:47:27.085930Z", "url": "https://files.pythonhosted.org/packages/9f/48/7d243c849d5561b452b47d891859b2aa8e9e0ca55fb81bbd117ae352b489/glcontext-2.3.6-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fac39f9c9739de7b47a66216256ac33f", "sha256": "16bde9cf3bae7129f5308be4a1143db58e68b49b10c77e4e34f9a51cf98fd557" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fac39f9c9739de7b47a66216256ac33f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9170, "upload_time": "2022-04-23T19:47:28", "upload_time_iso_8601": "2022-04-23T19:47:28.041371Z", "url": "https://files.pythonhosted.org/packages/68/e3/9b96b2ad569812fd0e8a18e4a97c6132458103421495b6476b545a0a2c15/glcontext-2.3.6-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2ce991f816af4628a4b8f8fe5070830", "sha256": "b25a94ddd93eef639fd0a377b7ebc1ac972978796a2ada74fd5b03b88719d88a" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b2ce991f816af4628a4b8f8fe5070830", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53362, "upload_time": "2022-04-23T19:47:28", "upload_time_iso_8601": "2022-04-23T19:47:28.980025Z", "url": "https://files.pythonhosted.org/packages/b3/a0/2be02b2e0c9601fe2757e45eda701fd70f1d4dfc745fc4925ce744f2ec46/glcontext-2.3.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17d30387bb2bd81b2c571e449d8d6e2f", "sha256": "0a800ba7fd1912f6424bd5979ba596f08308a9e949da73aba942b0a535860170" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "17d30387bb2bd81b2c571e449d8d6e2f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50418, "upload_time": "2022-04-23T19:47:29", "upload_time_iso_8601": "2022-04-23T19:47:29.872201Z", "url": "https://files.pythonhosted.org/packages/29/77/6cc3819122a21f08b73aec17ff197011fdcde3b11a9dce460facbeaeeb1f/glcontext-2.3.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79dee0ec2a4b968949b1cefee05aa377", "sha256": "1bcb5b2ddd21d37f8a1b2aaa62e3952e54a09bc31d29b861a4dcc57a536514f0" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "79dee0ec2a4b968949b1cefee05aa377", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 51166, "upload_time": "2022-04-23T19:47:30", "upload_time_iso_8601": "2022-04-23T19:47:30.779506Z", "url": "https://files.pythonhosted.org/packages/01/bb/0bc46b568ce6eb053811e36bb060c4c73afb874be5c1baabe16662c671d4/glcontext-2.3.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "025db1092000695c43bcf1b40f48d3ca", "sha256": "e646d9c5af3b583f74a586fd151b787314352116e7c06c4902da93e15082bdb4" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "025db1092000695c43bcf1b40f48d3ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11891, "upload_time": "2022-04-23T19:47:31", "upload_time_iso_8601": "2022-04-23T19:47:31.925646Z", "url": "https://files.pythonhosted.org/packages/df/b1/117b08e76cf0852c5c994c9e77afb9c19bfac5d51f546c440ee9ee35b315/glcontext-2.3.6-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2cc345906d4e1b6336cffe23d2dc2fc", "sha256": "2ac6f80440510473621d287603ef69a08b985c06619f62f42cb485e5ca6e872c" }, "downloads": -1, "filename": "glcontext-2.3.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e2cc345906d4e1b6336cffe23d2dc2fc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12610, "upload_time": "2022-04-23T19:47:33", "upload_time_iso_8601": "2022-04-23T19:47:33.198987Z", "url": "https://files.pythonhosted.org/packages/f1/6d/68d2451d2f5f880a25b185ac6edd42da81b50abe80f5cef55a874d711ea7/glcontext-2.3.6-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60321629602965b79f46c2401d0204dc", "sha256": "b6030d9deedba125d95d39abd72c36fbf6f0a7f866e600f22b210e368afbf522" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "60321629602965b79f46c2401d0204dc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12828, "upload_time": "2022-04-23T19:47:34", "upload_time_iso_8601": "2022-04-23T19:47:34.119552Z", "url": "https://files.pythonhosted.org/packages/26/ae/23a082ec67d03730861bbc4dd0465e4e8242a1ca0202dae80b58dda77db7/glcontext-2.3.6-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbb746cf3f4bd2d49f7953f24b8a6452", "sha256": "8ca64b73e16712537a95d2e848a13391f83d72f5c19bde5f05562b62b2a1fee6" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cbb746cf3f4bd2d49f7953f24b8a6452", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9248, "upload_time": "2022-04-23T19:47:35", "upload_time_iso_8601": "2022-04-23T19:47:35.277666Z", "url": "https://files.pythonhosted.org/packages/5d/74/ab1d487adbcbb75b84ac10aa5ed35e14ec4a0a01ed1411a98b78e6292481/glcontext-2.3.6-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "746a6d4a8825c24a3a6ce2017916a037", "sha256": "226453bb7ff5a79e88c59ae38b60d1ce002fa2196b19aa8fada147221816e78c" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "746a6d4a8825c24a3a6ce2017916a037", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53773, "upload_time": "2022-04-23T19:47:36", "upload_time_iso_8601": "2022-04-23T19:47:36.323572Z", "url": "https://files.pythonhosted.org/packages/40/e2/a9898973536f66e95104e60ab18b24e99855e5019bfc010a2226a872ac2a/glcontext-2.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a8150cff2428af27fd03298cddf339b", "sha256": "48f299b77612b9c80f026204ee3a3062b56cb0776c1d25a6b5ce05fb7e18b261" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "6a8150cff2428af27fd03298cddf339b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 50699, "upload_time": "2022-04-23T19:47:37", "upload_time_iso_8601": "2022-04-23T19:47:37.179297Z", "url": "https://files.pythonhosted.org/packages/66/6e/46f78068077797cf6d543a4e90759cc43706c132a5db2f3dee6147a2da13/glcontext-2.3.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e1a63322a106cff2efa40533223511b", "sha256": "81addba70acbc3fa84ace2b53509c89ff3c7bfe068d1ba2d7d3478140aed2838" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3e1a63322a106cff2efa40533223511b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 51515, "upload_time": "2022-04-23T19:47:38", "upload_time_iso_8601": "2022-04-23T19:47:38.069732Z", "url": "https://files.pythonhosted.org/packages/93/dc/7a1f148b32bbf36c98140115e170d3bbbcee6dab06bf1759a5413a10e625/glcontext-2.3.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f5b5ec9da95189f1055b4b3d540f35c", "sha256": "233a9a977d545acf7d2ea1065c986fe6b711948f31499ce5e49e5366eefafa08" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "5f5b5ec9da95189f1055b4b3d540f35c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 11890, "upload_time": "2022-04-23T19:47:39", "upload_time_iso_8601": "2022-04-23T19:47:39.312400Z", "url": "https://files.pythonhosted.org/packages/4d/ab/b583d80bc467be25964794cc767fd13279267841aa1bb8b22a5a4683ccc6/glcontext-2.3.6-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7d81e444337f1106bde67b7da7a9555", "sha256": "7f114582574c8013fdec09154767b2c3f87875b74ff9938b20d3265971d08971" }, "downloads": -1, "filename": "glcontext-2.3.6-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b7d81e444337f1106bde67b7da7a9555", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 12609, "upload_time": "2022-04-23T19:47:40", "upload_time_iso_8601": "2022-04-23T19:47:40.309174Z", "url": "https://files.pythonhosted.org/packages/ae/e6/b06e19ee39e639a0004574efadf2996b6f4a0da844b513a93c9cf5af47d4/glcontext-2.3.6-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20b4dc07a71077c76d648e943eb59e45", "sha256": "c8adc530ecbb0c01c0abcc56ee71c7bcf8799209bff9e5c32f1a1d77f7035468" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "20b4dc07a71077c76d648e943eb59e45", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12831, "upload_time": "2022-04-23T19:47:41", "upload_time_iso_8601": "2022-04-23T19:47:41.343378Z", "url": "https://files.pythonhosted.org/packages/23/31/dff503dfa21f7671f96c7361ad220d35a5ffe0f0ebb7ba769e28f07fed25/glcontext-2.3.6-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a2bad5b1fbf974f228403a54d76b0ba", "sha256": "01106836f02d0098cbcacbc6d0c911f27fa728177d5a651ff44325dfafba7077" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7a2bad5b1fbf974f228403a54d76b0ba", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9244, "upload_time": "2022-04-23T19:47:42", "upload_time_iso_8601": "2022-04-23T19:47:42.308882Z", "url": "https://files.pythonhosted.org/packages/d7/60/c73408a8b61b35f46ba547dfbe7c420fa32972f03b3a606cc233ad7a3629/glcontext-2.3.6-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af7b6109e93a468e6a15fb1b1aa510d9", "sha256": "f3f573bde2183943f6161aeb81cad14a2978f143c686dd52253a38cdae7e7667" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "af7b6109e93a468e6a15fb1b1aa510d9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52533, "upload_time": "2022-04-23T19:47:43", "upload_time_iso_8601": "2022-04-23T19:47:43.452890Z", "url": "https://files.pythonhosted.org/packages/7c/ab/8f638749d777ec1cd668c242b6fb02c73e5a57075b77325875746f77be55/glcontext-2.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c53fec272c0a22c8f217e6a64255ce33", "sha256": "60a982fc78b4400d3b5075f9790977c4d2bdf99824af3cd0428ae5a54437635f" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "c53fec272c0a22c8f217e6a64255ce33", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 49391, "upload_time": "2022-04-23T19:47:44", "upload_time_iso_8601": "2022-04-23T19:47:44.630857Z", "url": "https://files.pythonhosted.org/packages/9a/2c/65f4820593b1001ce2e32fd29d46fc2040fe7346b3225cd0b92a694bea1e/glcontext-2.3.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84e7afe2ea0757ab12c2cdc99464797c", "sha256": "64c0425155174fd2faaff7f631d41792365e357484c7f44a6b38efc1ea38468c" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "84e7afe2ea0757ab12c2cdc99464797c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 50284, "upload_time": "2022-04-23T19:47:45", "upload_time_iso_8601": "2022-04-23T19:47:45.607768Z", "url": "https://files.pythonhosted.org/packages/57/6b/b55ef77f422454e57de0cfb65697088d9a659f4232bd5f6689cd235cbb69/glcontext-2.3.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d9695c2d18188f633ce629ec9780f35", "sha256": "8789947abf3594a11655f23be88481dae0a660bbf8f42e2a5fa95a8fce59ba2c" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "3d9695c2d18188f633ce629ec9780f35", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 11889, "upload_time": "2022-04-23T19:47:46", "upload_time_iso_8601": "2022-04-23T19:47:46.642461Z", "url": "https://files.pythonhosted.org/packages/36/a5/22bc0a220168bad7e329f3d3a44896cc015334f870efb2cd71c7f0fc3ab5/glcontext-2.3.6-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c796ee633db61a941ee127b7eeb7a02", "sha256": "22699f81696756ec98fcf8b9a2ebd1dd73a42f81501d7748855e66b63d963c36" }, "downloads": -1, "filename": "glcontext-2.3.6-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "9c796ee633db61a941ee127b7eeb7a02", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 12608, "upload_time": "2022-04-23T19:47:47", "upload_time_iso_8601": "2022-04-23T19:47:47.527562Z", "url": "https://files.pythonhosted.org/packages/30/2c/57eeed72aeac969108b6de2f606d7aae574d2a830d86fd3da005c5e649f2/glcontext-2.3.6-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4957fc8cf792664624cdf31b751f61df", "sha256": "970a2769c6aed12e29bd1edbb30a04fa17871a6cf7bb95190e65302c693ce928" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4957fc8cf792664624cdf31b751f61df", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 8992, "upload_time": "2022-04-23T19:47:48", "upload_time_iso_8601": "2022-04-23T19:47:48.372955Z", "url": "https://files.pythonhosted.org/packages/f8/85/927edd35c337aacf52a8b0b7fbbbdd525135015b28bb923f71e83bc9e7c9/glcontext-2.3.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5c89aeb6a14369cef231df9113d6fa8", "sha256": "3a30c62c6168b42a32083dc8c967e421f8c346e4452a00809c056ce6c6bea0c4" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e5c89aeb6a14369cef231df9113d6fa8", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 18446, "upload_time": "2022-04-23T19:47:49", "upload_time_iso_8601": "2022-04-23T19:47:49.259113Z", "url": "https://files.pythonhosted.org/packages/51/bc/53a69a70657de63a14e7d89da62869cfd6dcb2d93e882d277f5836d79c7e/glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a412ce3730fce23bcc354e77f697d6b4", "sha256": "e531662f37d171c08fcdc4ca442468266bef77da14c72c183bcaa2cd80111386" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "a412ce3730fce23bcc354e77f697d6b4", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 17451, "upload_time": "2022-04-23T19:47:50", "upload_time_iso_8601": "2022-04-23T19:47:50.280916Z", "url": "https://files.pythonhosted.org/packages/c9/86/eb09664d0287d942feee2d461d9db09ea8014742a465e86b6038b1151c67/glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd53a50ddb4db480506bbed4737cf5ac", "sha256": "98d5dfc4629ed85e51176fc1d8563944e0439b77bc6fe2365cb42207838ea32f" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "dd53a50ddb4db480506bbed4737cf5ac", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 16853, "upload_time": "2022-04-23T19:47:51", "upload_time_iso_8601": "2022-04-23T19:47:51.502375Z", "url": "https://files.pythonhosted.org/packages/1d/90/6805ed2c2165063b839649b6f059cf96ac470f211fc2878f8c63993444f4/glcontext-2.3.6-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1d1de9c5ee6479b45dc2fef9795199f", "sha256": "41a69166c20b1a67b2652a5074a78078df7e19f36c65d92f6552535a1182d4cc" }, "downloads": -1, "filename": "glcontext-2.3.6-pp37-pypy37_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "b1d1de9c5ee6479b45dc2fef9795199f", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 12625, "upload_time": "2022-04-23T19:47:52", "upload_time_iso_8601": "2022-04-23T19:47:52.346826Z", "url": "https://files.pythonhosted.org/packages/a7/94/959a903ec8f91a78fa916713405759a4a5637b95e4428b69eba672428092/glcontext-2.3.6-pp37-pypy37_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8cf95809a6780902994600a8c3daa4f7", "sha256": "a8b118f0361e61e21279e414a1fa759288421ac311e44ce08e718de38f788183" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8cf95809a6780902994600a8c3daa4f7", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 8993, "upload_time": "2022-04-23T19:47:53", "upload_time_iso_8601": "2022-04-23T19:47:53.296665Z", "url": "https://files.pythonhosted.org/packages/ca/0f/9d1a0ef08e0730a4e1ddfa57762dcd07bc77c7c179ba6c60148d14d3721d/glcontext-2.3.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e80251dd953cb7e73c294573501d00dd", "sha256": "a4f862f2b4426f1786743448c899d225e8383538602a04c3ffc9622956d08140" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e80251dd953cb7e73c294573501d00dd", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 18485, "upload_time": "2022-04-23T19:47:54", "upload_time_iso_8601": "2022-04-23T19:47:54.176102Z", "url": "https://files.pythonhosted.org/packages/2f/70/4c1f24b148f6708e357e2edc68cc1e4d528b2b966fe285ec1b9860af70f6/glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22de717a04aeac2beb0e3c793b19591d", "sha256": "e59f5afe61c5bc18dc7766c36a0ac912794a53605b30469c6c6be20483f4b42f" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "22de717a04aeac2beb0e3c793b19591d", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 17448, "upload_time": "2022-04-23T19:47:55", "upload_time_iso_8601": "2022-04-23T19:47:55.099712Z", "url": "https://files.pythonhosted.org/packages/ac/10/ad3cf8f4e260d00a34990ad5ce019b205e50ee361a865e643d3977d0a634/glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50bc340430aa96fbe75222d8ac21e183", "sha256": "4d399cba251b301d94eb7a41017ba68e001673f642606229fba7a0d4183b3273" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "50bc340430aa96fbe75222d8ac21e183", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 16853, "upload_time": "2022-04-23T19:47:56", "upload_time_iso_8601": "2022-04-23T19:47:56.415130Z", "url": "https://files.pythonhosted.org/packages/24/62/97b07a2ab9222f113ffe64be24944f41d9071f4595d752d9204e7f6ba2b1/glcontext-2.3.6-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fae903ed5db0e02a59f425ce8232db58", "sha256": "bd50f826bb70df2415c7166d5e0aebdda3e47df8af385f562d8d5ba6018f87e9" }, "downloads": -1, "filename": "glcontext-2.3.6-pp38-pypy38_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "fae903ed5db0e02a59f425ce8232db58", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 12627, "upload_time": "2022-04-23T19:47:57", "upload_time_iso_8601": "2022-04-23T19:47:57.393381Z", "url": "https://files.pythonhosted.org/packages/68/fa/d1ae9e3b0b40e8957f58afa3210f4a6efaa8c1000ee778f23ba5f4da6980/glcontext-2.3.6-pp38-pypy38_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "547702d7a59a040f9bd649843f65907e", "sha256": "cdb540eec587deddca037fb4dfdaa0921dcab0fd4d7ea5f1079e44fcb1b81e67" }, "downloads": -1, "filename": "glcontext-2.3.6.tar.gz", "has_sig": false, "md5_digest": "547702d7a59a040f9bd649843f65907e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15014, "upload_time": "2022-04-23T19:47:58", "upload_time_iso_8601": "2022-04-23T19:47:58.322120Z", "url": "https://files.pythonhosted.org/packages/a5/aa/396b17e4a7ee92080e2fce3e1b362bcaa31612c809f5a4c28a76ce186391/glcontext-2.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }