{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "\n[![PyPi Latest Release](https://img.shields.io/pypi/v/pgl.svg)](https://pypi.org/project/pgl/)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](./LICENSE)\n\n[DOC](https://pgl.readthedocs.io/en/latest/) | [Quick Start](https://pgl.readthedocs.io/en/latest/quick_start/instruction.html) | [\u4e2d\u6587](./README.zh.md)\n\n## Breaking News !!\n\nPGL v2.2 2021.12.20\n\n- **Graph4Rec**: We released a universal and large-scale toolkit with graph neural networks for recommender systems. Details can be found [here](./apps/Graph4Rec).\n\n- **Graph4KG**: We released a flexible framework named Graph4KG to learn embeddings of entities and relations in KGs, which supports training on massive KGs. Details can be found [here](./apps/Graph4KG).\n\n- **GNNAutoScale**: PGL now supports GNNAutoScale framework, which can scale arbitrary message-passing GNNs to large graphs. Details can be found [here](./apps/GNNAutoScale).\n\n\n\n🔥 🔥 🔥 **OGB-LSC KDD CUP 2021 winners announced!!** (2021.06.17)\n\n\nSuper excited to announce our PGL team won **TWO FIRST** place and **ONE SECOND** place in a total of three track in OGB-LSC KDD CUP 2021.\nLeaderboards can be found [here](https://ogb.stanford.edu/kddcup2021/results/).\n\n- **First place in MAG240M-LSC track**: Code and Technical Report can be found [here](./examples/kddcup2021/MAG240M/r_unimp).\n\n- **First place in WikiKG90M-LSC track**: Code and Technical Report can be found [here](./examples/kddcup2021/WikiKG90M).\n\n- **Second place in PCQM4M-LSC track**: Code and Technical Report can be found [here](./examples/kddcup2021/PCQM4M).\n\n**Two amazing paper using PGL are accepted:** (2021.06.17)\n\n- Masked Label Prediction: Unified Message Passing Model for Semi-Supervised Classification, to appear in **IJCAI2021**.\n- HGAMN: Heterogeneous Graph Attention Matching Network for Multilingual POI Retrieval at Baidu Maps, to appear in **KDD2021**.\n\n**PGL Dstributed Graph Engine API released!!**\n\n- Our Dstributed Graph Engine API has been released and we developed a [tutorial](./tutorials/working_with_distributed_graph_engine.ipynb) to show how to launch a graph engine and a [demo](./examples/metapath2vec) for training model using graph engine.\n\n\n------\n\nPaddle Graph Learning (PGL) is an efficient and flexible graph learning framework based on [PaddlePaddle](https://github.com/PaddlePaddle/Paddle).\n\n\n\nThe newly released PGL supports heterogeneous graph learning on both walk based paradigm and message-passing based paradigm by providing MetaPath sampling and Message Passing mechanism on heterogeneous graph. Furthermor, The newly released PGL also support distributed graph storage and some distributed training algorithms, such as distributed deep walk and distributed graphsage. Combined with the PaddlePaddle deep learning framework, we are able to support both graph representation learning models and graph neural networks, and thus our framework has a wide range of graph-based applications.\n\n\nOne of the most important benefits of graph neural networks compared to other models is the ability to use node-to-node connectivity information, but coding the communication between nodes is very cumbersome. At PGL we adopt **Message Passing Paradigm** similar to [DGL](https://github.com/dmlc/dgl) to help to build a customize graph neural network easily. Users only need to write ```send``` and ```recv``` functions to easily implement a simple GCN. As shown in the following figure, for the first step the send function is defined on the edges of the graph, and the user can customize the send function ![](http://latex.codecogs.com/gif.latex?\\\\phi^e) to send the message from the source to the target node. For the second step, the recv function ![](http://latex.codecogs.com/gif.latex?\\\\phi^v) is responsible for aggregating ![](http://latex.codecogs.com/gif.latex?\\\\oplus) messages together from different sources.\n\n\n\nTo write a sum aggregator, users only need to write the following codes.\n\n```python\n\n import pgl\n import paddle\n import numpy as np\n\n \n num_nodes = 5\n edges = [(0, 1), (1, 2), (3, 4)]\n feature = np.random.randn(5, 100).astype(np.float32)\n\n g = pgl.Graph(num_nodes=num_nodes,\n edges=edges,\n node_feat={\n \"h\": feature\n })\n g.tensor()\n\n def send_func(src_feat, dst_feat, edge_feat):\n return src_feat\n\n def recv_func(msg):\n return msg.reduce_sum(msg[\"h\"]) \n \n msg = g.send(send_func, src_feat=g.node_feat)\n\n ret = g.recv(recv_func, msg)\n\n```\n\n\n## Highlight: Flexibility - Natively Support Heterogeneous Graph Learning\n\nGraph can conveniently represent the relation between things in the real world, but the categories of things and the relation between things are various. Therefore, in the heterogeneous graph, we need to distinguish the node types and edge types in the graph network. PGL models heterogeneous graphs that contain multiple node types and multiple edge types, and can describe complex connections between different types.\n\n### Support meta path walk sampling on heterogeneous graph\n\nThe left side of the figure above describes a shopping social network. The nodes above have two categories of users and goods, and the relations between users and users, users and goods, and goods and goods. The right of the above figure is a simple sampling process of MetaPath. When you input any MetaPath as UPU (user-product-user), you will find the following results\nThen on this basis, and introducing word2vec and other methods to support learning metapath2vec and other algorithms of heterogeneous graph representation.\n\n### Support Message Passing mechanism on heterogeneous graph\n\nBecause of the different node types on the heterogeneous graph, the message delivery is also different. As shown on the left, it has five neighbors, belonging to two different node types. As shown on the right of the figure above, nodes belonging to different types need to be aggregated separately during message delivery, and then merged into the final message to update the target node. On this basis, PGL supports heterogeneous graph algorithms based on message passing, such as GATNE and other algorithms.\n\n\n## Large-Scale: Support distributed graph storage and distributed training algorithms\n\nIn most cases of large-scale graph learning, we need distributed graph storage and distributed training support. As shown in the following figure, PGL provided a general solution of large-scale training, we adopted [PaddleFleet](https://github.com/PaddlePaddle/Fleet) as our distributed parameter servers, which supports large scale distributed embeddings and a lightweighted distributed storage engine so it can easily set up a large scale distributed training algorithm with MPI clusters.\n\n\n\n## Model Zoo\n\nThe following graph learning models have been implemented in the framework. You can find more [examples](./examples) and the details [here](https://pgl.readthedocs.io/en/latest/introduction.html#highlight-tons-of-models).\n\n|Model | feature |\n|---|---|\n| [ERNIESage](./legacy/examples/erniesage/) | ERNIE SAmple aggreGatE for Text and Graph |\n| [GCN](./examples/gcn/) | Graph Convolutional Neural Networks |\n| [GAT](./examples/gat/) | Graph Attention Network |\n| [GraphSage](./examples/graphsage/) |Large-scale graph convolution network based on neighborhood sampling|\n| [unSup-GraphSage](./legacy/examples/unsup_graphsage/) | Unsupervised GraphSAGE |\n| [LINE](./legacy/examples/line/) | Representation learning based on first-order and second-order neighbors |\n| [DeepWalk](./examples/deepwalk/) | Representation learning by DFS random walk |\n| [MetaPath2Vec](./legacy/examples/metapath2vec/) | Representation learning based on metapath |\n| [Node2Vec](./legacy/examples/node2vec/) | The representation learning Combined with DFS and BFS |\n| [Struct2Vec](./legacy/examples/strucvec/) | Representation learning based on structural similarity |\n| [SGC](./legacy/examples/sgc/) | Simplified graph convolution neural network |\n| [GES](./legacy/examples/ges/) | The graph represents learning method with node features |\n| [DGI](./legacy/examples/dgi/) | Unsupervised representation learning based on graph convolution network |\n| [GATNE](./legacy/examples/GATNE) | Representation Learning of Heterogeneous Graph based on MessagePassing |\n\nThe above models consists of three parts, namely, graph representation learning, graph neural network and heterogeneous graph learning, which are also divided into graph representation learning and graph neural network.\n\n## System requirements\n\nPGL requires:\n\n* paddlepaddle >= 2.2.0 \n* cython\n\n\nPGL only supports Python 3\n\n\n## Installation\n\nYou can simply install it via pip.\n\n```sh\npip install pgl\n```\n\n## The Team\n\nPGL is developed and maintained by NLP and Paddle Teams at Baidu\n\nE-mail: nlp-gnn[at]baidu.com\n\n## License\n\nPGL uses Apache License 2.0.\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/PaddlePaddle/PGL", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "pgl", "package_url": "https://pypi.org/project/pgl/", "platform": null, "project_url": "https://pypi.org/project/pgl/", "project_urls": { "Homepage": "https://github.com/PaddlePaddle/PGL" }, "release_url": "https://pypi.org/project/pgl/2.2.3.post0/", "requires_dist": [ "numpy (<1.20.0,>=1.16.4)", "cython (>=0.25.2)" ], "requires_python": "", "summary": "Paddle Graph Learning", "version": "2.2.3.post0", "yanked": false, "yanked_reason": null }, "last_serial": 13576638, "releases": { "0.1.0b0": [ { "comment_text": "", "digests": { "md5": "0c451ac4a2b1dda1177a882f8a796ff3", "sha256": "292532d4debd6385455a7eea61656419b7dc1bf19ce948c7d857fdfed5cb8990" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "0c451ac4a2b1dda1177a882f8a796ff3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7947647, "upload_time": "2019-06-23T02:39:58", "upload_time_iso_8601": "2019-06-23T02:39:58.760736Z", "url": "https://files.pythonhosted.org/packages/a7/bf/f7fdcf7faf94c2cd2a0512242befe1094dcb655585c47dc12d450976ec64/pgl-0.1.0b0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53d8c82afeaa0433eb063cb45d8a2255", "sha256": "89885ebd24e67ab55fdc69f8148d6e30bac1e952b9325a285ad180798d296cb6" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "53d8c82afeaa0433eb063cb45d8a2255", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8073616, "upload_time": "2019-06-20T13:16:17", "upload_time_iso_8601": "2019-06-20T13:16:17.263907Z", "url": "https://files.pythonhosted.org/packages/b0/77/d4455d2198751a9c0179ee2db8182a6f34418cf0148ef65d76624633875d/pgl-0.1.0b0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44f8c047b139db0c510e19205276fe68", "sha256": "13cfa63af8fe6c7f105b233a7f90dce656eee39d6f53679006fd6054a752dbdb" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "44f8c047b139db0c510e19205276fe68", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8073619, "upload_time": "2019-06-20T13:16:23", "upload_time_iso_8601": "2019-06-20T13:16:23.706082Z", "url": "https://files.pythonhosted.org/packages/7f/7f/ecb5f0ed3b2900c6c6843240e36ed7fb947228c5b0cf293f846c72288770/pgl-0.1.0b0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "839ba31729a7cb9ff520fb48ea77efa5", "sha256": "0f67d3b84feb14a27375cc3b7cfdcf2b472175b5dad3887d4dc6ca6723e98a5a" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "839ba31729a7cb9ff520fb48ea77efa5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 8051517, "upload_time": "2019-06-20T13:16:29", "upload_time_iso_8601": "2019-06-20T13:16:29.603774Z", "url": "https://files.pythonhosted.org/packages/5f/e0/c7f9153da50f426ef3f04beb03ad51c40882d378924e62ca7f66ac1dd791/pgl-0.1.0b0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "841e76663f30527c59b85c8dabfba3e3", "sha256": "baeccdd615b00d74e89290d3b7b5f5ac1fee8dd44d7e4fd18a468a3e37d8bae4" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "841e76663f30527c59b85c8dabfba3e3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8053191, "upload_time": "2019-06-20T13:16:34", "upload_time_iso_8601": "2019-06-20T13:16:34.021349Z", "url": "https://files.pythonhosted.org/packages/48/05/2c35a9767f38e0e0743686ba412bbff06d5a480b01f5c1feba84ef84b748/pgl-0.1.0b0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "641bf37815b521ce175fe3d7be2a8d33", "sha256": "f3011750b2a57c60a4e2ff65a908a93ad02abe3e267e6aecc410764a01a971b2" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "641bf37815b521ce175fe3d7be2a8d33", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7942377, "upload_time": "2019-06-23T02:41:35", "upload_time_iso_8601": "2019-06-23T02:41:35.074816Z", "url": "https://files.pythonhosted.org/packages/80/38/9fcfc89942bef0a94057e8d76e0ba008836f6062a430c836340e9e98fa92/pgl-0.1.0b0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a732307bf3ca3d1f2310ebd573db39f4", "sha256": "7d2d69f6b8f50c16d5cf2df9582bbb25dc6706a7f45a79778adbeb052fb39d6e" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a732307bf3ca3d1f2310ebd573db39f4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8056160, "upload_time": "2019-06-20T13:16:38", "upload_time_iso_8601": "2019-06-20T13:16:38.706112Z", "url": "https://files.pythonhosted.org/packages/ee/24/ea2bfe53745f1cb0a327cc1d49067beb0f1ac4509ceee424be2ae58313b3/pgl-0.1.0b0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64dd6b8791312b94026fc79820da9be4", "sha256": "d4b9c26cc56c431aafabd4bbb32cfcbcd57398987e72ebabca78d9a46883162e" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp37-cp37m-macosx_10_9_x86_64.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "64dd6b8791312b94026fc79820da9be4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7902220, "upload_time": "2019-06-23T02:41:41", "upload_time_iso_8601": "2019-06-23T02:41:41.211499Z", "url": "https://files.pythonhosted.org/packages/82/69/8e9f9c60518009a36ca1462f6395a1262ac2c57aab07d462418f849c15eb/pgl-0.1.0b0-cp37-cp37m-macosx_10_9_x86_64.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "037e7c8f7e9c11940d590a62a2123335", "sha256": "e90df0b787a77f007688a8b317c73f5bc900f54e01556f0b5091f18c2d258530" }, "downloads": -1, "filename": "pgl-0.1.0b0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "037e7c8f7e9c11940d590a62a2123335", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8057548, "upload_time": "2019-06-20T13:16:43", "upload_time_iso_8601": "2019-06-20T13:16:43.425249Z", "url": "https://files.pythonhosted.org/packages/4a/ae/65727807a84ea20456e5fc3c82c166f1de73573ea1ba583d767992fbe124/pgl-0.1.0b0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "e826a5ff7777597aba436f37dc899619", "sha256": "eaae598b7d7ac48c1ac5cd2e5e0fb86f594e78b1e8d2ab1e713473855dcbaa57" }, "downloads": -1, "filename": "pgl-1.0.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "e826a5ff7777597aba436f37dc899619", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7954500, "upload_time": "2019-10-10T08:57:10", "upload_time_iso_8601": "2019-10-10T08:57:10.502689Z", "url": "https://files.pythonhosted.org/packages/04/8f/c5bcce3be70033be99cc5581c952cbd6e8e1757b64be6ccd5fec28cf1dfa/pgl-1.0.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f76a64832b081dfef2563d950b272a6d", "sha256": "d96a0213c9417921903be7364404467065c4ac5d8574f9da224574f6838c9024" }, "downloads": -1, "filename": "pgl-1.0.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f76a64832b081dfef2563d950b272a6d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7885217, "upload_time": "2019-10-10T08:57:20", "upload_time_iso_8601": "2019-10-10T08:57:20.370783Z", "url": "https://files.pythonhosted.org/packages/d8/b2/4bf7f8a8ed8a199cf867c71d71b36aae7086186c56335698399d51ebbb82/pgl-1.0.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7548a1f1ec8d63906c590cfa0902b0e1", "sha256": "1e4649aa8fd40c8d59628769f064672864151ce1030cf938bcd45a08baf91d96" }, "downloads": -1, "filename": "pgl-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7548a1f1ec8d63906c590cfa0902b0e1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7885222, "upload_time": "2019-10-10T08:57:28", "upload_time_iso_8601": "2019-10-10T08:57:28.034183Z", "url": "https://files.pythonhosted.org/packages/3a/a1/47eb75684c4d50ea0c266b01474f2c197172939761fcdf4439c2665770bb/pgl-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6ffcd1bef036477321ee17c632b4fcd", "sha256": "33e0feeaadd852e6d03c1ffbcf512dcd73974bc5734875cbed09b6d8592a265e" }, "downloads": -1, "filename": "pgl-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f6ffcd1bef036477321ee17c632b4fcd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7878367, "upload_time": "2019-10-10T08:57:42", "upload_time_iso_8601": "2019-10-10T08:57:42.246546Z", "url": "https://files.pythonhosted.org/packages/ca/9e/d4a7382eccad202a493d25ca67867f3a6db0a34db25d6eed5d5cf11b8a59/pgl-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a76891672f5efeb6e8f09baf7c0af9e", "sha256": "29dce366fec05711a328bfe76b5a31e7f875146b922b59696404230982ab3289" }, "downloads": -1, "filename": "pgl-1.0.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "4a76891672f5efeb6e8f09baf7c0af9e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7952424, "upload_time": "2019-10-10T08:57:53", "upload_time_iso_8601": "2019-10-10T08:57:53.634779Z", "url": "https://files.pythonhosted.org/packages/52/86/621015baa32e9dfe2ff1c5b2cc810c4e12f073fd26b29a97edf07560507d/pgl-1.0.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53ebaedb5cef4534daabec81139dc310", "sha256": "1daa1a78e1ab5dfc3fc995eefd88f0d007c3ef47fe704e6cbcf63d489ee16cf0" }, "downloads": -1, "filename": "pgl-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "53ebaedb5cef4534daabec81139dc310", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7880211, "upload_time": "2019-10-10T08:58:01", "upload_time_iso_8601": "2019-10-10T08:58:01.975165Z", "url": "https://files.pythonhosted.org/packages/19/7f/b602d6f2af02983ff0bbaa24af5af088f6640487684fa933eaf89a743717/pgl-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "039c40ea0255d71a228f7ca02d7d31fd", "sha256": "0b0af74ed64df3109e1da74f92b88399904a3bf8923ea343d7c8e3003df29b93" }, "downloads": -1, "filename": "pgl-1.0.0-cp37-cp37m-macosx_10_9_x86_64.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "039c40ea0255d71a228f7ca02d7d31fd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7885685, "upload_time": "2019-10-10T08:58:08", "upload_time_iso_8601": "2019-10-10T08:58:08.298783Z", "url": "https://files.pythonhosted.org/packages/0b/e6/185f23980abc17fec1a3291694beed930a874b68a5ebdcefc1f54642d235/pgl-1.0.0-cp37-cp37m-macosx_10_9_x86_64.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5a97fdc71948cccc5bddece28cfa19d4", "sha256": "cd1cb81cb11eb59e84ebdbcd83c1dc2a45ba8d3e558cb3474ef0a632e5945f9d" }, "downloads": -1, "filename": "pgl-1.0.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5a97fdc71948cccc5bddece28cfa19d4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7955084, "upload_time": "2019-10-30T08:03:29", "upload_time_iso_8601": "2019-10-30T08:03:29.526996Z", "url": "https://files.pythonhosted.org/packages/64/25/bc26ec3b1440d89cd1f91f26b21fa60f3cffa3d981e2df82e53dde5f3785/pgl-1.0.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08efab45bf87e24ae482904fb961954a", "sha256": "56975e3c849189c88b8ae7b21843f822b5e718ee44a834fa56076d79b81f324d" }, "downloads": -1, "filename": "pgl-1.0.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "08efab45bf87e24ae482904fb961954a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7886096, "upload_time": "2019-10-30T08:04:49", "upload_time_iso_8601": "2019-10-30T08:04:49.356287Z", "url": "https://files.pythonhosted.org/packages/1e/49/ae7de95f67036731569f20789a6999d03d7191ab76d71d67ec7f1e0b8be0/pgl-1.0.1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7191a37f86e90111d311dac957e9ee6e", "sha256": "75647a4b456afa8f8adb240667aef28482c44f691078a8f09a3410e38f648c10" }, "downloads": -1, "filename": "pgl-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7191a37f86e90111d311dac957e9ee6e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7886096, "upload_time": "2019-10-30T08:06:45", "upload_time_iso_8601": "2019-10-30T08:06:45.876520Z", "url": "https://files.pythonhosted.org/packages/7c/f1/03aed685b916568edd6e9ffbd0fddbfc78955151c7086159b3b787f49223/pgl-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e53f8998b57a2b5e9f6aa0a108d45729", "sha256": "b6a05b4cc90c97c301849a7e946011250ec38da8db42575a475522c290902f98" }, "downloads": -1, "filename": "pgl-1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e53f8998b57a2b5e9f6aa0a108d45729", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7878951, "upload_time": "2019-10-30T08:26:10", "upload_time_iso_8601": "2019-10-30T08:26:10.496874Z", "url": "https://files.pythonhosted.org/packages/a9/b3/c9185dd1dc2cc347979321c530392e14589d1737a37bc92d27325ec3b794/pgl-1.0.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b3685e02450e939ee18a574ef47a29d", "sha256": "02ff77d6daa9ab0fcb3716e41ae56ff7bbc534fed83b9509fd42ff2f82ca92ce" }, "downloads": -1, "filename": "pgl-1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6b3685e02450e939ee18a574ef47a29d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7880797, "upload_time": "2019-10-30T08:27:30", "upload_time_iso_8601": "2019-10-30T08:27:30.667806Z", "url": "https://files.pythonhosted.org/packages/b3/54/7f1ecc167bc5e6090da69fed7292af53d142fb95948f0fd3cec8a7761947/pgl-1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8577a89a7b8414873083cb2f663cf52", "sha256": "e90540cd8cabc5a04cc6ab136072ff7128bcc01a863c7e352ef258297d7085e4" }, "downloads": -1, "filename": "pgl-1.0.1-cp37-cp37m-macosx_10_9_x86_64.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a8577a89a7b8414873083cb2f663cf52", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7886269, "upload_time": "2019-10-30T08:30:08", "upload_time_iso_8601": "2019-10-30T08:30:08.604790Z", "url": "https://files.pythonhosted.org/packages/11/11/afb7c69171afc51ad1e8de374f764f64639fe1a1c77e99ab491f197f6ca7/pgl-1.0.1-cp37-cp37m-macosx_10_9_x86_64.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b6cb7492cedaa4646972e7bf932fc56", "sha256": "36449fc53a3a0adcc37419d4eb7a16c836faaf498f83ca2f4a0eeef0ecbe21e6" }, "downloads": -1, "filename": "pgl-1.0.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3b6cb7492cedaa4646972e7bf932fc56", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7880760, "upload_time": "2019-10-30T08:30:33", "upload_time_iso_8601": "2019-10-30T08:30:33.312354Z", "url": "https://files.pythonhosted.org/packages/bf/3a/3074c6a43b6c43bf57b1703386dabd006c42c8c1a44596977696709465a0/pgl-1.0.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "a5fa6756404c35158b9278e194078c2b", "sha256": "8747618635d7c812e29055b5c7bb17dbd79af72c05bfe41411ad224118851fab" }, "downloads": -1, "filename": "pgl-1.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a5fa6756404c35158b9278e194078c2b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7909701, "upload_time": "2020-04-29T16:34:50", "upload_time_iso_8601": "2020-04-29T16:34:50.192207Z", "url": "https://files.pythonhosted.org/packages/a7/a0/8667968713e33e92da208b6d376be82233a292753b3a0de5a441d7c6f7fc/pgl-1.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a3047cda10a9ca9755a0d5ea6a5e413", "sha256": "4d455adb85d387d3de9b20c070bdd23cbfab31fcf1186646786e44d9c474e76b" }, "downloads": -1, "filename": "pgl-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0a3047cda10a9ca9755a0d5ea6a5e413", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7911549, "upload_time": "2020-04-29T16:34:56", "upload_time_iso_8601": "2020-04-29T16:34:56.153160Z", "url": "https://files.pythonhosted.org/packages/7d/de/6826bb872555404f3c6efef92f121a8d667704fde913e1fdc14839897c2b/pgl-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43e6b03b90c2a949fda821b7497ef282", "sha256": "2d9fe46735a8f88ba151dfeefb27a7248d4a5419f3db2fd72ea94349154c2742" }, "downloads": -1, "filename": "pgl-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "43e6b03b90c2a949fda821b7497ef282", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7904825, "upload_time": "2020-04-29T16:35:06", "upload_time_iso_8601": "2020-04-29T16:35:06.481302Z", "url": "https://files.pythonhosted.org/packages/b2/7a/30b46df91114409350dc9bd95c016a24f574100059f2458f411d9603a416/pgl-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d09f0e7b13348d91c0462fef49b3973", "sha256": "923fd2a050965162b8c76887c9fd93b75430dd48a1c2cf6804262d7e6651aaba" }, "downloads": -1, "filename": "pgl-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3d09f0e7b13348d91c0462fef49b3973", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7909287, "upload_time": "2020-04-29T16:38:07", "upload_time_iso_8601": "2020-04-29T16:38:07.352204Z", "url": "https://files.pythonhosted.org/packages/4a/a1/f5a711ce31ca874d6503af16f76483ce649f0e52b6a0951a3f49a882668e/pgl-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d33eb18f8d04f5f65f1ca27ee1a93622", "sha256": "e5eb286411daca67da716574032c2973b7334c0bc8fe16fd59f7b3a5856fd9d7" }, "downloads": -1, "filename": "pgl-1.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d33eb18f8d04f5f65f1ca27ee1a93622", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7907260, "upload_time": "2020-04-29T16:35:15", "upload_time_iso_8601": "2020-04-29T16:35:15.727244Z", "url": "https://files.pythonhosted.org/packages/f4/3f/0ecd4e0f0f764a45e6dd5465ef9c1e1351c74c36e3f092926db736492f48/pgl-1.1.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1090cf8c0a0e5adf5c1694e09a6182cb", "sha256": "78b0755be4f758ed9305f093f88f8ab2640b2865276feeb41e4df1b5de5588e4" }, "downloads": -1, "filename": "pgl-1.1.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "1090cf8c0a0e5adf5c1694e09a6182cb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7894907, "upload_time": "2020-05-12T05:06:13", "upload_time_iso_8601": "2020-05-12T05:06:13.635600Z", "url": "https://files.pythonhosted.org/packages/2b/68/632b92462e9514bcc5bc2e3ed12ccfe78603e893dd10002bc390d807d654/pgl-1.1.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90b93e9316f3fb3ac54ce6c912e95fe8", "sha256": "9a6390c1d03ed38f3f67f37ed17456d4e141723e0e0766fa782543bd395a6422" }, "downloads": -1, "filename": "pgl-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "90b93e9316f3fb3ac54ce6c912e95fe8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7903715, "upload_time": "2020-05-12T05:06:18", "upload_time_iso_8601": "2020-05-12T05:06:18.933911Z", "url": "https://files.pythonhosted.org/packages/75/75/5a5b2d69d97db234a2267b46bb31c70a2ace50867c0400e68ebe9b610e1e/pgl-1.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bea802aeec8a05e346b5daf127bb193a", "sha256": "8b596a9a62a606e7ab4e3b63e4e7881b1c4f7bea335a7fa1eb034cef466c7dd8" }, "downloads": -1, "filename": "pgl-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bea802aeec8a05e346b5daf127bb193a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7909451, "upload_time": "2020-04-29T16:39:52", "upload_time_iso_8601": "2020-04-29T16:39:52.494047Z", "url": "https://files.pythonhosted.org/packages/b0/0f/46043ff1b67c6a80ace1a90ec107ad5e41954a383b8733f7820b46373c82/pgl-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "228b63532cfce58850c99b975c1be961", "sha256": "84765be7d333f13082c8f0df94d2433960ba05ef0318f722539ce6e4215c6cd4" }, "downloads": -1, "filename": "pgl-1.1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "228b63532cfce58850c99b975c1be961", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7907328, "upload_time": "2020-04-29T16:35:19", "upload_time_iso_8601": "2020-04-29T16:35:19.860378Z", "url": "https://files.pythonhosted.org/packages/3f/d9/3a9db4a342545b1270cedf0ef68685108b1cf8cd2143a6aa5ee13ec2febf/pgl-1.1.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64a29e2bbbbc4334f0e313ddf041134a", "sha256": "aefda942f2095027d849f01cdbf905386b2f87759a09cc8c8ffa2a7ae2df8c64" }, "downloads": -1, "filename": "pgl-1.1.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "64a29e2bbbbc4334f0e313ddf041134a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7894995, "upload_time": "2020-05-12T05:06:24", "upload_time_iso_8601": "2020-05-12T05:06:24.624436Z", "url": "https://files.pythonhosted.org/packages/0a/0f/18b91f508cc56b62be982eafcc6bcb1e7a17852d1d8ce43456ca17ab69c7/pgl-1.1.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c47c5463cf219b0cb876e8aa15b530b0", "sha256": "8e80252136f9ca6532074f96f57f63cf29b886988efac1d5cbaaadc20135f804" }, "downloads": -1, "filename": "pgl-1.1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c47c5463cf219b0cb876e8aa15b530b0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7904200, "upload_time": "2020-05-12T05:06:29", "upload_time_iso_8601": "2020-05-12T05:06:29.184066Z", "url": "https://files.pythonhosted.org/packages/0a/f8/5965e00bfcbe61f7b1c751d94ca5e53f4bc4c44250f492af10fe4d878dab/pgl-1.1.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce4e1677c90bad9a45aeacf8773af0f3", "sha256": "12269805e0b77709519311ad29e28817591329aa2e110d3b772562a82e154dc9" }, "downloads": -1, "filename": "pgl-1.1.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "ce4e1677c90bad9a45aeacf8773af0f3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7896535, "upload_time": "2020-05-12T05:06:33", "upload_time_iso_8601": "2020-05-12T05:06:33.523875Z", "url": "https://files.pythonhosted.org/packages/dc/ae/1089122ef1214ce7607001fb91fe72468e4f668ef3dddc9c0d2a8b3ac7fb/pgl-1.1.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "940b6f805d8ab4a19be1a0a5771bd223", "sha256": "be62aa2335ddeb901953b3a054be6a00f343cc670e8e631a42ab1147f381053f" }, "downloads": -1, "filename": "pgl-1.1.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "940b6f805d8ab4a19be1a0a5771bd223", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7905230, "upload_time": "2020-05-12T05:06:37", "upload_time_iso_8601": "2020-05-12T05:06:37.952187Z", "url": "https://files.pythonhosted.org/packages/a2/97/b0653190913b10a532a103eb22e9fe140831a8b1cb5c48ae87b62a8a067b/pgl-1.1.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "db51b6cfbabd785c4e60ae0c6ca7ceaf", "sha256": "10139ee08368c8dd6fc7d3a2326eb5297049ee848b816277e66e15ff51a2f70e" }, "downloads": -1, "filename": "pgl-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "db51b6cfbabd785c4e60ae0c6ca7ceaf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7922366, "upload_time": "2020-09-25T05:55:19", "upload_time_iso_8601": "2020-09-25T05:55:19.535204Z", "url": "https://files.pythonhosted.org/packages/72/d3/fa8eb56edee8cf39ecf30b88b97b5ac61b4aa759d0ea8ce1c8324edf35de/pgl-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4533a43577dc927d455139832ca9e4c0", "sha256": "ceb99fcc00618eded3222d5896dd4acc2402f500e2239a4203184384f389c97f" }, "downloads": -1, "filename": "pgl-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4533a43577dc927d455139832ca9e4c0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7919186, "upload_time": "2020-09-25T05:55:24", "upload_time_iso_8601": "2020-09-25T05:55:24.472480Z", "url": "https://files.pythonhosted.org/packages/f3/62/c0076d2fbdf823ceba407f1db5f93e6692f728ac39a51a7e6291b31b2177/pgl-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76bbceb2b26ec745735ef85553d2838b", "sha256": "19059c1b51568dcbdc28ce3c35b6efab9d54fb718d6942c577abfd2e7ffb5fd6" }, "downloads": -1, "filename": "pgl-1.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "76bbceb2b26ec745735ef85553d2838b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7914074, "upload_time": "2020-09-25T05:55:29", "upload_time_iso_8601": "2020-09-25T05:55:29.193554Z", "url": "https://files.pythonhosted.org/packages/3f/f2/b9bf224107ac80066de91a3005cab6868f14b294843c36dd7384d14cf360/pgl-1.2.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1387ab62a80ea49551ca9eafce5a2c9", "sha256": "2d9b7d750ff87edff5b020ed8a6ed05a96601f045467d4cc38c0fbd19bc2b2a7" }, "downloads": -1, "filename": "pgl-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f1387ab62a80ea49551ca9eafce5a2c9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7921429, "upload_time": "2020-09-25T05:55:33", "upload_time_iso_8601": "2020-09-25T05:55:33.886320Z", "url": "https://files.pythonhosted.org/packages/1a/d9/be48cd2e98e2c20537a2e413194cf7502f79d90b53d1dbb06ddfb4060ba2/pgl-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e133baa967e409b8edf6b67dd6b2bd80", "sha256": "cb734496ed784d72fe01ed04ac5d29a55e59924636ec46017f2a3d19dcb13366" }, "downloads": -1, "filename": "pgl-1.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e133baa967e409b8edf6b67dd6b2bd80", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7915629, "upload_time": "2020-09-25T05:55:38", "upload_time_iso_8601": "2020-09-25T05:55:38.784956Z", "url": "https://files.pythonhosted.org/packages/71/1b/98e3c9f6ef016a611e5336eadc207f2c593ff64b96e7d82af02c46322cac/pgl-1.2.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de41d5d1c2b4089b0f32b19e27b28819", "sha256": "3c158b56470aca6637df2a16c205211483922bbd12197432b5e2a61db8651758" }, "downloads": -1, "filename": "pgl-1.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "de41d5d1c2b4089b0f32b19e27b28819", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7907802, "upload_time": "2020-09-25T05:55:43", "upload_time_iso_8601": "2020-09-25T05:55:43.802244Z", "url": "https://files.pythonhosted.org/packages/cd/d5/3e5e7243a012697282816cd2b39a849d76c6332f4ff79a19d712a4218d24/pgl-1.2.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08a9751a6a0a0a0c3c7748aa059e77a0", "sha256": "e5ecd2dfe6968efa48e147f18d95610332aa83f7418571bef3d68fb770138c84" }, "downloads": -1, "filename": "pgl-1.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "08a9751a6a0a0a0c3c7748aa059e77a0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7915790, "upload_time": "2020-09-25T05:55:48", "upload_time_iso_8601": "2020-09-25T05:55:48.826322Z", "url": "https://files.pythonhosted.org/packages/57/38/74cdffab750d8f785836a7ff6019bc81afce6ebb2e3cb95a5afe0db0a8f1/pgl-1.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61b6247bb00fddd63a5972d0baf60b73", "sha256": "a908c5fc506ceb8e839144ad0d718a8c9f25f396e12d156046b1468eeeef8dcc" }, "downloads": -1, "filename": "pgl-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "61b6247bb00fddd63a5972d0baf60b73", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7921415, "upload_time": "2020-09-25T05:55:54", "upload_time_iso_8601": "2020-09-25T05:55:54.256237Z", "url": "https://files.pythonhosted.org/packages/8e/98/fafceefb42d405e4933beb7751a312e6631881321542c65f78c966284c78/pgl-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50f97181b4534cc193381ccd04ac9d97", "sha256": "42bc2c0c6c36940dcccb946dc553812953dc57441dcacddcc520fae73f412e05" }, "downloads": -1, "filename": "pgl-1.2.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "50f97181b4534cc193381ccd04ac9d97", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7916045, "upload_time": "2020-09-25T05:56:01", "upload_time_iso_8601": "2020-09-25T05:56:01.247999Z", "url": "https://files.pythonhosted.org/packages/35/fa/2290e78914d34d4e4480d7982b8f4d0c58a7e53535113a668a9d75d5c3b6/pgl-1.2.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0932ecfe2ccef8051da1baccf097f93a", "sha256": "535915ea0c6c985fd16be8d980a4fa33776aeafb837a36c9fae8748fcb05b87f" }, "downloads": -1, "filename": "pgl-1.2.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0932ecfe2ccef8051da1baccf097f93a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7907896, "upload_time": "2020-09-25T05:56:07", "upload_time_iso_8601": "2020-09-25T05:56:07.911900Z", "url": "https://files.pythonhosted.org/packages/8f/cd/70e58aa6f804933cd47e9692b420ef31597e3b8a49b2ec8099513260a5a1/pgl-1.2.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b4b4b947f030f932717b64a5a82b472", "sha256": "66a9d33a9f0487eda29f864e9342096f7130b636de652f0badf3116a3375132e" }, "downloads": -1, "filename": "pgl-1.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6b4b4b947f030f932717b64a5a82b472", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7915877, "upload_time": "2020-09-25T05:56:13", "upload_time_iso_8601": "2020-09-25T05:56:13.596890Z", "url": "https://files.pythonhosted.org/packages/67/f2/66646748ac3dfc2873e2a4dc92f14ce7cc7b14bea06a50a12269509060b5/pgl-1.2.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b8fe4b16ceb799227f23634aede6eac", "sha256": "0360af480c7c866776d2d2294ccffa39801f56c712cc5831fab5cf20852bbd06" }, "downloads": -1, "filename": "pgl-1.2.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "2b8fe4b16ceb799227f23634aede6eac", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7908857, "upload_time": "2020-09-25T05:56:19", "upload_time_iso_8601": "2020-09-25T05:56:19.686871Z", "url": "https://files.pythonhosted.org/packages/83/c9/3d970d568218ec726241f87c342840ee4efecd4a0bc71349afe31e355cfc/pgl-1.2.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7704612f86c2bdad1f46014e84d96423", "sha256": "47340665b48e064a36c68eee332ca54e3348b6ed77865eda6ff064d8f4c15312" }, "downloads": -1, "filename": "pgl-1.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7704612f86c2bdad1f46014e84d96423", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7916806, "upload_time": "2020-09-25T05:56:25", "upload_time_iso_8601": "2020-09-25T05:56:25.601430Z", "url": "https://files.pythonhosted.org/packages/0a/57/0f9631bc06e282a9304befb29b87565e846e951b2d5aa13f12b88c1d08b7/pgl-1.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "5132190717c55b9bed519c1810508ec7", "sha256": "225a59bc1f2c4ee68eb56e32750b2491675bb35d37128749512d3c3a6ea24b1f" }, "downloads": -1, "filename": "pgl-1.2.1-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5132190717c55b9bed519c1810508ec7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7922530, "upload_time": "2020-11-20T07:32:32", "upload_time_iso_8601": "2020-11-20T07:32:32.495483Z", "url": "https://files.pythonhosted.org/packages/c4/c2/03603b8db6aab9603566192cc84326e0797e6ec118395bfc8930edaeaee4/pgl-1.2.1-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97cbbfb2215bbb458d120d07122a8082", "sha256": "120546a3ee6396a8d4d7c8f6fff0970653707a5c25f98ca3b16b66dbdc207d46" }, "downloads": -1, "filename": "pgl-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "97cbbfb2215bbb458d120d07122a8082", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7919352, "upload_time": "2020-11-20T07:28:39", "upload_time_iso_8601": "2020-11-20T07:28:39.615237Z", "url": "https://files.pythonhosted.org/packages/80/25/2de681761c063d7c94f2d99fa4d86fd7dff86c230a851b04eccb6f103255/pgl-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b18f58436edca6661a462b06361b19f4", "sha256": "a4574815d5c49ad876b22f47f35f4e8a7f472e91ff80e10b5579b2ad56b90012" }, "downloads": -1, "filename": "pgl-1.2.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b18f58436edca6661a462b06361b19f4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7914238, "upload_time": "2020-11-20T07:28:59", "upload_time_iso_8601": "2020-11-20T07:28:59.435537Z", "url": "https://files.pythonhosted.org/packages/6c/f4/f7432f7cb03948a6900b820752a29565d9abe08aad3054a0607562811131/pgl-1.2.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64cc5d34caeef0d9ef82da7cd1fc724d", "sha256": "fdd0d858add652b96daa7e006eae5770f83351eb471bddd77a403745f1aa7ede" }, "downloads": -1, "filename": "pgl-1.2.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "64cc5d34caeef0d9ef82da7cd1fc724d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7921594, "upload_time": "2020-11-20T07:36:29", "upload_time_iso_8601": "2020-11-20T07:36:29.828610Z", "url": "https://files.pythonhosted.org/packages/61/a6/4453cc1b786fea69a356c108b5f676a495987b565cf59e88be0ead2973fa/pgl-1.2.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd7aab914a561e089cf4c26d5b5edee5", "sha256": "8deafa1fdb94d4b541c7389218741d792b29073ac58c67070c722f112bfff4e3" }, "downloads": -1, "filename": "pgl-1.2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bd7aab914a561e089cf4c26d5b5edee5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7915796, "upload_time": "2020-11-20T07:28:50", "upload_time_iso_8601": "2020-11-20T07:28:50.016458Z", "url": "https://files.pythonhosted.org/packages/35/c9/71511635b931ea144996334df7dae9d08f3d112b358a3d096fcae12e3c1f/pgl-1.2.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1f29b453128b4a90b6c4399cf55bcd3", "sha256": "7a88f4bc3d45e0cb137dfa6bd6b2f2e477be4f4a1b0c22f1672f0090639f2edb" }, "downloads": -1, "filename": "pgl-1.2.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "a1f29b453128b4a90b6c4399cf55bcd3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7907936, "upload_time": "2020-11-20T06:23:47", "upload_time_iso_8601": "2020-11-20T06:23:47.492980Z", "url": "https://files.pythonhosted.org/packages/36/1c/a8847f2edd7c883d03e105f7e699100571542c3665e98b3c5e27be0755e4/pgl-1.2.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52e929c00e5bebbad7cea93f1319d1cf", "sha256": "a25042fec1aedabf973b4ef8c02953ec054752e3c98e9c8f16ea0b2005c427ae" }, "downloads": -1, "filename": "pgl-1.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "52e929c00e5bebbad7cea93f1319d1cf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7915918, "upload_time": "2020-11-20T06:24:43", "upload_time_iso_8601": "2020-11-20T06:24:43.532733Z", "url": "https://files.pythonhosted.org/packages/13/5e/74ffd82539bd76ce4394d2c4bd70e03fcf71f0b767338685f10a69786e18/pgl-1.2.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1640165a83918ef5d1630058bec96a72", "sha256": "494fa1b3f39e7f1acf1f926c26b5cb897812fb3ddbd6c82a55874ae6ee821815" }, "downloads": -1, "filename": "pgl-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1640165a83918ef5d1630058bec96a72", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7921579, "upload_time": "2020-11-20T07:37:03", "upload_time_iso_8601": "2020-11-20T07:37:03.364382Z", "url": "https://files.pythonhosted.org/packages/30/74/8359f9d1f81cfe3dae78f2c9c98b213ae80d183afbef38c070d0c459708c/pgl-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "185d97fbe1f4bbcdbb7affa5bbdc166b", "sha256": "512131124087103fba6aa76bdf67c6b0ac9905a84e064a0e3a5597954bd29bea" }, "downloads": -1, "filename": "pgl-1.2.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "185d97fbe1f4bbcdbb7affa5bbdc166b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7916209, "upload_time": "2020-11-20T08:27:45", "upload_time_iso_8601": "2020-11-20T08:27:45.879125Z", "url": "https://files.pythonhosted.org/packages/e2/84/6aac242f80a794f1169386d73bdc03f2e3467e4fa85b1286979ddf51b1a0/pgl-1.2.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9414e8d47042cba4b0f82ca7c524a61b", "sha256": "d1b577ae34c30774ef9d80138f8ae9fbec2822dd663fc9a7def7d2652c1ecb54" }, "downloads": -1, "filename": "pgl-1.2.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "9414e8d47042cba4b0f82ca7c524a61b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7908054, "upload_time": "2020-11-20T06:25:44", "upload_time_iso_8601": "2020-11-20T06:25:44.901228Z", "url": "https://files.pythonhosted.org/packages/9b/2d/58463a84edcc44502fda280afd99fcff3dcde3b96518c39bd3d97994889c/pgl-1.2.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecf6b50bdc10c2311b3d7ccb7ad10eda", "sha256": "657d90b9e86e1587b2fbc3bbbbc9048fe92437364111f9f7c207b48bd832e907" }, "downloads": -1, "filename": "pgl-1.2.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ecf6b50bdc10c2311b3d7ccb7ad10eda", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7916014, "upload_time": "2020-11-20T06:26:42", "upload_time_iso_8601": "2020-11-20T06:26:42.008027Z", "url": "https://files.pythonhosted.org/packages/9b/76/8466ef63932a8d087d499fd15a392a6dbf332c22f04866caad4a390731c8/pgl-1.2.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ecff75d6a701d5ad431aafa37c3a528", "sha256": "bb612d9472094cd1e283a6b135c0754fb95589c44a874ea7dd1f8636af43eb2c" }, "downloads": -1, "filename": "pgl-1.2.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "7ecff75d6a701d5ad431aafa37c3a528", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7908986, "upload_time": "2020-11-20T06:27:43", "upload_time_iso_8601": "2020-11-20T06:27:43.767410Z", "url": "https://files.pythonhosted.org/packages/6f/cd/7f267ab56b4e0da58e849d86e3b7a8e5fd7bfa36dfe5d66cae84e473a03f/pgl-1.2.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68eaece968b6115f3b7873ed6bb827fa", "sha256": "8eb00e4b19d2ea10a7f560ffbff0b0b29eb084d00922e790a82aebf77f5b1fda" }, "downloads": -1, "filename": "pgl-1.2.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "68eaece968b6115f3b7873ed6bb827fa", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7916893, "upload_time": "2020-11-20T06:28:36", "upload_time_iso_8601": "2020-11-20T06:28:36.197036Z", "url": "https://files.pythonhosted.org/packages/3e/0a/f9e9a4ee1ed9b5131b2fa5172a66e182fc1a6b70c98791c30149a0cd4f03/pgl-1.2.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.0.0a0": [ { "comment_text": "", "digests": { "md5": "0bd832282704594c04f9d627eec2fb77", "sha256": "7bfcb2ac62c0303fd19d894fe0f02ebd70cb5403ef50b66fcb27a3f5b84e4b22" }, "downloads": -1, "filename": "pgl-2.0.0a0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0bd832282704594c04f9d627eec2fb77", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7888168, "upload_time": "2020-12-29T07:50:06", "upload_time_iso_8601": "2020-12-29T07:50:06.428407Z", "url": "https://files.pythonhosted.org/packages/92/3d/de1cb16c2c983640eca8274ad431b35e9287949206b850f41824a615fb1e/pgl-2.0.0a0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a583074d19eb510b1547478852fb7263", "sha256": "50fc85f145c75f1f7ad9f22b4ff9092cfd7aa740bb7236e27d656b277b0ae144" }, "downloads": -1, "filename": "pgl-2.0.0a0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a583074d19eb510b1547478852fb7263", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7895547, "upload_time": "2020-12-29T07:58:23", "upload_time_iso_8601": "2020-12-29T07:58:23.857686Z", "url": "https://files.pythonhosted.org/packages/8c/49/753b32b02fa66de195f708b10bb74a3fa219e2e7bba589360e246a01ceea/pgl-2.0.0a0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d676f58ddea3166ba311e61062ba3c91", "sha256": "bf7f5082918b80b9aa08bebee233b604122ea0e7e2887a4587cbc3d8afdc225b" }, "downloads": -1, "filename": "pgl-2.0.0a0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d676f58ddea3166ba311e61062ba3c91", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7889599, "upload_time": "2020-12-29T09:23:26", "upload_time_iso_8601": "2020-12-29T09:23:26.831367Z", "url": "https://files.pythonhosted.org/packages/9e/b5/79909527d82ca1b6c7edcabe18d635aad9dd8a9ba124879b9b8eb29ece54/pgl-2.0.0a0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83ca9e61c5dd7318dd79438b090d2cc1", "sha256": "8d3549a0b0973dbd196f2081cba6f79263a8c2d8d01482066a1eb9d983c9842d" }, "downloads": -1, "filename": "pgl-2.0.0a0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "83ca9e61c5dd7318dd79438b090d2cc1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7889993, "upload_time": "2020-12-29T07:53:18", "upload_time_iso_8601": "2020-12-29T07:53:18.443806Z", "url": "https://files.pythonhosted.org/packages/2b/55/c968f75be34dd4ff762919a5e3d9460efab18a0043521e826988464baff3/pgl-2.0.0a0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d9bdab867ec097a7defa23d76f541fe", "sha256": "7aebfd1f83a29c60c7376dd2a8053d5417ec5314bc5e490a4a1725087a50463a" }, "downloads": -1, "filename": "pgl-2.0.0a0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0d9bdab867ec097a7defa23d76f541fe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7888557, "upload_time": "2020-12-29T07:54:32", "upload_time_iso_8601": "2020-12-29T07:54:32.351912Z", "url": "https://files.pythonhosted.org/packages/c5/74/90cf56c21689c95a18a4d340ff15f62737da957b874d7c2ca8d8b64aa196/pgl-2.0.0a0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "2.1": [ { "comment_text": "", "digests": { "md5": "a57a04ae8d466ec1d87e8d35227ff4f5", "sha256": "e0cb4b3735e938fcac0d98868cec8c69aaa55b0e2df59c3e5a3a79258d885b71" }, "downloads": -1, "filename": "pgl-2.1-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "a57a04ae8d466ec1d87e8d35227ff4f5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7899463, "upload_time": "2021-02-05T12:03:24", "upload_time_iso_8601": "2021-02-05T12:03:24.353941Z", "url": "https://files.pythonhosted.org/packages/c6/f9/c83a6c72d324a6617fa233daa4c1861cec0d36f582e2582ccdaf7dbfbef9/pgl-2.1-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd07121439d4b7f7ed12d5b325950cc7", "sha256": "f96cb0b383c0f3c81d701e53ebec929d2820f172d37a6915818208fbc1d42824" }, "downloads": -1, "filename": "pgl-2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fd07121439d4b7f7ed12d5b325950cc7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7893594, "upload_time": "2021-02-24T04:00:50", "upload_time_iso_8601": "2021-02-24T04:00:50.451966Z", "url": "https://files.pythonhosted.org/packages/44/a4/519726cf8bb3925e0b538e3ed22441c0fd5e17028444c5169f32b246f3ae/pgl-2.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11a0b1d6d178dc3013de5e7014fab5ba", "sha256": "d391a23e08b1388bd1ff59063d551390861ad1ccbd206cb7e135dc89c8c6939d" }, "downloads": -1, "filename": "pgl-2.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "11a0b1d6d178dc3013de5e7014fab5ba", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7897886, "upload_time": "2021-02-05T11:59:56", "upload_time_iso_8601": "2021-02-05T11:59:56.687005Z", "url": "https://files.pythonhosted.org/packages/57/29/55f2c609702218bdfac343978a6dcfd19271b3e0e0afbdc777b98526c444/pgl-2.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49d1d8c5744a32650d7328ab986843ff", "sha256": "c7bde40e69060ea9d7d1d951e8e7ab3504e907416943bb490777e5bd6c69b9d7" }, "downloads": -1, "filename": "pgl-2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "49d1d8c5744a32650d7328ab986843ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7893406, "upload_time": "2021-02-05T11:50:46", "upload_time_iso_8601": "2021-02-05T11:50:46.573530Z", "url": "https://files.pythonhosted.org/packages/92/9f/b77988fe752c65dbd0822cdbc9b239e2d56dfd061d4890484a83fcb15041/pgl-2.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb16e3726f3d059ffc79eb5558c401c2", "sha256": "0f7b4853334b0e283aa75a73a45ec12edf8d69f96c1a20ceb72370e6bd0a3a02" }, "downloads": -1, "filename": "pgl-2.1-cp37-cp37m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "bb16e3726f3d059ffc79eb5558c401c2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7973020, "upload_time": "2021-02-05T12:05:07", "upload_time_iso_8601": "2021-02-05T12:05:07.705880Z", "url": "https://files.pythonhosted.org/packages/5b/3b/c7212a4b24e8e752cfcc5679234ca1a9578b208914e39909cb217c0348f6/pgl-2.1-cp37-cp37m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bf07565af54568ccf7a6d9e8a6dce18", "sha256": "10926b8945b8b800f4002fc00b99b94635bdb12b32a1a41ae147bafa72c0886b" }, "downloads": -1, "filename": "pgl-2.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9bf07565af54568ccf7a6d9e8a6dce18", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7893749, "upload_time": "2021-02-24T04:02:07", "upload_time_iso_8601": "2021-02-24T04:02:07.864437Z", "url": "https://files.pythonhosted.org/packages/da/e7/551ed55c5ddac5c95d3057dcc4ec11a65bf910de203f3888cefbe8efb549/pgl-2.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f1b8e4f1e706e4a9c07572a5bb04680", "sha256": "45943b5f0d4ea7930d24d10ce88f7b9666a7bc652bc9a7cd1c25bdc374312d1d" }, "downloads": -1, "filename": "pgl-2.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "9f1b8e4f1e706e4a9c07572a5bb04680", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7898726, "upload_time": "2021-02-05T11:59:54", "upload_time_iso_8601": "2021-02-05T11:59:54.020325Z", "url": "https://files.pythonhosted.org/packages/40/3f/86906239f9a4314b29c0532837c543bf2e85f92b1d9ab4533d7917c577ee/pgl-2.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "338eea4c40aceed9d20d2a7c0d3a5d1e", "sha256": "7e71f38ba8d7f2e01dcfee827c2a9fe5073017ec49e20d77a9158f26a71b1fb5" }, "downloads": -1, "filename": "pgl-2.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "338eea4c40aceed9d20d2a7c0d3a5d1e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7893503, "upload_time": "2021-02-05T11:51:56", "upload_time_iso_8601": "2021-02-05T11:51:56.347154Z", "url": "https://files.pythonhosted.org/packages/c5/e4/605c7f17572f1e939cd341368a39c57f2c6c7981c78f191b2e16e1645e7d/pgl-2.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d9dc2b492350204ed7c78b815d36534", "sha256": "78471d218fc8fc93c00d97c5459b19421e6db222fc7cb9e51fa39a77dcf11d4e" }, "downloads": -1, "filename": "pgl-2.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4d9dc2b492350204ed7c78b815d36534", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7892582, "upload_time": "2021-02-24T04:03:32", "upload_time_iso_8601": "2021-02-24T04:03:32.458941Z", "url": "https://files.pythonhosted.org/packages/9d/40/a7a11383911fdfbe3b5bdd7b3b85d1d679b336e2c39486d5d7140162bbe2/pgl-2.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c235f2c613171e654b343b785e60530", "sha256": "79a750229e9ef5cf31eeb5454ca78f32158e38faf97dd7b11c740e70a7260440" }, "downloads": -1, "filename": "pgl-2.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6c235f2c613171e654b343b785e60530", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7900804, "upload_time": "2021-02-05T11:59:50", "upload_time_iso_8601": "2021-02-05T11:59:50.089125Z", "url": "https://files.pythonhosted.org/packages/42/68/eff3708ecdcc555828c66d10f22e4f3294909b70c2a950ec9dd806c7a6f2/pgl-2.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "594b1d69cb06e9924f42f8233d9f1623", "sha256": "b87fd6a646a182898eb534951c29c3e7ca78983966b9b72997aa3bd350675544" }, "downloads": -1, "filename": "pgl-2.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "594b1d69cb06e9924f42f8233d9f1623", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7894419, "upload_time": "2021-02-05T11:53:08", "upload_time_iso_8601": "2021-02-05T11:53:08.822383Z", "url": "https://files.pythonhosted.org/packages/d5/49/e199c5948fa3bb03615a8cc9e7e372627dc368a19716f07fd59abefd9f5f/pgl-2.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "8be4aff9c488575fc50c282445074529", "sha256": "ac2d406e5699da8faf57ab40afac23b1314507e9a11584c387cc8c8121e66581" }, "downloads": -1, "filename": "pgl-2.1.1-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "8be4aff9c488575fc50c282445074529", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7901435, "upload_time": "2021-03-12T05:52:49", "upload_time_iso_8601": "2021-03-12T05:52:49.126620Z", "url": "https://files.pythonhosted.org/packages/c6/cc/0d1d2ef174bff0df87e91e22e5e39e54756da0788f155b1769c8eef9ce4f/pgl-2.1.1-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d3cc0b38236e19f8e37b0ee8be1e1a0", "sha256": "1012cb7125adda26654685ac411d99c5ea1b1d5c6d0baf6273966a5eb4b7809d" }, "downloads": -1, "filename": "pgl-2.1.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7d3cc0b38236e19f8e37b0ee8be1e1a0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7895587, "upload_time": "2021-03-12T05:46:43", "upload_time_iso_8601": "2021-03-12T05:46:43.356483Z", "url": "https://files.pythonhosted.org/packages/8e/e8/53cf1b137c071e4a8d4ccf91330e43f1a0f00b716f8460d5fdf9b996983f/pgl-2.1.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42505f0e8e3e68337dd6188d91f2650b", "sha256": "4fb21f82a5e2705af72e8bf6af1c690c3b1091e8bc52d0f4fac6764c0e7aadfd" }, "downloads": -1, "filename": "pgl-2.1.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "42505f0e8e3e68337dd6188d91f2650b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7899794, "upload_time": "2021-03-12T05:46:44", "upload_time_iso_8601": "2021-03-12T05:46:44.285496Z", "url": "https://files.pythonhosted.org/packages/dc/90/e98bf3217adc6b137c8564e4b0f7992b8a2fc60dc8cead95a3175d2f6f29/pgl-2.1.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc74897b91289f23065718b72bd0eb7f", "sha256": "ae05ef974246554c28a3bd98b4de8812cd2c1e69c940b4acd81499d4e95b23f0" }, "downloads": -1, "filename": "pgl-2.1.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fc74897b91289f23065718b72bd0eb7f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7895405, "upload_time": "2021-03-12T05:45:44", "upload_time_iso_8601": "2021-03-12T05:45:44.037891Z", "url": "https://files.pythonhosted.org/packages/b6/17/84d40553cd1f788ee492d42adc353a6fb15a6e6a2df23c6504f5bd35f416/pgl-2.1.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0c720d1834aac1a7b85b4ac6b6c6956", "sha256": "a36b4be86ddabba4161e88f238d9e4ec4b28896eb7037992f741414763403a8e" }, "downloads": -1, "filename": "pgl-2.1.1-cp37-cp37m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "d0c720d1834aac1a7b85b4ac6b6c6956", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7975068, "upload_time": "2021-03-12T05:53:18", "upload_time_iso_8601": "2021-03-12T05:53:18.045671Z", "url": "https://files.pythonhosted.org/packages/54/dc/6ee9fd0ed0699daa2b1fb63b9ca7c3caf4d36e4d99a82cb7467895d924a6/pgl-2.1.1-cp37-cp37m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3805530f7be8a14c59fa4a7c2635c4f1", "sha256": "523e99ee71b8ea9f4adfb9550cc45c214d2275212f59b6408bc4d453b33f9caf" }, "downloads": -1, "filename": "pgl-2.1.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3805530f7be8a14c59fa4a7c2635c4f1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7895740, "upload_time": "2021-03-12T05:47:57", "upload_time_iso_8601": "2021-03-12T05:47:57.122064Z", "url": "https://files.pythonhosted.org/packages/cd/15/4b568a9076fee45fdbcb7da4346599532f55b167c86a297466d1d3d2cddf/pgl-2.1.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac3330268e46dd3830ecaa5afddd0fd2", "sha256": "dbe52852e0d32535428ca711ea95a1671c674b7551b625c68ed49bbe0cbb39fc" }, "downloads": -1, "filename": "pgl-2.1.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ac3330268e46dd3830ecaa5afddd0fd2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7900699, "upload_time": "2021-03-12T05:47:35", "upload_time_iso_8601": "2021-03-12T05:47:35.397588Z", "url": "https://files.pythonhosted.org/packages/12/12/5479e490af03d6f1da97256b6949dfced0d96298f0bcf5e203a2c67ad5c7/pgl-2.1.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de4872dcc1e9e827330e22c412d30328", "sha256": "ea2957a8a4b344d76544f65ed2edbc6ba21bb77969c3d310f4a314bc9151135e" }, "downloads": -1, "filename": "pgl-2.1.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "de4872dcc1e9e827330e22c412d30328", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7895478, "upload_time": "2021-03-12T05:46:59", "upload_time_iso_8601": "2021-03-12T05:46:59.005271Z", "url": "https://files.pythonhosted.org/packages/ed/8c/f54b1dfdd19a491c9e53920d96c1f262a03ce0377cbf0adb732037c92729/pgl-2.1.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c76a0994c3c01fdbb372279436b80db", "sha256": "eb6e79f9fe9e153af6948dc94f8f751cae366047032e66fb097e05e3a46c5115" }, "downloads": -1, "filename": "pgl-2.1.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3c76a0994c3c01fdbb372279436b80db", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7894575, "upload_time": "2021-03-12T05:49:39", "upload_time_iso_8601": "2021-03-12T05:49:39.442424Z", "url": "https://files.pythonhosted.org/packages/7b/a5/1321f48e0e01cc0040a7dc7e43da15074ba8c627e09737f5f6d4356cdf0b/pgl-2.1.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac4160d95b1e224565353150cd8a99da", "sha256": "3e5e94a937fb2392e051b00b0108cfa7216e1a66b7725829e32d9c5ad22ab392" }, "downloads": -1, "filename": "pgl-2.1.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ac4160d95b1e224565353150cd8a99da", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7902696, "upload_time": "2021-03-12T05:49:26", "upload_time_iso_8601": "2021-03-12T05:49:26.611082Z", "url": "https://files.pythonhosted.org/packages/36/18/2e2ee7958501ddaf6145763bd9b2165464d9345121b2bfbade9083b87465/pgl-2.1.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4f130d4e93876e67f06bd4cbb53df56", "sha256": "a06f7b74ad90a35659f20c8ad6cb565eba1fc9a9cb3c66b9cc03ec5f2eed86f6" }, "downloads": -1, "filename": "pgl-2.1.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b4f130d4e93876e67f06bd4cbb53df56", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7896421, "upload_time": "2021-03-12T05:48:13", "upload_time_iso_8601": "2021-03-12T05:48:13.354239Z", "url": "https://files.pythonhosted.org/packages/46/74/7cae394a7257f6b0d87f838be60123cbf2f7f95865973964f3ac1d9f5669/pgl-2.1.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "891f73486939bc23b78cb93205539d53", "sha256": "5868d6eb70c4546b6ee559d8f6cfe9fc51e1d854badee7e8bf8b5ef67e2a5f92" }, "downloads": -1, "filename": "pgl-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "891f73486939bc23b78cb93205539d53", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7895602, "upload_time": "2021-03-15T06:56:47", "upload_time_iso_8601": "2021-03-15T06:56:47.051363Z", "url": "https://files.pythonhosted.org/packages/81/b2/2d6388c0223f9a5dd324d5a59a79922bd2d0f169de0d0cfe52c4feae54c1/pgl-2.1.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a9a8d65facfdea52f63c24cdc8bbdf3", "sha256": "9c0dfbb642df40888e4f7dea0f17aa816c8f75fa3f64534deb3164b5ce17432b" }, "downloads": -1, "filename": "pgl-2.1.2-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0a9a8d65facfdea52f63c24cdc8bbdf3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7899808, "upload_time": "2021-03-15T06:56:41", "upload_time_iso_8601": "2021-03-15T06:56:41.118454Z", "url": "https://files.pythonhosted.org/packages/d1/88/95a3c134bbc79cee4c0aa379dd3fd646295e9532d87c307ddd32746c14bd/pgl-2.1.2-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81e261b395c3e6f8e258623cf59a79bd", "sha256": "de0839def5d248a49796c57d97f6cab90370d16edc3a049f32ba123b88c1ce9a" }, "downloads": -1, "filename": "pgl-2.1.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "81e261b395c3e6f8e258623cf59a79bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7895448, "upload_time": "2021-03-15T06:55:17", "upload_time_iso_8601": "2021-03-15T06:55:17.099811Z", "url": "https://files.pythonhosted.org/packages/07/6d/c2ee465e7765cb64ab9e30a0ca715d9322cc05313ee1ce691ef7c122618b/pgl-2.1.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fea59d881a8f44a8e7c1dc3467da28bb", "sha256": "af17d55a16e5ed9883b0fccb0c6d346265c6f7e3d9a6c89aef38291c3d1d69e4" }, "downloads": -1, "filename": "pgl-2.1.2-cp37-cp37m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "fea59d881a8f44a8e7c1dc3467da28bb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7975079, "upload_time": "2021-03-15T07:03:39", "upload_time_iso_8601": "2021-03-15T07:03:39.936631Z", "url": "https://files.pythonhosted.org/packages/3a/bc/aa25b163b847bf9e2cbf0ec526325e0ad93edae5f908070b345f73abb9f1/pgl-2.1.2-cp37-cp37m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70987c0318f52496fe76cc0a21b7f2d2", "sha256": "c05c050716d904713d322462fd26c70bf6fc4f65f2c02aaafd695fbe46c4131b" }, "downloads": -1, "filename": "pgl-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "70987c0318f52496fe76cc0a21b7f2d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7895755, "upload_time": "2021-03-15T06:58:21", "upload_time_iso_8601": "2021-03-15T06:58:21.155086Z", "url": "https://files.pythonhosted.org/packages/da/08/60456a86c010c89d3c78bf2e1e925e9e7830066f4e4b708f2747597c4477/pgl-2.1.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "115af998646962b3bdc5d7480476a682", "sha256": "9b438866bf31a837242e9ca63a9af153f0f5d368f415af5ce203ce0cc1d86464" }, "downloads": -1, "filename": "pgl-2.1.2-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "115af998646962b3bdc5d7480476a682", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7900715, "upload_time": "2021-03-15T06:57:53", "upload_time_iso_8601": "2021-03-15T06:57:53.115235Z", "url": "https://files.pythonhosted.org/packages/84/1c/e2d6e19d3f4ef32b64a44b862ce7aa56495ffc244e84176780974ccaa3b9/pgl-2.1.2-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f6ad73c83cae966a65769f32966147a", "sha256": "f5a0b357b918595ba684c037f7592f0a2c394c3e7fe6e216959d5053b5a0002a" }, "downloads": -1, "filename": "pgl-2.1.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6f6ad73c83cae966a65769f32966147a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7895520, "upload_time": "2021-03-15T06:56:27", "upload_time_iso_8601": "2021-03-15T06:56:27.981502Z", "url": "https://files.pythonhosted.org/packages/8b/c3/ad8f3f8ce69351a6113d4ff7ea296136c55dbce9550a6dbe19facd972b18/pgl-2.1.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f26c44a53fbfb2baeab5039dfec6ef9", "sha256": "a85e138dc58a5ba2f24e662b3bc9845b5e39838cc6c682905c3d2f84661c1d63" }, "downloads": -1, "filename": "pgl-2.1.2-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2f26c44a53fbfb2baeab5039dfec6ef9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7894589, "upload_time": "2021-03-15T06:59:35", "upload_time_iso_8601": "2021-03-15T06:59:35.222102Z", "url": "https://files.pythonhosted.org/packages/42/8c/99f802fa54b3071582855848bfeb04d63b6b1657297ec48031dc738ae862/pgl-2.1.2-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e50bc38c92fbe2e5c12cb7833aa8b7d", "sha256": "d65c15889767b371b857e3c20aba6709bc0ce707fcb7768857b904f0c39083ca" }, "downloads": -1, "filename": "pgl-2.1.2-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3e50bc38c92fbe2e5c12cb7833aa8b7d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7902711, "upload_time": "2021-03-15T06:59:21", "upload_time_iso_8601": "2021-03-15T06:59:21.282850Z", "url": "https://files.pythonhosted.org/packages/fb/ef/bac0ea4dade5beadfc79e1c8a02e34f42e8dffdc37ba3984da28fe1d71dd/pgl-2.1.2-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6fb4665a3e9c81667345b1bf0e1ee1b", "sha256": "0fba3d952cc50c452dd58dd0f25e9fedb34ea1710c7ed8813c340952e7f64da7" }, "downloads": -1, "filename": "pgl-2.1.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "a6fb4665a3e9c81667345b1bf0e1ee1b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7896478, "upload_time": "2021-03-15T06:57:40", "upload_time_iso_8601": "2021-03-15T06:57:40.844840Z", "url": "https://files.pythonhosted.org/packages/9f/25/52a6aed9582c04c5715d2cdc30fbc1fd468b3018bcdea3f30a62960e3adb/pgl-2.1.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "8961ebbfeeee078a730629ddff1d3d5b", "sha256": "2c7c17022bb9b5265b56afc7192c96a025d04e8a790ffc852b8fe8b924993380" }, "downloads": -1, "filename": "pgl-2.1.3-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "8961ebbfeeee078a730629ddff1d3d5b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7914827, "upload_time": "2021-04-25T04:16:26", "upload_time_iso_8601": "2021-04-25T04:16:26.088593Z", "url": "https://files.pythonhosted.org/packages/48/b5/09ef8a5c1a77a3c779b16655e343b4f1c2552818552556ff083685bfe1b3/pgl-2.1.3-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af090f6969a9b09fba4ab54555d6b87a", "sha256": "954a18f6b5f3cf65dcdeabf8b2f681e2099a3b310eb91996306d330da1f92b5d" }, "downloads": -1, "filename": "pgl-2.1.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "af090f6969a9b09fba4ab54555d6b87a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7908397, "upload_time": "2021-04-25T04:10:20", "upload_time_iso_8601": "2021-04-25T04:10:20.128409Z", "url": "https://files.pythonhosted.org/packages/8b/08/7b3d422fa37500c5133d7e936dda9daa74168967e4923992c4bf64c014af/pgl-2.1.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78be7e84a5a33dd631b59803ed2aaf05", "sha256": "b69fac3deaed99ea0de92292e20b9353aec96ca6c7b9d143e128ff7cd0612503" }, "downloads": -1, "filename": "pgl-2.1.3-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "78be7e84a5a33dd631b59803ed2aaf05", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7912776, "upload_time": "2021-04-25T04:10:13", "upload_time_iso_8601": "2021-04-25T04:10:13.724928Z", "url": "https://files.pythonhosted.org/packages/d3/f3/5d20007a430f19381a5a1655769c1ac6dc632f87be6ef04bc3ab7b7c4023/pgl-2.1.3-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fdd910e0b3b875190ca8be923b57ec3", "sha256": "82f55572b5dd30084c3f18d93acc1562cb2e92df046e6082bb89ac7a4214a8a4" }, "downloads": -1, "filename": "pgl-2.1.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8fdd910e0b3b875190ca8be923b57ec3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7921740, "upload_time": "2021-06-04T06:37:28", "upload_time_iso_8601": "2021-06-04T06:37:28.063162Z", "url": "https://files.pythonhosted.org/packages/48/08/778e2aec0a6f65f0e81b43b19555d8359408f8c2904f95b5a4ae723dc86f/pgl-2.1.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0d33aec839233f5ab58bd0f7192ce3c", "sha256": "b7deec796c617940081dc282eaf9a11e84b8815e0f8b033ba342a49885a3493e" }, "downloads": -1, "filename": "pgl-2.1.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d0d33aec839233f5ab58bd0f7192ce3c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7917360, "upload_time": "2021-06-04T06:37:33", "upload_time_iso_8601": "2021-06-04T06:37:33.347200Z", "url": "https://files.pythonhosted.org/packages/ff/75/ef6b91563e09e3530c58638770ae7ac2440810e0f15227be7481d72b1ba2/pgl-2.1.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a62d881f64aeea4c38bdecad145b7b27", "sha256": "4e0aa269874dd2b26ad4de2c8f1a64e3b8f1aed28c1419ee7085d68e7f8211b1" }, "downloads": -1, "filename": "pgl-2.1.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a62d881f64aeea4c38bdecad145b7b27", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7907730, "upload_time": "2021-04-25T04:08:48", "upload_time_iso_8601": "2021-04-25T04:08:48.021958Z", "url": "https://files.pythonhosted.org/packages/ff/a1/91325e4161397abb512bc9bcdf7edbce887ff9dc3df2c5cc2446582b9f31/pgl-2.1.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76e0555d369da3485be08aa913bd427a", "sha256": "4febd321516f1553e0a698c468535f3057dfd73c4dd1b7a1cc1e6717cee3bbfc" }, "downloads": -1, "filename": "pgl-2.1.3-cp37-cp37m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "76e0555d369da3485be08aa913bd427a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7992732, "upload_time": "2021-04-25T04:18:17", "upload_time_iso_8601": "2021-04-25T04:18:17.809876Z", "url": "https://files.pythonhosted.org/packages/6c/30/51e234f9e39aa43686c99f5bacf4ef25ba845a1307351448319eb511edca/pgl-2.1.3-cp37-cp37m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8057a99eaa59ecb6eda236444332e98", "sha256": "874b5009a1ab5ac293c13f387b9ba07f160ccfe1c1321ed7d293b401bacbb39c" }, "downloads": -1, "filename": "pgl-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f8057a99eaa59ecb6eda236444332e98", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7923622, "upload_time": "2021-06-04T06:44:17", "upload_time_iso_8601": "2021-06-04T06:44:17.013954Z", "url": "https://files.pythonhosted.org/packages/2c/6f/068f3b27813328683c09ba19bbc72e84ac0eaddf8533d7b2539a537c68d2/pgl-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00a3bc6d7c683f2f42403a35eccaf213", "sha256": "87d579d2d42c6b2a61357f2230cfb178ce9b2a3cf634d58fbf7fdee9975bfaf5" }, "downloads": -1, "filename": "pgl-2.1.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "00a3bc6d7c683f2f42403a35eccaf213", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7908600, "upload_time": "2021-04-25T04:13:20", "upload_time_iso_8601": "2021-04-25T04:13:20.765528Z", "url": "https://files.pythonhosted.org/packages/2b/d0/6736a583510fd0c439ffba08a1b5515cd05a32d529a6b2ecc874da864d8c/pgl-2.1.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5bf461ef881174a749101cbde74e1ba", "sha256": "f6649a7235ff6635422975df8e62b4470a26bf0b6dd3390fd2769070cad32d90" }, "downloads": -1, "filename": "pgl-2.1.3-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d5bf461ef881174a749101cbde74e1ba", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7913371, "upload_time": "2021-04-25T04:11:18", "upload_time_iso_8601": "2021-04-25T04:11:18.000831Z", "url": "https://files.pythonhosted.org/packages/99/94/c656e03dc3769330f3c2aac33dbca67922fc0c175d18adadfab2da27303b/pgl-2.1.3-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da029119dfbd810157c892e494c6fad3", "sha256": "e8ead36da239f244c8a36837d4ebb6f1f3f523340b8ccec41384a0716a567ab0" }, "downloads": -1, "filename": "pgl-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "da029119dfbd810157c892e494c6fad3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7922336, "upload_time": "2021-06-04T06:38:36", "upload_time_iso_8601": "2021-06-04T06:38:36.898458Z", "url": "https://files.pythonhosted.org/packages/8f/37/9612cf44d56da6a6cd289a6db28f427d5d8d99a2ff798255677893d4726e/pgl-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d64ebff147942a4e912b50835929d5e", "sha256": "8c1d2beebd3cef69614a6539ae0bb7b141e08b19e6d1e3c3a6dc4eb607c8655d" }, "downloads": -1, "filename": "pgl-2.1.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7d64ebff147942a4e912b50835929d5e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7917564, "upload_time": "2021-06-04T06:38:55", "upload_time_iso_8601": "2021-06-04T06:38:55.731536Z", "url": "https://files.pythonhosted.org/packages/1a/25/1f721ae3ccdaf3a724bbee7a0360e77b4bab0f19c0dcfbbdc893a9d3f5d0/pgl-2.1.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c287160aa2bfc3bd9bcc6a3054694648", "sha256": "c2781087056f0d3c98d0313fd82f0f8455aa1f24e20531726b720836fa117a1f" }, "downloads": -1, "filename": "pgl-2.1.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c287160aa2bfc3bd9bcc6a3054694648", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7907794, "upload_time": "2021-04-25T04:10:00", "upload_time_iso_8601": "2021-04-25T04:10:00.406110Z", "url": "https://files.pythonhosted.org/packages/b8/a8/b228eeef3c00e021ba58918e813c25d5d7bc71854480e63a869267085968/pgl-2.1.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3696941da88228f7a6f9f6b9f095e9a", "sha256": "c4a46a42111e78131b399f37888bb3676ec5e6f3f8c2341ccc748353a7125fd5" }, "downloads": -1, "filename": "pgl-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e3696941da88228f7a6f9f6b9f095e9a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7923070, "upload_time": "2021-06-04T09:46:49", "upload_time_iso_8601": "2021-06-04T09:46:49.001724Z", "url": "https://files.pythonhosted.org/packages/fa/07/b546183a93d4e6f6f91826833a2ff6ca0b865de1e5f392f27ab0d8f9ff83/pgl-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6468dd8e18cfec73ff8835f670e07fe8", "sha256": "f5534d366db8891a84617930115a1ec135337ef9d7a8a4e9e2eba2eb96d7c12f" }, "downloads": -1, "filename": "pgl-2.1.3-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6468dd8e18cfec73ff8835f670e07fe8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7907111, "upload_time": "2021-04-25T04:13:05", "upload_time_iso_8601": "2021-04-25T04:13:05.749753Z", "url": "https://files.pythonhosted.org/packages/dd/dc/3d932643aa2566d5bb92fbd0f14ca4f41893503cb4b03d946508e9ce3405/pgl-2.1.3-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "754cf669cfbcda0c2f82cada12e3cfef", "sha256": "2c96f0d898d0b3750f4a14395f7a87def1f3a4ba7a45099455aa0317cce9398a" }, "downloads": -1, "filename": "pgl-2.1.3-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "754cf669cfbcda0c2f82cada12e3cfef", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7915674, "upload_time": "2021-04-25T04:13:03", "upload_time_iso_8601": "2021-04-25T04:13:03.918585Z", "url": "https://files.pythonhosted.org/packages/99/5f/83af5c8d3131434264bc159660bff48367e39c6f175752142428b9efe5a9/pgl-2.1.3-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aed6d641fb834394ac603f56013e8fa8", "sha256": "3439e69d7ce7e4a71707555510396460e041afef1bd3f702eb98adbc2a34a44b" }, "downloads": -1, "filename": "pgl-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "aed6d641fb834394ac603f56013e8fa8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7924637, "upload_time": "2021-06-04T06:40:06", "upload_time_iso_8601": "2021-06-04T06:40:06.060731Z", "url": "https://files.pythonhosted.org/packages/e6/71/424c8f50d1fb929027648089dc397cacc8b67381df29777d42ede540a4c1/pgl-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60ea7a8c4fb3501282ab72327d5c9749", "sha256": "570ccd497985f4f3c839165d50af678306ad1bb81e98ff841ca659ed3f10f92e" }, "downloads": -1, "filename": "pgl-2.1.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "60ea7a8c4fb3501282ab72327d5c9749", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7916073, "upload_time": "2021-06-04T06:40:19", "upload_time_iso_8601": "2021-06-04T06:40:19.261507Z", "url": "https://files.pythonhosted.org/packages/26/c3/5ab60b661e4c4e7b4d497dd3d0be98ef7c9061301607227b8672a89dc973/pgl-2.1.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d80d93ffc420e458a8208700bdebcc39", "sha256": "ad0ec6eafa0a07827115e1ae22b50cea77195b9dc4cb7c7723e62bdcdecedbc5" }, "downloads": -1, "filename": "pgl-2.1.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "d80d93ffc420e458a8208700bdebcc39", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7908753, "upload_time": "2021-04-25T04:11:17", "upload_time_iso_8601": "2021-04-25T04:11:17.204941Z", "url": "https://files.pythonhosted.org/packages/4b/58/1267efefa2cc1659f0b1d682fa6f9214322117284f75404b3740efb95333/pgl-2.1.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "c88100386672543e462cfd482c6294b7", "sha256": "7b9582a82db0c5faa1319cf39ff4f4a86cd4488ce45e30dd331c75e5d7a49df0" }, "downloads": -1, "filename": "pgl-2.1.4-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "c88100386672543e462cfd482c6294b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7923770, "upload_time": "2021-05-12T05:19:59", "upload_time_iso_8601": "2021-05-12T05:19:59.144147Z", "url": "https://files.pythonhosted.org/packages/0e/3a/fe837ac32d3b248b499c7f2f587f54b12b2a440a28df3c946ac558e7965c/pgl-2.1.4-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7897ed36ff24d0f5fdc33b779e1efc69", "sha256": "03085ac6de44ec4024b5a3518854adb568979db26cfc71f914c7c278a623ea09" }, "downloads": -1, "filename": "pgl-2.1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7897ed36ff24d0f5fdc33b779e1efc69", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7921732, "upload_time": "2021-05-12T05:13:54", "upload_time_iso_8601": "2021-05-12T05:13:54.651086Z", "url": "https://files.pythonhosted.org/packages/45/62/58e4dabaaac383024e0ac4f5d5e3b13d60d5866313a74371f7a8ce675140/pgl-2.1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "258deb66aa9e28ec1104810ae00da4b7", "sha256": "768a88ed3795d80f9ce5545bd02a71869f748fad6906343679db55faa9f665eb" }, "downloads": -1, "filename": "pgl-2.1.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "258deb66aa9e28ec1104810ae00da4b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7917351, "upload_time": "2021-05-12T05:13:59", "upload_time_iso_8601": "2021-05-12T05:13:59.937182Z", "url": "https://files.pythonhosted.org/packages/9f/b6/2a593e73261d084ff3342307582dd9a688f7c25fa036220f0cae298f8e35/pgl-2.1.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "488b83c4f65cf767df46755ca5101b46", "sha256": "6da0cb9d621b1d0fc26193f282e84035f456f302f34375beecda83bd713f8be2" }, "downloads": -1, "filename": "pgl-2.1.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "488b83c4f65cf767df46755ca5101b46", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7916674, "upload_time": "2021-05-12T05:12:21", "upload_time_iso_8601": "2021-05-12T05:12:21.779489Z", "url": "https://files.pythonhosted.org/packages/d3/5d/429c1df20070f63372bd3dbed529572fab8fb15754025ba93d10463706a5/pgl-2.1.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43e08b566179ea2b06571c85b045f07c", "sha256": "8d36be52e74eefdc9f7931ab0cd9514fa6172441195d7fe84b624e697ae0dc11" }, "downloads": -1, "filename": "pgl-2.1.4-cp37-cp37m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "43e08b566179ea2b06571c85b045f07c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8001676, "upload_time": "2021-05-12T05:20:42", "upload_time_iso_8601": "2021-05-12T05:20:42.451173Z", "url": "https://files.pythonhosted.org/packages/51/7e/e9e090dc618ca71cb9c48fd120bf3d79fbf12fcfb50ddff89523cea2825f/pgl-2.1.4-cp37-cp37m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b684bbdb44bbfa837354c3b0b4220f9", "sha256": "e7dcc3d8608c976a5c9db906ce02177d824466a9b527717ea84dad9fff8e03e0" }, "downloads": -1, "filename": "pgl-2.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1b684bbdb44bbfa837354c3b0b4220f9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7922327, "upload_time": "2021-05-12T05:15:00", "upload_time_iso_8601": "2021-05-12T05:15:00.483671Z", "url": "https://files.pythonhosted.org/packages/85/b1/d24475fd9fa32909d2b15ad3722070793400783f476c6702b5b0fdc33d41/pgl-2.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e29567a59b858773df5c2e70b9fe6a6", "sha256": "7d38ab5ac116e5bc3e1254a806ec819aeeb7f324ef2e9769578fe3b33cc19503" }, "downloads": -1, "filename": "pgl-2.1.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9e29567a59b858773df5c2e70b9fe6a6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7917554, "upload_time": "2021-05-12T05:15:20", "upload_time_iso_8601": "2021-05-12T05:15:20.777263Z", "url": "https://files.pythonhosted.org/packages/4f/2a/f799a4009d82418fb2de16d9c5ef99765df151bd97d368cdb14eb73ed167/pgl-2.1.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c5662e42478581d2357304a0b764f6c", "sha256": "f776154cb054b9cc02702fb4141f13314ad4c01de137c25f09b84fcd8872fe62" }, "downloads": -1, "filename": "pgl-2.1.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5c5662e42478581d2357304a0b764f6c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7916743, "upload_time": "2021-05-12T05:13:42", "upload_time_iso_8601": "2021-05-12T05:13:42.169653Z", "url": "https://files.pythonhosted.org/packages/b6/67/f5a3791a9c7f56f4e0c47b457dbc99eacfde56ec880f656543915254c967/pgl-2.1.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc7912ee413846c1b938edfb538898b3", "sha256": "05952ab97c2c822a7e71d466db07617c27d6df5789adf16900b9ecaa17ccec9c" }, "downloads": -1, "filename": "pgl-2.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cc7912ee413846c1b938edfb538898b3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7924628, "upload_time": "2021-05-12T05:16:42", "upload_time_iso_8601": "2021-05-12T05:16:42.171304Z", "url": "https://files.pythonhosted.org/packages/3a/07/b4ecc9563ba9513c5ad93621525c684d6d65440b190ae154e123db6e7335/pgl-2.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c24195c813e6c5064c5d226ca69ef266", "sha256": "dedf306329596d2e318399fc80290b18b6a92345440bcaa510a6d06acb707367" }, "downloads": -1, "filename": "pgl-2.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c24195c813e6c5064c5d226ca69ef266", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7916063, "upload_time": "2021-05-12T05:16:42", "upload_time_iso_8601": "2021-05-12T05:16:42.204816Z", "url": "https://files.pythonhosted.org/packages/f1/21/d0cec1e67ad72a8c7a5b5a432c5725d9089a877195c49f5e18c29457d6b0/pgl-2.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1c161a663d2a357170b03d01988ba8f", "sha256": "377355a5d1035cc7f41f98ef69e3238c903b58debd7a132fb14ccd1e640f1a19" }, "downloads": -1, "filename": "pgl-2.1.4-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b1c161a663d2a357170b03d01988ba8f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7917698, "upload_time": "2021-05-12T05:14:59", "upload_time_iso_8601": "2021-05-12T05:14:59.425911Z", "url": "https://files.pythonhosted.org/packages/5e/9b/849451c5c5c25531b98f358338a27f877782ea4af6802afce5943d47660f/pgl-2.1.4-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "b4b00eac2c30ada3c0a50578e5676231", "sha256": "f933ff872e48ea90d41c9480f53074faf74516616806c0298683c35d9b5805bd" }, "downloads": -1, "filename": "pgl-2.1.5-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "b4b00eac2c30ada3c0a50578e5676231", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7924298, "upload_time": "2021-07-10T15:34:40", "upload_time_iso_8601": "2021-07-10T15:34:40.347466Z", "url": "https://files.pythonhosted.org/packages/c0/3c/0fcaf4747fe8c6c68bad36fb8b44565bba30b86920b2f5f1c512f6700394/pgl-2.1.5-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e2dc3dd1e6c0f9e9849db95211ff6f7", "sha256": "f7cf87f161797daf22eac9a6f8f974a089f82a2e5f33f327c20da9cc0fd6c7d6" }, "downloads": -1, "filename": "pgl-2.1.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2e2dc3dd1e6c0f9e9849db95211ff6f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7922470, "upload_time": "2021-07-10T15:33:58", "upload_time_iso_8601": "2021-07-10T15:33:58.805310Z", "url": "https://files.pythonhosted.org/packages/ea/44/bb570357d297461afbd782c8360addd13ae5d5a97143e6082ae9d4b12833/pgl-2.1.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58a75ce8ced905769e525f5c159f83ea", "sha256": "00139cb154430c4ba546cd38b2179c3c1be2583a590fe36d358c1c47319c7666" }, "downloads": -1, "filename": "pgl-2.1.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "58a75ce8ced905769e525f5c159f83ea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7918118, "upload_time": "2021-07-10T15:34:28", "upload_time_iso_8601": "2021-07-10T15:34:28.164936Z", "url": "https://files.pythonhosted.org/packages/d3/33/cbae3ab8ed587f4c860c67652509af79ba793791646068264e83006b135c/pgl-2.1.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d90dce5abb888b19245f4c79c0976d46", "sha256": "cfaa43e6a2376e5dadf13b6b178a54e0ec24c0fb96ac851708d67362e23a5d4d" }, "downloads": -1, "filename": "pgl-2.1.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d90dce5abb888b19245f4c79c0976d46", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7917553, "upload_time": "2021-07-10T15:12:05", "upload_time_iso_8601": "2021-07-10T15:12:05.750999Z", "url": "https://files.pythonhosted.org/packages/7b/31/912e964235e7f22a21e96c005383f90c5b5dc97436652765545b73e7431d/pgl-2.1.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13524a9fa9d8ea8129d0d965222b7d5d", "sha256": "90332869579a8c6a2cb586086eb1b1a4b9aaf23a2a4b2fdac93856121fb2189c" }, "downloads": -1, "filename": "pgl-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "13524a9fa9d8ea8129d0d965222b7d5d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7924203, "upload_time": "2021-07-10T15:34:45", "upload_time_iso_8601": "2021-07-10T15:34:45.664187Z", "url": "https://files.pythonhosted.org/packages/a1/7f/cf25882901f9932e082bf73260e488a7195b6197c6a0b5252e75671e5926/pgl-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "878d2ff0bfb8c099ff9e71bee8858710", "sha256": "1d2dc21afad01d00414b5f70458e9cedaa8113af3bd44c2d8b269c283a747173" }, "downloads": -1, "filename": "pgl-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "878d2ff0bfb8c099ff9e71bee8858710", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7923173, "upload_time": "2021-07-10T15:35:43", "upload_time_iso_8601": "2021-07-10T15:35:43.937315Z", "url": "https://files.pythonhosted.org/packages/9d/f9/4db01530ec8e29732e0346dc3d602a103977af4da293ad45a728b6bd6937/pgl-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c84a88befdebcacef0c3b444594eb5c2", "sha256": "82a1ba222a197b3c5686fc30ee999f9a54d3aba1605841596f3d52f846e7eced" }, "downloads": -1, "filename": "pgl-2.1.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c84a88befdebcacef0c3b444594eb5c2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7918293, "upload_time": "2021-07-10T15:35:43", "upload_time_iso_8601": "2021-07-10T15:35:43.926919Z", "url": "https://files.pythonhosted.org/packages/4f/77/f7da1735b936a9ce1b199d7d0cf00379d8c53f3f6ae7ca93ec585fe2342f/pgl-2.1.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b734a98c100d6405125d450b7528f409", "sha256": "2087a79b207b0540267ae1c2664bcffa620f96cda3e9753bcd44babcd64cb148" }, "downloads": -1, "filename": "pgl-2.1.5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b734a98c100d6405125d450b7528f409", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7917602, "upload_time": "2021-07-10T15:13:18", "upload_time_iso_8601": "2021-07-10T15:13:18.869340Z", "url": "https://files.pythonhosted.org/packages/c5/17/ef8db2346d866daf663aef33da9672ed52703edfe8945dadd75796f70a9a/pgl-2.1.5-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2086faa77c09561e611e7d7ee3bd1a30", "sha256": "4df718da38e3180e4b1dbea5e467cc9634081a0d610659ecea1d25616a3216a0" }, "downloads": -1, "filename": "pgl-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2086faa77c09561e611e7d7ee3bd1a30", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7923759, "upload_time": "2021-07-10T15:34:27", "upload_time_iso_8601": "2021-07-10T15:34:27.764848Z", "url": "https://files.pythonhosted.org/packages/5f/d5/328df7910d30c4805396aa1b5f22a4c8609500876539bd392cb953c99f9a/pgl-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4d255be86d61d770bb6cbb097216910", "sha256": "158213ccba6f23d666d43d817829a11083d3de513866e8c771755f7e89b248e0" }, "downloads": -1, "filename": "pgl-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a4d255be86d61d770bb6cbb097216910", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7925358, "upload_time": "2021-07-10T15:35:38", "upload_time_iso_8601": "2021-07-10T15:35:38.135876Z", "url": "https://files.pythonhosted.org/packages/57/27/e9960c30543ac61d2a49c4c9c6b204d13c43fa628e7c2c8a07a49cdea84b/pgl-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d0496529212f33ce93dfb1589c16554", "sha256": "8f5f786ffd2fd3541b1e162fe8d46249433c211057be6e66552757e60dfe1d6e" }, "downloads": -1, "filename": "pgl-2.1.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8d0496529212f33ce93dfb1589c16554", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7916818, "upload_time": "2021-07-10T15:35:42", "upload_time_iso_8601": "2021-07-10T15:35:42.563048Z", "url": "https://files.pythonhosted.org/packages/64/0c/3a878d6b31e7592410fbf9f450521fd6e27db978491bb75ed10964f5e057/pgl-2.1.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9247648f12a8eb3b5ac3e38098238090", "sha256": "9b4d553c4fb0305973ed2bb1056d2a3ff6aa625e780732afa1335d160086eb55" }, "downloads": -1, "filename": "pgl-2.1.5-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "9247648f12a8eb3b5ac3e38098238090", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7918676, "upload_time": "2021-07-10T15:14:33", "upload_time_iso_8601": "2021-07-10T15:14:33.382900Z", "url": "https://files.pythonhosted.org/packages/ec/52/65c3c03649a9212097adf5fc2cd7b2d95f7dbe339a15c88d6fc6c4dfaa62/pgl-2.1.5-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "5317f86a5e77b17618162e8659fcc099", "sha256": "914f1b42a1365f45a58fc5df2cafa175a98272937957a420e4c12a051fc01764" }, "downloads": -1, "filename": "pgl-2.2.0-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "5317f86a5e77b17618162e8659fcc099", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8389742, "upload_time": "2021-12-15T08:16:48", "upload_time_iso_8601": "2021-12-15T08:16:48.265536Z", "url": "https://files.pythonhosted.org/packages/3d/9b/8bd58a15182386289ace810349437a2222cf964fcebdab919bc2ac428dda/pgl-2.2.0-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a8ec0890a2787b5960afd972ae57383", "sha256": "9c0d3f3a92ac75bda3a2de2a4e8aba331e2e715ba9071337804922bb0389f32c" }, "downloads": -1, "filename": "pgl-2.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1a8ec0890a2787b5960afd972ae57383", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8364847, "upload_time": "2021-12-15T08:21:34", "upload_time_iso_8601": "2021-12-15T08:21:34.329081Z", "url": "https://files.pythonhosted.org/packages/f2/ff/277e78940cf3258a862aa561ae0b78e8778f106bacc7053655815842ba98/pgl-2.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83fe0e79cce11d7d4edaf1aea586347a", "sha256": "33932e4dd85066142e57e850425311bc95bce650a8b1b6a72dbd348fb8af7bd7" }, "downloads": -1, "filename": "pgl-2.2.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "83fe0e79cce11d7d4edaf1aea586347a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8363602, "upload_time": "2021-12-15T08:28:11", "upload_time_iso_8601": "2021-12-15T08:28:11.840723Z", "url": "https://files.pythonhosted.org/packages/63/81/2b60350df1f51bf8405b2e63dff7f1c214f839f2806ed98dca941de32f82/pgl-2.2.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49466fa6f4e4d30629db6b111310545e", "sha256": "09be1f895f695e501fbeb593d342a747a05231de5b1d473e7568fb4e73092976" }, "downloads": -1, "filename": "pgl-2.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "49466fa6f4e4d30629db6b111310545e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7929926, "upload_time": "2021-12-15T06:43:07", "upload_time_iso_8601": "2021-12-15T06:43:07.013956Z", "url": "https://files.pythonhosted.org/packages/90/1e/ccb3b6e5800b4dd98dab3bb62811e26745a9b9f6e85a1b6e9b269b9f3721/pgl-2.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3e7441ed1932132b68ae4a97895c276", "sha256": "e8907613275c2989b5f78fcf52219a150a87e868a94fa4b05d4f0acd3848a7f7" }, "downloads": -1, "filename": "pgl-2.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c3e7441ed1932132b68ae4a97895c276", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8389737, "upload_time": "2021-12-15T08:33:13", "upload_time_iso_8601": "2021-12-15T08:33:13.951890Z", "url": "https://files.pythonhosted.org/packages/56/a0/cda0dff5ff10d7fad8f277967c331d8e15844b0532659d03b1f56e0e7093/pgl-2.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0dad5576a839f7ad3d970445365abd2", "sha256": "6a7e7831d53f09ffd137bb34743cbe54dd8d6c5249a62e8fbf020ae07916a06a" }, "downloads": -1, "filename": "pgl-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c0dad5576a839f7ad3d970445365abd2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8365658, "upload_time": "2021-12-15T08:38:55", "upload_time_iso_8601": "2021-12-15T08:38:55.785510Z", "url": "https://files.pythonhosted.org/packages/33/8d/a987e5d12b9dae3c84aed9cf4189fdd2bcddf9c0f66d7b061f860e4b5612/pgl-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95635315427e000ae79220ed66f1d50e", "sha256": "af917c66f6c5b6cf2621f181c0353b81190cfff003f098da5615acbae0323aab" }, "downloads": -1, "filename": "pgl-2.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "95635315427e000ae79220ed66f1d50e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8363632, "upload_time": "2021-12-15T08:43:35", "upload_time_iso_8601": "2021-12-15T08:43:35.465739Z", "url": "https://files.pythonhosted.org/packages/ec/6f/c73ee497e791ce96a9ac05c4c4e76c713ca2324b474fcb775fce3e7394a4/pgl-2.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "830c9bea60d4f07a89bc9ddc6992994c", "sha256": "d6e51f2f9ec5d6ea51a9796b34509f4580ec8b26b6ca2a24afc0673789ef5d89" }, "downloads": -1, "filename": "pgl-2.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "830c9bea60d4f07a89bc9ddc6992994c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7930062, "upload_time": "2021-12-15T06:44:23", "upload_time_iso_8601": "2021-12-15T06:44:23.858375Z", "url": "https://files.pythonhosted.org/packages/8a/00/36155becd0cece71c1c9eba9261da997d9bbf3bf444dd3e1a20159257e77/pgl-2.2.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed5df52b146b48d5c2095f0251329479", "sha256": "5a441a2022e1563119ba2ca17e963633f79afe13e0081c9c641e907244a5e4dd" }, "downloads": -1, "filename": "pgl-2.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ed5df52b146b48d5c2095f0251329479", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8389118, "upload_time": "2021-12-15T08:47:59", "upload_time_iso_8601": "2021-12-15T08:47:59.866051Z", "url": "https://files.pythonhosted.org/packages/ad/89/ba32e44a0e6e94e70890073a1da51db46751d83b757cbd9c574ce2b57c29/pgl-2.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1532212b2efc5ef535af8f0f1368835a", "sha256": "84a272df38f4f57c8f30a4c5a65be467bdf7ec3b5c306392bec29b3b4b1b55b2" }, "downloads": -1, "filename": "pgl-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1532212b2efc5ef535af8f0f1368835a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8368220, "upload_time": "2021-12-15T08:51:50", "upload_time_iso_8601": "2021-12-15T08:51:50.880332Z", "url": "https://files.pythonhosted.org/packages/bf/a6/058d49a2098fa15df289e2f0609721a9a73e2e7dac64f10276b7cfd56c42/pgl-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "843001fa7d4819ac02b0e97b95be5c0f", "sha256": "1b9ef0fd0df57f28fc206b30e3a0db2b7ffea29aae2623a6081da1e66f7693e6" }, "downloads": -1, "filename": "pgl-2.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "843001fa7d4819ac02b0e97b95be5c0f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8362440, "upload_time": "2021-12-15T08:56:35", "upload_time_iso_8601": "2021-12-15T08:56:35.638920Z", "url": "https://files.pythonhosted.org/packages/c0/60/2035660d6e2f276df04ec30f51861025e48e87db1c87b02a83cbfa86dbd2/pgl-2.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "277ac4fde9fe654335b12a56db5c4c16", "sha256": "c563edfc90bdddcb5f1abe9434529e536a1e674302c2e1978a86f53e427bba1e" }, "downloads": -1, "filename": "pgl-2.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "277ac4fde9fe654335b12a56db5c4c16", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7931264, "upload_time": "2021-12-15T06:45:37", "upload_time_iso_8601": "2021-12-15T06:45:37.562151Z", "url": "https://files.pythonhosted.org/packages/c7/8f/66a97e2830befb89db6cf37ce6dbf47508655de60396f7b30a09002f8b2f/pgl-2.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eca645386d6bc1fff91236108bf80482", "sha256": "1671c664262c74f7227121167d820103ffda5ef56ff17d345e73289976104af3" }, "downloads": -1, "filename": "pgl-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "eca645386d6bc1fff91236108bf80482", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8368198, "upload_time": "2021-12-15T09:01:23", "upload_time_iso_8601": "2021-12-15T09:01:23.992893Z", "url": "https://files.pythonhosted.org/packages/bf/c5/5f4e133fb45698564df004b2d0ad670d431510a3c80a49b7e1ad57614ce7/pgl-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c589b03e686cccefa6f7e981dc25bc9", "sha256": "5f7380507db0dcbbfbaceb2285c61ff8ef545f26a40068faa17461f946d82b1a" }, "downloads": -1, "filename": "pgl-2.2.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "4c589b03e686cccefa6f7e981dc25bc9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7931043, "upload_time": "2021-12-15T06:46:51", "upload_time_iso_8601": "2021-12-15T06:46:51.355539Z", "url": "https://files.pythonhosted.org/packages/2d/34/ac9aee3e6c32315f04064d066b72841bd5f3ed8ce881c8e732480a2fb195/pgl-2.2.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "83458cecc493f8e11c8c723ca3cdd80e", "sha256": "5f5c69ee2e94accd152e5130677efa209ece8c48f8253b9d860aa3373a67f1b2" }, "downloads": -1, "filename": "pgl-2.2.1-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "83458cecc493f8e11c8c723ca3cdd80e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8389722, "upload_time": "2021-12-16T09:48:11", "upload_time_iso_8601": "2021-12-16T09:48:11.109052Z", "url": "https://files.pythonhosted.org/packages/56/51/7c5289f690281d00161523e663c8f2a92d0e0aa91aeb7222df1f9137c805/pgl-2.2.1-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b494a24087c4907b4f52c192fe7c633", "sha256": "766906f90af6e758ab7d7824c2fcbb060b91ebc6f3c638e1dc2f48c6beed2daa" }, "downloads": -1, "filename": "pgl-2.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5b494a24087c4907b4f52c192fe7c633", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8364865, "upload_time": "2021-12-16T09:47:53", "upload_time_iso_8601": "2021-12-16T09:47:53.492241Z", "url": "https://files.pythonhosted.org/packages/40/63/1f2ccf94fb9c78766189686741c0178c3f504bc555868a64312c1d2b2da8/pgl-2.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d96439ffe4291ed63b7c025d832b9d5", "sha256": "0ec8e29142a074def61bf3cde289b3420980e3fb562f68d2c47dccca3d91e916" }, "downloads": -1, "filename": "pgl-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4d96439ffe4291ed63b7c025d832b9d5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8389745, "upload_time": "2021-12-16T09:48:12", "upload_time_iso_8601": "2021-12-16T09:48:12.904602Z", "url": "https://files.pythonhosted.org/packages/ef/4a/cb7cfee9bfe695f3687c480e87b88d2a401573d43c408646b6906e43192e/pgl-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97c3ff167f93c58dc4839c489aa2aa26", "sha256": "b911c6cd08504a759a6bc84a3fdb4cc7ea1f9cd727645bbc656a133b3d6f4b71" }, "downloads": -1, "filename": "pgl-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "97c3ff167f93c58dc4839c489aa2aa26", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8365674, "upload_time": "2021-12-16T09:47:53", "upload_time_iso_8601": "2021-12-16T09:47:53.045333Z", "url": "https://files.pythonhosted.org/packages/97/74/d5f51d1ef00c8d2f111657726e4a472cc5076e99ece5cfd4a140fad6c4a3/pgl-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed1e1ea551b18bad598307e20f4df8f8", "sha256": "075a40efcfc4d39eb6a88520156d97d4cf58b7fc6c7849798f9ee444249d28ca" }, "downloads": -1, "filename": "pgl-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ed1e1ea551b18bad598307e20f4df8f8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8389150, "upload_time": "2021-12-16T09:48:15", "upload_time_iso_8601": "2021-12-16T09:48:15.209158Z", "url": "https://files.pythonhosted.org/packages/0b/22/b8f1cc73b83585c71cc65c105d73421a4691389dfea0c4e02fe9792c544d/pgl-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "359f6c1f7b74807868c970db91180f33", "sha256": "c9b08a9c8de80b929c9dd65891614b035c6c05de26aca072b0c39a23fe4c9e26" }, "downloads": -1, "filename": "pgl-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "359f6c1f7b74807868c970db91180f33", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8368237, "upload_time": "2021-12-16T09:47:50", "upload_time_iso_8601": "2021-12-16T09:47:50.183909Z", "url": "https://files.pythonhosted.org/packages/ec/e6/de3f218161cd48206f19c5cabd090c3f3c1c500ec4530c823f4c0fce6f77/pgl-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63ca5f751803b03fb1e45d5b9e9b643d", "sha256": "00dcf306462ea578a3cac7ab958eea5f897f8ea617940d966fee2569f646745f" }, "downloads": -1, "filename": "pgl-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "63ca5f751803b03fb1e45d5b9e9b643d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8368215, "upload_time": "2021-12-16T09:47:54", "upload_time_iso_8601": "2021-12-16T09:47:54.152887Z", "url": "https://files.pythonhosted.org/packages/30/56/3bd9e6c24ef88875779339bd0c1e747a68f56e62c9a5c640c22afb3e38a5/pgl-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "a776cdd7acac2eb59dd54e8c057e0c4d", "sha256": "043c5eb3ade58b4eed189f476bfb7db3f31f56bab345f6cc6243b680c26e1dc0" }, "downloads": -1, "filename": "pgl-2.2.2-cp36-cp36m-macosx_10_9_intel.whl", "has_sig": false, "md5_digest": "a776cdd7acac2eb59dd54e8c057e0c4d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8389818, "upload_time": "2021-12-20T02:21:36", "upload_time_iso_8601": "2021-12-20T02:21:36.717273Z", "url": "https://files.pythonhosted.org/packages/b8/95/168c196497a12981e20215d3b5f8fe5a258dc8af4d2221d3cc9c7d76c38b/pgl-2.2.2-cp36-cp36m-macosx_10_9_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12a6443c65937902195b7eddb6cb8e37", "sha256": "a2d2ab3914e10b80f8f81396015eb2db5cfe595fb0b12c7ce79a65e28b1f77ef" }, "downloads": -1, "filename": "pgl-2.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "12a6443c65937902195b7eddb6cb8e37", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8364956, "upload_time": "2021-12-20T02:21:13", "upload_time_iso_8601": "2021-12-20T02:21:13.005810Z", "url": "https://files.pythonhosted.org/packages/b1/4b/020344b18daf16ffd641366be2de369a33a86409c7fc1852426d1c733443/pgl-2.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "add5227a9e798ace6d0c23bb9fac232c", "sha256": "a9fbf43890bd0ddc79705fa32f7c8de6c210e83c08d0d0b152a49ead678ff35f" }, "downloads": -1, "filename": "pgl-2.2.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "add5227a9e798ace6d0c23bb9fac232c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8363714, "upload_time": "2021-12-20T02:22:27", "upload_time_iso_8601": "2021-12-20T02:22:27.989842Z", "url": "https://files.pythonhosted.org/packages/95/88/a5cdf904c9d896ef2d2122365d4aa2feb3ed7a9403d9d3f43c3acccbc153/pgl-2.2.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b280cfe89e23eae067b8465f55f99826", "sha256": "9e1f7b90b84be7e933a11fb9a4d305aadbd1308e99adb3759940c1d03d0a4229" }, "downloads": -1, "filename": "pgl-2.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b280cfe89e23eae067b8465f55f99826", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8389836, "upload_time": "2021-12-20T02:21:19", "upload_time_iso_8601": "2021-12-20T02:21:19.349328Z", "url": "https://files.pythonhosted.org/packages/d3/81/59064b69fc60da2500517592efc83f177f0c65ab7338de2dd8f285e5a49d/pgl-2.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f88449fe280610798a0be5664d81369", "sha256": "1904f234d7ddc90950895aaf541db4e56c32bfb481d5ded0679f7807fa4558e7" }, "downloads": -1, "filename": "pgl-2.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8f88449fe280610798a0be5664d81369", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8365768, "upload_time": "2021-12-20T02:21:14", "upload_time_iso_8601": "2021-12-20T02:21:14.582986Z", "url": "https://files.pythonhosted.org/packages/39/9e/e9dae06bf860bf83ad9195e504b080517114677b1b88651fa215bf2f3b50/pgl-2.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a9f68e5f592d9bd428f121b0f019910", "sha256": "cc73f9bed21a8f580372f62201158be380a82179525b5f0de6386b3bc9541246" }, "downloads": -1, "filename": "pgl-2.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2a9f68e5f592d9bd428f121b0f019910", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8363742, "upload_time": "2021-12-20T02:22:21", "upload_time_iso_8601": "2021-12-20T02:22:21.716897Z", "url": "https://files.pythonhosted.org/packages/2a/9d/4d8dd95a453db7ba3170a19f8bec49abf65e060cd27c067c870ed22e1a06/pgl-2.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d59b01ae72c0da3e2ae555a8abbca294", "sha256": "c022a07eebb7fe05189043f05ddea21ec8eee63eb5abd67beca42a8a6eab1c59" }, "downloads": -1, "filename": "pgl-2.2.2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d59b01ae72c0da3e2ae555a8abbca294", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8389243, "upload_time": "2021-12-20T02:21:31", "upload_time_iso_8601": "2021-12-20T02:21:31.852885Z", "url": "https://files.pythonhosted.org/packages/44/84/b490a482595c579fbc155b9d1f20ff99fa2fc66c8ab733ec74788f525060/pgl-2.2.2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30092b47e5b058f00418521862f73ce4", "sha256": "4587c54ef35f5a07e62489c002fed8b8df0b51a1b5eaee71aedb5889b2e02a12" }, "downloads": -1, "filename": "pgl-2.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "30092b47e5b058f00418521862f73ce4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8368332, "upload_time": "2021-12-20T02:21:11", "upload_time_iso_8601": "2021-12-20T02:21:11.014222Z", "url": "https://files.pythonhosted.org/packages/da/33/4401f3e0268046026eb1bc7d5ebeb303e4c919f0dc5c2c4c5187674c9d58/pgl-2.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f44c33739f78fc7e496452f78f5820d9", "sha256": "91838f0d6533c406a1ddf4ca00435e2207c893a50d216792494e7070bd65fb7a" }, "downloads": -1, "filename": "pgl-2.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f44c33739f78fc7e496452f78f5820d9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8362551, "upload_time": "2021-12-20T02:22:16", "upload_time_iso_8601": "2021-12-20T02:22:16.974172Z", "url": "https://files.pythonhosted.org/packages/24/df/b6dac21d82cd3d65464e007a4403245d98f38b0ecdd87ed225ebdea8cae4/pgl-2.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6465bde89485e9f84ca8e85f5ef586e0", "sha256": "9815e4b4083694cb10e1a9fc8535c5a8c7d95a30b33772e4f9578dc94c1e039e" }, "downloads": -1, "filename": "pgl-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6465bde89485e9f84ca8e85f5ef586e0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8368309, "upload_time": "2021-12-20T02:21:15", "upload_time_iso_8601": "2021-12-20T02:21:15.046568Z", "url": "https://files.pythonhosted.org/packages/99/19/c0a511bb0f1cba234338d88a0495f2f357c6e94a0efca3ae7052948d38ae/pgl-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "54224e3be322353e56666bc5a5706229", "sha256": "7f01dca997aa8748375a1c9fd029e97875e8d748d0d4f32644932b1be07b27fa" }, "downloads": -1, "filename": "pgl-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "54224e3be322353e56666bc5a5706229", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 8387012, "upload_time": "2022-04-19T11:05:56", "upload_time_iso_8601": "2022-04-19T11:05:56.338323Z", "url": "https://files.pythonhosted.org/packages/b8/34/9c8e1d4b97fc9ad9543036c0d8885a39986fe6e85d5be047c82f102f9e87/pgl-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f297a0efa4245b55de8fc82cebf9f0d", "sha256": "3934e93daf30b48fc7a3e3c8e38c98e839d3602e0dd048c20f80d3d5cc5eed9b" }, "downloads": -1, "filename": "pgl-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5f297a0efa4245b55de8fc82cebf9f0d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 9186348, "upload_time": "2022-04-19T11:05:58", "upload_time_iso_8601": "2022-04-19T11:05:58.020364Z", "url": "https://files.pythonhosted.org/packages/10/e4/4943314e21d01a9c2b5ee2095dd9784c350d8a8f90f67bd18d5b976b05ca/pgl-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "116dd60c6d68fc2bde3a96f2627b3504", "sha256": "e5042794b633cf26cf3a6f6c002cca588fb1ce186e48a1243919cf5ce4e4f474" }, "downloads": -1, "filename": "pgl-2.2.3-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "116dd60c6d68fc2bde3a96f2627b3504", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8385026, "upload_time": "2022-04-19T11:05:59", "upload_time_iso_8601": "2022-04-19T11:05:59.527652Z", "url": "https://files.pythonhosted.org/packages/0f/96/38aa48a64ae31736ab8865d82bac801d2d0ac2378ab8003c95f7b7038301/pgl-2.2.3-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14d2379ff3ac063a8d1820eb88845846", "sha256": "74bf0938efc7bb754c8a4908fe6d342afa27c344281046a447f1055ab2f62cc3" }, "downloads": -1, "filename": "pgl-2.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "14d2379ff3ac063a8d1820eb88845846", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9159182, "upload_time": "2022-04-19T11:06:01", "upload_time_iso_8601": "2022-04-19T11:06:01.206722Z", "url": "https://files.pythonhosted.org/packages/b6/dc/2290562c78ea40bda3cc5fbd6743ae823ab412ffe956c3c48f844cdef264/pgl-2.2.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b3114622f55e27e7b88ad8d28f39a37", "sha256": "89ed7ae5360e7cbde770876a32eec6916abccee4600ea40b8e6468db59c430eb" }, "downloads": -1, "filename": "pgl-2.2.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "3b3114622f55e27e7b88ad8d28f39a37", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7930365, "upload_time": "2022-04-21T02:39:25", "upload_time_iso_8601": "2022-04-21T02:39:25.694845Z", "url": "https://files.pythonhosted.org/packages/1f/4f/c897eb2ac83f0bf119d633ab023a47939c2872d7e3cc606bc154daf35b9e/pgl-2.2.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "082b1ae4d487947423992b72eb56ccc5", "sha256": "025d5fa04034488b42fb23b7876575140f13d4c4655756ac60e4d020d1553336" }, "downloads": -1, "filename": "pgl-2.2.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "082b1ae4d487947423992b72eb56ccc5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8384979, "upload_time": "2022-04-19T11:06:03", "upload_time_iso_8601": "2022-04-19T11:06:03.316884Z", "url": "https://files.pythonhosted.org/packages/94/ce/98355de9eac23a5261b7cdecb3e9d6578a516065e1f6287e8f09b9dfb9fb/pgl-2.2.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c618183e9ae0e1f34b1e6d7456a788e", "sha256": "15075d368dbb2051babe0c84ec019d54c936acfb6a7517beeba98ad2d0575c46" }, "downloads": -1, "filename": "pgl-2.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3c618183e9ae0e1f34b1e6d7456a788e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9158638, "upload_time": "2022-04-21T03:09:12", "upload_time_iso_8601": "2022-04-21T03:09:12.406442Z", "url": "https://files.pythonhosted.org/packages/26/6c/a31852be23be41797fa7d633717e53ef491b987a98e6f809caa71420deef/pgl-2.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eefaf577069c9e5f39f37bef47e071ea", "sha256": "224661c1983bebc277a016d3b7c2e1f3947a4a724b2da98348e5b409aa203de9" }, "downloads": -1, "filename": "pgl-2.2.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "eefaf577069c9e5f39f37bef47e071ea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7924397, "upload_time": "2022-04-21T02:40:40", "upload_time_iso_8601": "2022-04-21T02:40:40.974784Z", "url": "https://files.pythonhosted.org/packages/c6/a5/e3866509be362d6f07ba70a1ffc8eb4e5e36425dcd742a5da4d201a91189/pgl-2.2.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d4bbe11d74c31bc1cbee5a303a2a437", "sha256": "17f4c95048f39011d425ef7198786b9ec4c825ad0f7c2ef014f39136e187892e" }, "downloads": -1, "filename": "pgl-2.2.3-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8d4bbe11d74c31bc1cbee5a303a2a437", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8385402, "upload_time": "2022-04-21T03:09:14", "upload_time_iso_8601": "2022-04-21T03:09:14.661766Z", "url": "https://files.pythonhosted.org/packages/9a/42/431e7d6f8dab2b8be4ff5deb1a0b1a9aa1e3732fc7e38d2c9d2bd29c8ad1/pgl-2.2.3-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ebd3f607e4c718fab1ccda9a288019f", "sha256": "8cdbcf7d0a3a70e1e790c9fa0e06df020525edb54ac7573606e5cf3f29f6c5f6" }, "downloads": -1, "filename": "pgl-2.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4ebd3f607e4c718fab1ccda9a288019f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9189592, "upload_time": "2022-04-21T03:09:16", "upload_time_iso_8601": "2022-04-21T03:09:16.765245Z", "url": "https://files.pythonhosted.org/packages/ed/8b/c852b38b99bcd8b06f01bd11641225c7f241f564a2fcac3d5419715f41f6/pgl-2.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da297d6c16df736f1c4d8589215c9edc", "sha256": "a80ea3ff59c2ab30d414da812089bdbf27072d7679d6ed2995e1fffb19066879" }, "downloads": -1, "filename": "pgl-2.2.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "da297d6c16df736f1c4d8589215c9edc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7925420, "upload_time": "2022-04-21T02:42:01", "upload_time_iso_8601": "2022-04-21T02:42:01.386473Z", "url": "https://files.pythonhosted.org/packages/2c/58/c6fc3c9f6ebbbaa875d01b88ce0324d2602b474f78bdaee5ad453dbc95ae/pgl-2.2.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19f078e344c081cc7a15c9cc0b7371b1", "sha256": "2f0cadfc0bbbe9be3122034c61874beadf997f85d3cc6002a787701e775d3186" }, "downloads": -1, "filename": "pgl-2.2.3-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "19f078e344c081cc7a15c9cc0b7371b1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8387001, "upload_time": "2022-04-21T03:09:18", "upload_time_iso_8601": "2022-04-21T03:09:18.574504Z", "url": "https://files.pythonhosted.org/packages/c2/af/bab83c0b0d681813021012bd0598031b4df0654a51f71fac800ae9f7993d/pgl-2.2.3-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47b9b2024560adcbb70161b30afab7c8", "sha256": "9370d28a12a8526833a29104ce18a4cfb1de1330956188a2998ee64c4538bda8" }, "downloads": -1, "filename": "pgl-2.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "47b9b2024560adcbb70161b30afab7c8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9185675, "upload_time": "2022-04-21T03:09:20", "upload_time_iso_8601": "2022-04-21T03:09:20.413045Z", "url": "https://files.pythonhosted.org/packages/2e/c0/b1898c2a0f3e22a952b962cd488b79ed5eb19ffbb3f7080cc397b4491f15/pgl-2.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6c611c8b29afe0504f2f7dcf93b0a35", "sha256": "072c33473e5f2dabedec4792c2018692a9f54713d839900112c10ab1ca196e92" }, "downloads": -1, "filename": "pgl-2.2.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "d6c611c8b29afe0504f2f7dcf93b0a35", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7925436, "upload_time": "2022-04-21T02:43:18", "upload_time_iso_8601": "2022-04-21T02:43:18.887139Z", "url": "https://files.pythonhosted.org/packages/2f/45/5a6f242de8c7a387abee1248557b56d78e676abd222d2670b1fb54fc5a6f/pgl-2.2.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "2.2.3.post0": [ { "comment_text": "", "digests": { "md5": "98127207a17d26cde39accf0257aed54", "sha256": "0c452894f074db3f4c20a9cb2114d0fb8ff6cd1e018b44c39f37ca5cff7f1b7d" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "98127207a17d26cde39accf0257aed54", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8385115, "upload_time": "2022-04-21T09:17:27", "upload_time_iso_8601": "2022-04-21T09:17:27.693590Z", "url": "https://files.pythonhosted.org/packages/84/6e/0b574576017b9fdfd017333d52d1fdbacc09b1a611d27e4254cf0693f45f/pgl-2.2.3.post0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46e1b1987c705c42212c132f9d401642", "sha256": "197c3b5a338716548a43dc0c325af87e5350206c417582bcc209b709151c3ff9" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "46e1b1987c705c42212c132f9d401642", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9159276, "upload_time": "2022-04-21T09:17:29", "upload_time_iso_8601": "2022-04-21T09:17:29.791681Z", "url": "https://files.pythonhosted.org/packages/ae/0b/5770c2003405b69e2560b70e200a78724afe13d085c33ff7ec3333ebfd75/pgl-2.2.3.post0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98efb746a3480b4dcd631c748724d691", "sha256": "fdd415098abeb5752a4d06b6c9dcc0b0e5f97e13670de0af2dc72d7d26ba885b" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "98efb746a3480b4dcd631c748724d691", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7930446, "upload_time": "2022-04-21T08:39:32", "upload_time_iso_8601": "2022-04-21T08:39:32.034220Z", "url": "https://files.pythonhosted.org/packages/35/88/e88c948fc3a736a74bbf021870ff167485f6627ef691d7ac308c9e6a3e5f/pgl-2.2.3.post0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfc1be2d6ca91bcd4024d09fb0527389", "sha256": "ea92ccde37da57d4be1fe6a2c0892ad2964eaa7860a952f70a9ed3003f764705" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "dfc1be2d6ca91bcd4024d09fb0527389", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8385048, "upload_time": "2022-04-21T09:17:31", "upload_time_iso_8601": "2022-04-21T09:17:31.948820Z", "url": "https://files.pythonhosted.org/packages/6c/d4/e59abfbb61e4af4e547cab137678e53035101a3d5abdbd6ac6de63b3f6e5/pgl-2.2.3.post0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24644aa1378fe0167f47c87b7128cbea", "sha256": "cbde416956341b4c78aace99bc79a76537492045dfacbfb22f59788bc970ce47" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "24644aa1378fe0167f47c87b7128cbea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9158736, "upload_time": "2022-04-21T09:17:34", "upload_time_iso_8601": "2022-04-21T09:17:34.659604Z", "url": "https://files.pythonhosted.org/packages/6d/2d/8f3dd46371f4c02d71c2d41f2fe64a063a53bf232466df011fef399c16c8/pgl-2.2.3.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22506aad0441c41a5e91998ac16249d2", "sha256": "21e9ae90dfafc57b8a3d9b2dee385403a9ac1fc6330c3ef518e3a3a2e2ae9a45" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "22506aad0441c41a5e91998ac16249d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7924477, "upload_time": "2022-04-21T08:40:46", "upload_time_iso_8601": "2022-04-21T08:40:46.649852Z", "url": "https://files.pythonhosted.org/packages/63/e4/99106063ed082babf9f157c22013af078f5540e6b5f6abd20b75384c963a/pgl-2.2.3.post0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67afe27f7ef584f04bfcb7c66a8627a9", "sha256": "c2e29528c9953302e4700b9d070f8dc212f3a5677722fe3bb59ead211bb9454b" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "67afe27f7ef584f04bfcb7c66a8627a9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8385489, "upload_time": "2022-04-21T09:17:36", "upload_time_iso_8601": "2022-04-21T09:17:36.655380Z", "url": "https://files.pythonhosted.org/packages/af/05/6e64d76d243cec34c8cad15e543f28bb9516ed07e89a00ffb7ec482c362a/pgl-2.2.3.post0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c848b7cb68eb039c3bb02e9113ec3cbd", "sha256": "ed5b2402fc56859b77fda14bd1f9d71ac2ac9eeadc49e892b5fd5e6ef0b4e0ff" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c848b7cb68eb039c3bb02e9113ec3cbd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9189629, "upload_time": "2022-04-21T09:17:39", "upload_time_iso_8601": "2022-04-21T09:17:39.249425Z", "url": "https://files.pythonhosted.org/packages/9e/d1/b8cc6462e0a26eebb347dfd532a6d57ea8966eddf0a39a7984caadf43dde/pgl-2.2.3.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b19113acdb6252015f80503cfd5328d", "sha256": "299e0c7f8c9383c255cdb3e6e91065edc04887d9c0e3e94839df566b6869780e" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "6b19113acdb6252015f80503cfd5328d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7925501, "upload_time": "2022-04-21T08:42:00", "upload_time_iso_8601": "2022-04-21T08:42:00.820579Z", "url": "https://files.pythonhosted.org/packages/a9/6b/fb380978c1870445d28a2fd96030929fc8aa73231de843c074f927b1e229/pgl-2.2.3.post0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a06a2860635590ce9a7a1211f06dbb0", "sha256": "b6661ce6d7d6e5835233c8c9256ea015d9a155e8e3a649d4c96dffaa76251b42" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2a06a2860635590ce9a7a1211f06dbb0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8387092, "upload_time": "2022-04-21T09:17:41", "upload_time_iso_8601": "2022-04-21T09:17:41.451906Z", "url": "https://files.pythonhosted.org/packages/ee/e5/fa9c83bd384ed486856e2781ffbc3e016d23acb710fbbec32581e55b382a/pgl-2.2.3.post0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8a8ac23a2d0d6ae1cbbb667428d1411", "sha256": "f95b5b2412d92b92ead03e3b46fd160838376eb5f9594c68d8ec19d92bcdf3c2" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a8a8ac23a2d0d6ae1cbbb667428d1411", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9185777, "upload_time": "2022-04-21T09:17:43", "upload_time_iso_8601": "2022-04-21T09:17:43.036658Z", "url": "https://files.pythonhosted.org/packages/96/f7/a769e543a9b6c568c17d36eae32488d8366a987e4b27a445c6b9ab62fbab/pgl-2.2.3.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e41e06b08eb12ef0a4335a6be69a8a8d", "sha256": "b6d0d6ad4b9d21764660bca56812ca56906abad0ef342a13ed6cfa1756c7171e" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "e41e06b08eb12ef0a4335a6be69a8a8d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7925515, "upload_time": "2022-04-21T08:43:20", "upload_time_iso_8601": "2022-04-21T08:43:20.802462Z", "url": "https://files.pythonhosted.org/packages/37/64/848793eaece62322290739eab3c8bea784036886cfc29c22746784af7cfc/pgl-2.2.3.post0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "98127207a17d26cde39accf0257aed54", "sha256": "0c452894f074db3f4c20a9cb2114d0fb8ff6cd1e018b44c39f37ca5cff7f1b7d" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "98127207a17d26cde39accf0257aed54", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8385115, "upload_time": "2022-04-21T09:17:27", "upload_time_iso_8601": "2022-04-21T09:17:27.693590Z", "url": "https://files.pythonhosted.org/packages/84/6e/0b574576017b9fdfd017333d52d1fdbacc09b1a611d27e4254cf0693f45f/pgl-2.2.3.post0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46e1b1987c705c42212c132f9d401642", "sha256": "197c3b5a338716548a43dc0c325af87e5350206c417582bcc209b709151c3ff9" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "46e1b1987c705c42212c132f9d401642", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9159276, "upload_time": "2022-04-21T09:17:29", "upload_time_iso_8601": "2022-04-21T09:17:29.791681Z", "url": "https://files.pythonhosted.org/packages/ae/0b/5770c2003405b69e2560b70e200a78724afe13d085c33ff7ec3333ebfd75/pgl-2.2.3.post0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98efb746a3480b4dcd631c748724d691", "sha256": "fdd415098abeb5752a4d06b6c9dcc0b0e5f97e13670de0af2dc72d7d26ba885b" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "98efb746a3480b4dcd631c748724d691", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7930446, "upload_time": "2022-04-21T08:39:32", "upload_time_iso_8601": "2022-04-21T08:39:32.034220Z", "url": "https://files.pythonhosted.org/packages/35/88/e88c948fc3a736a74bbf021870ff167485f6627ef691d7ac308c9e6a3e5f/pgl-2.2.3.post0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfc1be2d6ca91bcd4024d09fb0527389", "sha256": "ea92ccde37da57d4be1fe6a2c0892ad2964eaa7860a952f70a9ed3003f764705" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "dfc1be2d6ca91bcd4024d09fb0527389", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8385048, "upload_time": "2022-04-21T09:17:31", "upload_time_iso_8601": "2022-04-21T09:17:31.948820Z", "url": "https://files.pythonhosted.org/packages/6c/d4/e59abfbb61e4af4e547cab137678e53035101a3d5abdbd6ac6de63b3f6e5/pgl-2.2.3.post0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24644aa1378fe0167f47c87b7128cbea", "sha256": "cbde416956341b4c78aace99bc79a76537492045dfacbfb22f59788bc970ce47" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "24644aa1378fe0167f47c87b7128cbea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9158736, "upload_time": "2022-04-21T09:17:34", "upload_time_iso_8601": "2022-04-21T09:17:34.659604Z", "url": "https://files.pythonhosted.org/packages/6d/2d/8f3dd46371f4c02d71c2d41f2fe64a063a53bf232466df011fef399c16c8/pgl-2.2.3.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22506aad0441c41a5e91998ac16249d2", "sha256": "21e9ae90dfafc57b8a3d9b2dee385403a9ac1fc6330c3ef518e3a3a2e2ae9a45" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "22506aad0441c41a5e91998ac16249d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7924477, "upload_time": "2022-04-21T08:40:46", "upload_time_iso_8601": "2022-04-21T08:40:46.649852Z", "url": "https://files.pythonhosted.org/packages/63/e4/99106063ed082babf9f157c22013af078f5540e6b5f6abd20b75384c963a/pgl-2.2.3.post0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67afe27f7ef584f04bfcb7c66a8627a9", "sha256": "c2e29528c9953302e4700b9d070f8dc212f3a5677722fe3bb59ead211bb9454b" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "67afe27f7ef584f04bfcb7c66a8627a9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8385489, "upload_time": "2022-04-21T09:17:36", "upload_time_iso_8601": "2022-04-21T09:17:36.655380Z", "url": "https://files.pythonhosted.org/packages/af/05/6e64d76d243cec34c8cad15e543f28bb9516ed07e89a00ffb7ec482c362a/pgl-2.2.3.post0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c848b7cb68eb039c3bb02e9113ec3cbd", "sha256": "ed5b2402fc56859b77fda14bd1f9d71ac2ac9eeadc49e892b5fd5e6ef0b4e0ff" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c848b7cb68eb039c3bb02e9113ec3cbd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 9189629, "upload_time": "2022-04-21T09:17:39", "upload_time_iso_8601": "2022-04-21T09:17:39.249425Z", "url": "https://files.pythonhosted.org/packages/9e/d1/b8cc6462e0a26eebb347dfd532a6d57ea8966eddf0a39a7984caadf43dde/pgl-2.2.3.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b19113acdb6252015f80503cfd5328d", "sha256": "299e0c7f8c9383c255cdb3e6e91065edc04887d9c0e3e94839df566b6869780e" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "6b19113acdb6252015f80503cfd5328d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7925501, "upload_time": "2022-04-21T08:42:00", "upload_time_iso_8601": "2022-04-21T08:42:00.820579Z", "url": "https://files.pythonhosted.org/packages/a9/6b/fb380978c1870445d28a2fd96030929fc8aa73231de843c074f927b1e229/pgl-2.2.3.post0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a06a2860635590ce9a7a1211f06dbb0", "sha256": "b6661ce6d7d6e5835233c8c9256ea015d9a155e8e3a649d4c96dffaa76251b42" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2a06a2860635590ce9a7a1211f06dbb0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8387092, "upload_time": "2022-04-21T09:17:41", "upload_time_iso_8601": "2022-04-21T09:17:41.451906Z", "url": "https://files.pythonhosted.org/packages/ee/e5/fa9c83bd384ed486856e2781ffbc3e016d23acb710fbbec32581e55b382a/pgl-2.2.3.post0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8a8ac23a2d0d6ae1cbbb667428d1411", "sha256": "f95b5b2412d92b92ead03e3b46fd160838376eb5f9594c68d8ec19d92bcdf3c2" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a8a8ac23a2d0d6ae1cbbb667428d1411", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 9185777, "upload_time": "2022-04-21T09:17:43", "upload_time_iso_8601": "2022-04-21T09:17:43.036658Z", "url": "https://files.pythonhosted.org/packages/96/f7/a769e543a9b6c568c17d36eae32488d8366a987e4b27a445c6b9ab62fbab/pgl-2.2.3.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e41e06b08eb12ef0a4335a6be69a8a8d", "sha256": "b6d0d6ad4b9d21764660bca56812ca56906abad0ef342a13ed6cfa1756c7171e" }, "downloads": -1, "filename": "pgl-2.2.3.post0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "e41e06b08eb12ef0a4335a6be69a8a8d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7925515, "upload_time": "2022-04-21T08:43:20", "upload_time_iso_8601": "2022-04-21T08:43:20.802462Z", "url": "https://files.pythonhosted.org/packages/37/64/848793eaece62322290739eab3c8bea784036886cfc29c22746784af7cfc/pgl-2.2.3.post0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }