{ "info": { "author": "RGF-team", "author_email": "nannyakannya@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "|License| |Python Versions| |PyPI Version| |Downloads|\n\nrgf\\_python\n===========\n\nThe wrapper of machine learning algorithm **Regularized Greedy Forest (RGF)** `[1] <#references>`__ for Python.\n\nFeatures\n--------\n\n**Scikit-learn interface and possibility of usage for multiclass classification problem.**\n\n**rgf\\_python** contains both `original RGF `__ from the paper `[1] <#references>`__ and `FastRGF `__ implementations.\n\nNote that FastRGF is developed to be used with large (and sparse) datasets, so on small datasets it often shows poorer performance compared to vanilla RGF.\n\nOriginal RGF implementations are available only for regression and binary classification, but **rgf\\_python** is also available for **multiclass classification** by \"One-vs-Rest\" method.\n\nExamples\n--------\n\n.. code:: python\n\n from sklearn import datasets\n from sklearn.utils.validation import check_random_state\n from sklearn.model_selection import StratifiedKFold, cross_val_score\n from rgf.sklearn import RGFClassifier\n\n iris = datasets.load_iris()\n rng = check_random_state(0)\n perm = rng.permutation(iris.target.size)\n iris.data = iris.data[perm]\n iris.target = iris.target[perm]\n\n rgf = RGFClassifier(max_leaf=400,\n algorithm=\"RGF_Sib\",\n test_interval=100,\n verbose=True)\n\n n_folds = 3\n\n rgf_scores = cross_val_score(rgf,\n iris.data,\n iris.target,\n cv=StratifiedKFold(n_folds))\n\n rgf_score = sum(rgf_scores)/n_folds\n print('RGF Classifier score: {0:.5f}'.format(rgf_score))\n\nMore examples of using RGF estimators could be found `here `__.\n\nExamples of using FastRGF estimators could be found `here `__.\n\nSoftware Requirements\n---------------------\n\n- Python (2.7 or >= 3.5)\n- scikit-learn (>= 0.18)\n\nInstallation\n------------\n\nFrom `PyPI `__ using ``pip``:\n\n::\n\n pip install rgf_python\n\nor from `GitHub `__:\n\n::\n\n git clone https://github.com/RGF-team/rgf.git\n cd rgf/python-package\n python setup.py install\n\nMacOS users, **rgf\\_python** after the ``3.5.0`` version is built with **g++-9** and cannot be launched on systems with **g++-8** and earlier. You should update your **g++** compiler if you don't want to build from sources or install **rgf\\_python** ``3.5.0`` from PyPI which is the last version built with **g++-8**.\n\nMacOS users, **rgf\\_python** after the ``3.1.0`` version is built with **g++-8** and cannot be launched on systems with **g++-7** and earlier. You should update your **g++** compiler if you don't want to build from sources or install **rgf\\_python** ``3.1.0`` from PyPI which is the last version built with **g++-7**.\n\nIf you have any problems while installing by methods listed above, you should *build RGF and FastRGF executable files from binaries on your own and place compiled executable files* into directory which is included in environmental variable **'PATH'** or into directory with installed package. Alternatively, you may specify actual locations of executable files and directory for placing temp files by corresponding flags in configuration file ``.rgfrc``, which you should create into your home directory. The default values are the following: ``rgf_location=$HOME/rgf`` (``$HOME/rgf.exe`` for Windows), ``fastrgf_location=$HOME``, ``temp_location=tempfile.gettempdir()`` (here is more details about `tempfile.gettempdir() `__). Please take a look at the example of the ``.rgfrc`` file:\n\n::\n\n rgf_location=C:/Program Files/RGF/bin/rgf.exe\n fastrgf_location=C:/Program Files/FastRGF/bin\n temp_location=C:/Program Files/RGF/temp\n\nNote that while ``rgf_location`` should point to a concrete RGF executable **file**, ``fastrgf_location`` should point to a **folder** in which ``forest_train.exe`` and ``forest_predict.exe`` FastRGF executable files are located.\n\nAlso, you may directly specify installation without automatic compilation:\n\n::\n\n pip install rgf_python --install-option=--nocompilation\n\nor\n\n::\n\n git clone https://github.com/RGF-team/rgf.git\n cd rgf/python-package\n \u00a0 python setup.py install --nocompilation\n\n``sudo`` (or administrator privileges in Windows) may be needed to perform installation commands.\n\nDetailed guides how you can build executable files of RGF and FastRGF from source files could be found in their folders `here `__ and `here `__ respectively.\n\nDocker image\n''''''''''''\n\nWe provide `docker image `__ with installed **rgf\\_python**.\n\n::\n\n # Run docker image\n docker run -it rgfteam/rgf /bin/bash\n # Run RGF example\n python ./rgf/python-package/examples/RGF/comparison_RGF_and_RF_regressors_on_boston_dataset.py\n # Run FastRGF example\n python ./rgf/python-package/examples/FastRGF/FastRGF_classifier_on_iris_dataset.py\n\nTuning Hyperparameters\n----------------------\n\nRGF\n'''\n\nYou can tune hyperparameters as follows.\n\n- *max\\_leaf*: Appropriate values are data-dependent and usually varied from 1000 to 10000.\n- *test\\_interval*: For efficiency, it must be either multiple or divisor of 100 (default value of the optimization interval).\n- *algorithm*: You can select \"RGF\", \"RGF Opt\" or \"RGF Sib\".\n- *loss*: You can select \"LS\", \"Log\", \"Expo\" or \"Abs\".\n- *reg\\_depth*: Must be no smaller than 1. Meant for being used with *algorithm* = \"RGF Opt\" or \"RGF Sib\".\n- *l2*: Either 1, 0.1, or 0.01 often produces good results though with exponential loss (*loss* = \"Expo\") and logistic loss (*loss* = \"Log\"), some data requires smaller values such as 1e-10 or 1e-20.\n- *sl2*: Default value is equal to *l2*. On some data, *l2*/100 works well.\n- *normalize*: If turned on, training targets are normalized so that the average becomes zero.\n- *min\\_samples\\_leaf*: Smaller values may slow down training. Too large values may degrade model accuracy.\n- *n\\_iter*: Number of iterations of coordinate descent to optimize weights.\n- *n\\_tree\\_search*: Number of trees to be searched for the nodes to split. The most recently grown trees are searched first.\n- *opt\\_interval*: Weight optimization interval in terms of the number of leaf nodes.\n- *learning\\_rate*: Step size of Newton updates used in coordinate descent to optimize weights.\n\nDetailed instruction of tuning hyperparameters is `here `__.\n\nFastRGF\n'''''''\n\n- *n\\_estimators*: Typical range is [100, 10000], and a typical value is 1000.\n- *max\\_depth*: Controls the tree depth.\n- *max\\_leaf*: Controls the tree size.\n- *tree\\_gain\\_ratio*: Controls when to start a new tree.\n- *min\\_samples\\_leaf*: Controls the tree growth process.\n- *loss*: You can select \"LS\", \"MODLS\" or \"LOGISTIC\".\n- *l1*: Typical range is [0, 1000], and a large value induces sparsity.\n- *l2*: Use a relatively large value such as 1000 or 10000. The larger value is, the larger *n\\_estimators* you need to use: the resulting accuracy is often better with a longer training time.\n- *opt\\_algorithm*: You can select \"rgf\" or \"epsilon-greedy\".\n- *learning\\_rate*: Step size of epsilon-greedy boosting. Meant for being used with *opt\\_algorithm* = \"epsilon-greedy\".\n- *max\\_bin*: Typical range for dense data is [10, 65000] and for sparse data is [10, 250].\n- *min\\_child\\_weight*: Controls the process of discretization (creating bins).\n- *data\\_l2*: Controls the degree of L2 regularization for discretization (creating bins).\n- *sparse\\_max\\_features*: Typical range is [1000, 10000000]. Meant for being used with sparse data.\n- *sparse\\_min\\_occurences*: Controls which feature will be selected. Meant for being used with sparse data.\n\nUsing at Kaggle Kernels\n-----------------------\n\nKaggle Kernels support **rgf\\_python**. Please see `this page `__.\n\nTroubleshooting\n---------------\n\nIf you meet any error, please try to run `test_rgf_python.py `__ to confirm successful package installation.\n\nThen feel free to `open new issue `__.\n\nKnown Issues\n''''''''''''\n\n* FastRGF crashes if training dataset is too small (#data < 28). (`rgf#92 `__)\n\n* **FastRGFClassifier** and **FastRGFRegressor** do not provide any built-in method to calculate feature importances. (`rgf#109 `__)\n\nFAQ\n'''\n\n* Q: Temporary files use too much space on my hard drive (Kaggle Kernels disc space is exhausted while fitting **rgf\\_python** model).\n\n A: Please see `rgf#75 `__.\n\n* Q: GridSearchCV/RandomizedSearchCV/RFECV or other scikit-learn tool with ``n_jobs`` parameter hangs/freezes/crashes when runs with **rgf\\_python** estimator.\n\n A: This is a known general problem of multiprocessing in Python. You should set ``n_jobs=1`` parameter of either estimator or scikit-learn tool.\n\nLicense\n-------\n\n**rgf\\_python** is distributed under the **MIT license**. Please read file `LICENSE `__ for more information.\n\nMany thanks to Rie Johnson and Tong Zhang (the authors of RGF).\n\nOther\n-----\n\nShamelessly, some part of the implementation is based on the following `code `__. Thanks!\n\nReferences\n----------\n\n[1] Rie Johnson and Tong Zhang. `Learning Nonlinear Functions Using Regularized Greedy Forest. `__ IEEE Transactions on Pattern Analysis and Machine Intelligence, 36(5):942-954, May 2014\n\n.. |License| image:: https://img.shields.io/badge/license-MIT-blue.svg\n :target: https://github.com/RGF-team/rgf/blob/master/python-package/LICENSE\n.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/rgf_python.svg\n :target: https://pypi.org/project/rgf_python/\n.. |PyPI Version| image:: https://img.shields.io/pypi/v/rgf_python.svg\n :target: https://pypi.org/project/rgf_python\n.. |Downloads| image:: https://pepy.tech/badge/rgf-python\n :target: https://pepy.tech/project/rgf-python\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/RGF-team/rgf/tree/master/python-package", "keywords": "Machine Learning", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "rgf-python", "package_url": "https://pypi.org/project/rgf-python/", "platform": "", "project_url": "https://pypi.org/project/rgf-python/", "project_urls": { "Homepage": "https://github.com/RGF-team/rgf/tree/master/python-package" }, "release_url": "https://pypi.org/project/rgf-python/3.6.0/", "requires_dist": [ "scikit-learn (>=0.18)" ], "requires_python": "", "summary": "Scikit-learn Wrapper for Regularized Greedy Forest", "version": "3.6.0" }, "last_serial": 5377905, "releases": { "1.2.0": [ { "comment_text": "", "digests": { "md5": "ca188c4be3e560c5708c0248d4766fdc", "sha256": "a029c6a5bad9391cf3e2c0b9a5cf98c6e34a760de4774460be81d92e1dd853a9" }, "downloads": -1, "filename": "rgf_python-1.2.0.tar.gz", "has_sig": false, "md5_digest": "ca188c4be3e560c5708c0248d4766fdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9642, "upload_time": "2017-06-29T12:05:24", "url": "https://files.pythonhosted.org/packages/38/b9/cccb61463017359d3d725ee84d4900b5f90f4ed60e4b9946bd084161f986/rgf_python-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "36fdf1d3c3efa1cc2a202d3db63537ff", "sha256": "e168687745424520c73cc614557a44f0bb09678374b15f1448a4d0f77280a918" }, "downloads": -1, "filename": "rgf_python-1.2.1.tar.gz", "has_sig": false, "md5_digest": "36fdf1d3c3efa1cc2a202d3db63537ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9654, "upload_time": "2017-06-29T12:10:04", "url": "https://files.pythonhosted.org/packages/a8/82/620c00f985bf37e8a500f8d55d9dbae5fbd0a457e1032d3bb9678b0681a5/rgf_python-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "93b7d65040cb7ff5fd6eb5945efbf0f2", "sha256": "56609b18c3d0fc5c01c9044770b0f075d10436d1c796df50ed06888a573688c4" }, "downloads": -1, "filename": "rgf_python-1.2.2.tar.gz", "has_sig": false, "md5_digest": "93b7d65040cb7ff5fd6eb5945efbf0f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9478, "upload_time": "2017-06-29T12:11:49", "url": "https://files.pythonhosted.org/packages/f1/d5/216df0c9d30b2126dd658547d1ec0f6f1b883202d50298c270f95645e1c1/rgf_python-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "f2c2a79515bf251b9ab9eaa4c76e1bc9", "sha256": "2125ff16890ac93d9181c9f4b0b701c7b12de05a8df53aa4b7daa5c883d2c5f7" }, "downloads": -1, "filename": "rgf_python-1.2.3.tar.gz", "has_sig": false, "md5_digest": "f2c2a79515bf251b9ab9eaa4c76e1bc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9743, "upload_time": "2017-06-29T12:13:46", "url": "https://files.pythonhosted.org/packages/c6/64/324ad7f9b043e6094e548773dccb10fc363bf920a99fd1d7da93be0f3a4f/rgf_python-1.2.3.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "e72a07ce2d0668bbd59a46b7ba6ba86a", "sha256": "4156040e8db8a16c397518f4dbb78f5a309b9c964355ed3f4362d4a0fdf11583" }, "downloads": -1, "filename": "rgf_python-1.2.5.tar.gz", "has_sig": false, "md5_digest": "e72a07ce2d0668bbd59a46b7ba6ba86a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9763, "upload_time": "2017-06-29T12:18:49", "url": "https://files.pythonhosted.org/packages/19/87/b1c5c72c589059b89c397092ab6bb3105e499982274ae7d6e5e53d01c5a3/rgf_python-1.2.5.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "f0fdf0f2fa278db3b8d6a3828b79887c", "sha256": "43d6edf700eaa720340f2aa78a8e9c7ea0468eb0df99bcd82a1c2d74e940dc85" }, "downloads": -1, "filename": "rgf_python-1.3.0.tar.gz", "has_sig": false, "md5_digest": "f0fdf0f2fa278db3b8d6a3828b79887c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9770, "upload_time": "2017-06-29T13:37:01", "url": "https://files.pythonhosted.org/packages/8f/5f/81730e1aeaa54e6038902d7b0b464ffcd6fe8dfbdad93b9d010deef65a59/rgf_python-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "ed6c3c27d1f18cf74c11678e77ff1d6e", "sha256": "7ff3738cb08356a055ccaa395c453d35088dfe61ca2b5f02e82da9fbea5439f1" }, "downloads": -1, "filename": "rgf_python-1.3.1.tar.gz", "has_sig": false, "md5_digest": "ed6c3c27d1f18cf74c11678e77ff1d6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10185, "upload_time": "2017-07-03T14:27:56", "url": "https://files.pythonhosted.org/packages/e2/36/767ad3555af45f69171bfd1d997ab1054871e61aff6b76a900765eb7dec2/rgf_python-1.3.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "c39a8b8968b1a09bc05e4330aa676df2", "sha256": "e40bf5cd76fe1515e5f0a7ea7fcdb5a9505405d5626b177ec8d21826313f81dc" }, "downloads": -1, "filename": "rgf_python-2.0.0.tar.gz", "has_sig": false, "md5_digest": "c39a8b8968b1a09bc05e4330aa676df2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173791, "upload_time": "2017-08-19T14:24:39", "url": "https://files.pythonhosted.org/packages/3a/4d/e4a7d32aad0400ace51a8005505fd5f0a1ce4e45199899989ea7a65e2c47/rgf_python-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "7b0d8c11b7dd9277453bae298434d0c8", "sha256": "bd4f73a142680e719c3be80375ba0447064c6e1e067a0a35de01ed2e042dc9ef" }, "downloads": -1, "filename": "rgf_python-2.0.1.tar.gz", "has_sig": false, "md5_digest": "7b0d8c11b7dd9277453bae298434d0c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173857, "upload_time": "2017-08-20T01:17:02", "url": "https://files.pythonhosted.org/packages/70/e7/00446a94b5f4ab1d56554152dbc3e6d13fe611ab9b9c51ef6bc7a0ff8b61/rgf_python-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "5cdc06f6341f8e00a2219ccfb41d9640", "sha256": "ce527ec6501b29bfd97ae4156aeeebf450230aa37d84a773af6642a1c68dde41" }, "downloads": -1, "filename": "rgf_python-2.0.2.tar.gz", "has_sig": false, "md5_digest": "5cdc06f6341f8e00a2219ccfb41d9640", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173995, "upload_time": "2017-08-21T13:40:41", "url": "https://files.pythonhosted.org/packages/7b/88/18be049ac6ffbb368affa964c00089818c561a58c049b577e75385e1995f/rgf_python-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "15d34e5a3ed977367421b37077a03b81", "sha256": "40d0e79652bd99cd075b653693467e711e78e7319872c089b9ffcdf387156e22" }, "downloads": -1, "filename": "rgf_python-2.0.3.tar.gz", "has_sig": false, "md5_digest": "15d34e5a3ed977367421b37077a03b81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174323, "upload_time": "2017-10-03T13:16:04", "url": "https://files.pythonhosted.org/packages/cf/27/515562eab19e8d001596652f8b6a48c97580b94cdae956cccca9abe095de/rgf_python-2.0.3.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "daf23fe3cc887e75bbd7fb3b99f81ec1", "sha256": "dcd086e0a116e3a7b786360ad00c33e0276896802329c384908986337d62ac8b" }, "downloads": -1, "filename": "rgf_python-2.1.0.tar.gz", "has_sig": false, "md5_digest": "daf23fe3cc887e75bbd7fb3b99f81ec1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 174489, "upload_time": "2017-11-10T15:55:08", "url": "https://files.pythonhosted.org/packages/1c/de/3409d5ecd095fb628aaf84927cada5248f06edba214ab549bc6bb45a495a/rgf_python-2.1.0.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "7a72f015eebcd94bb0d45f678c0f2952", "sha256": "f5c341e6cdb6457c645a8903c1853864e6bf2a41f49be34864b5d8b463e61f4a" }, "downloads": -1, "filename": "rgf_python-2.1.2-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "7a72f015eebcd94bb0d45f678c0f2952", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 326157, "upload_time": "2017-12-04T14:30:33", "url": "https://files.pythonhosted.org/packages/27/1c/af21c48dcb0c2aa25e3537d110f56eaa2cfa30ef33d35112951dcb29a77d/rgf_python-2.1.2-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "48eb05295f0e4172b7af38acd80d1205", "sha256": "fad54ab32641a0a274517e0775459f0811e2debffd8c47ee6b785cb81fc9af53" }, "downloads": -1, "filename": "rgf_python-2.1.2-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "48eb05295f0e4172b7af38acd80d1205", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 391447, "upload_time": "2017-12-04T14:30:48", "url": "https://files.pythonhosted.org/packages/8a/62/1862aa41399970d273d50fa19996969a298e1ca0d58cab94b9eccd439292/rgf_python-2.1.2-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1f078a3e5c13a4e8e362d09b36d30de6", "sha256": "e2b0e074889815fb9cf2b4412c375254492ebb74311569dfe7370b7419991f73" }, "downloads": -1, "filename": "rgf_python-2.1.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1f078a3e5c13a4e8e362d09b36d30de6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 360964, "upload_time": "2017-12-04T14:31:01", "url": "https://files.pythonhosted.org/packages/d8/0d/e409a98d86c20efd171d07c3841c2a64e276996d8c0844096d043f8a89e7/rgf_python-2.1.2-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "88a4f3050a097b36ed8ff260dd00ee77", "sha256": "52982ae01d775b37829891c4725b9f50a298fe780e51261f51ef9cc1309319d4" }, "downloads": -1, "filename": "rgf_python-2.1.2-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "88a4f3050a097b36ed8ff260dd00ee77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 293782, "upload_time": "2017-12-04T14:31:11", "url": "https://files.pythonhosted.org/packages/98/ea/07ea0cd3d07b4a32fc94f2d4b734bc4d195e21b28cd1fbdee44c6d1f355f/rgf_python-2.1.2-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "2476c4757e6cb4158ec1f887f3a0016c", "sha256": "c83f54c40e7ee5928227fb0cd6240e651a88ae8e91aee2ae9e287a941d1b9227" }, "downloads": -1, "filename": "rgf_python-2.1.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2476c4757e6cb4158ec1f887f3a0016c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 333422, "upload_time": "2017-12-04T14:31:28", "url": "https://files.pythonhosted.org/packages/cb/83/e095b828f497460428becd30c307b1b29218360867cf729a8368948058f1/rgf_python-2.1.2-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "84bd4bcaf9a6875dd6b5db40a95163bc", "sha256": "5ba150e00a166121c80e4e35ae5e573e082231cf2f5b772b1e8a7478d7bbfede" }, "downloads": -1, "filename": "rgf_python-2.1.2.tar.gz", "has_sig": false, "md5_digest": "84bd4bcaf9a6875dd6b5db40a95163bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 175181, "upload_time": "2017-12-04T14:28:05", "url": "https://files.pythonhosted.org/packages/07/8e/a88bd589bef0843180a9c7254b0ce465ea2342d7840c3881e2134b7d40df/rgf_python-2.1.2.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "211935bb0f617713ef505a9cdb86fe90", "sha256": "92d93dcb915c03f32e6a81011483569a39dada25e51f619555699c5eb294b6d8" }, "downloads": -1, "filename": "rgf_python-2.2.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "211935bb0f617713ef505a9cdb86fe90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 331205, "upload_time": "2017-12-29T02:11:49", "url": "https://files.pythonhosted.org/packages/fe/6e/77ed62c5d01b4e365652dbfb42e5a638af1f927f92c77cc0408443e3fedd/rgf_python-2.2.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "22563dc9177eb0e4d36137501895a679", "sha256": "cb3a7db0961a8db7f77a42f42605b702e0a8e142c8f90396862e69892d1c81e7" }, "downloads": -1, "filename": "rgf_python-2.2.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "22563dc9177eb0e4d36137501895a679", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 396495, "upload_time": "2017-12-29T02:12:02", "url": "https://files.pythonhosted.org/packages/39/95/7db1cf6097899c62c98b39437eba5713942ecaf11c4254a67d868afef928/rgf_python-2.2.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5cf1665d2a14091b31eb0ea2da5efce1", "sha256": "7a8672fe97417b26844629c21926339062a8c9a20622b1e9f911790c744500a6" }, "downloads": -1, "filename": "rgf_python-2.2.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5cf1665d2a14091b31eb0ea2da5efce1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 366020, "upload_time": "2017-12-29T02:12:15", "url": "https://files.pythonhosted.org/packages/8d/1b/2cfa4fb5d45cf532c289e6d84cf2d5c5848016245ddcc7d21154c6b3989a/rgf_python-2.2.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aa2bbd01c95bdd4f71410f842aa42a6c", "sha256": "224a20cacbda901c3a9542975bea2c0b8784aa7ae0de78e357cef87ec375f96f" }, "downloads": -1, "filename": "rgf_python-2.2.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "aa2bbd01c95bdd4f71410f842aa42a6c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 298831, "upload_time": "2017-12-29T02:12:26", "url": "https://files.pythonhosted.org/packages/50/9e/5465dd83facaaeedf09b06feec5167276cb0a9361e6c8e9bf5e28e73130c/rgf_python-2.2.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "d1ac43ecf2f8b00a66543b1449c2f86d", "sha256": "bc60da4e0b299fce98b62fe255bc8390787993e56a124796ac59500e1312ad3e" }, "downloads": -1, "filename": "rgf_python-2.2.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d1ac43ecf2f8b00a66543b1449c2f86d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 338475, "upload_time": "2017-12-29T02:12:38", "url": "https://files.pythonhosted.org/packages/cb/4d/0b4504e73f59f239bee317762944ffe077b078dbb57aa17aa178ef67d5b2/rgf_python-2.2.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "549fdbded8096504bfb649c918abde21", "sha256": "b9dec479a177277c08bb511515bf1bc299e29ba21063f754480c41e6eb8ac4a7" }, "downloads": -1, "filename": "rgf_python-2.2.0.tar.gz", "has_sig": false, "md5_digest": "549fdbded8096504bfb649c918abde21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 172859, "upload_time": "2017-12-29T02:12:44", "url": "https://files.pythonhosted.org/packages/0c/28/b7282f39d0b811aa0857aace516c681cbab03a885cc66e6afefb04ed8d36/rgf_python-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "535377d6ba675c729e7bb105cd986c73", "sha256": "7a7e09161ddb5caeac4e2e2bcd79b4f2c3068a2d77781fb1986e8defeeaae9ce" }, "downloads": -1, "filename": "rgf_python-2.3.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "535377d6ba675c729e7bb105cd986c73", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 722709, "upload_time": "2018-01-08T12:34:47", "url": "https://files.pythonhosted.org/packages/d4/ba/93a63d7777fc03048e0c3200eb6063daef934b47fd6057b14ff3e357de98/rgf_python-2.3.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cf5e3924b0d7a7e681540ce95e85cd2f", "sha256": "3e2e01ab24f8a24be9289c3bbbc47ba5324b7dc3559968e9c1d776ed163b22d3" }, "downloads": -1, "filename": "rgf_python-2.3.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cf5e3924b0d7a7e681540ce95e85cd2f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1184847, "upload_time": "2018-01-08T12:34:51", "url": "https://files.pythonhosted.org/packages/25/ab/335fa23bc031c10d1dab0e678cd0d8e6f2da78609b0de70f7d57b7c10405/rgf_python-2.3.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "cc7facf3af186a4db6dc41f159dc2898", "sha256": "9568618ffd5c46454f6750bd362fbf2022662726ba91fc043cb8e2d1796d28ad" }, "downloads": -1, "filename": "rgf_python-2.3.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cc7facf3af186a4db6dc41f159dc2898", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 759430, "upload_time": "2018-01-08T12:34:55", "url": "https://files.pythonhosted.org/packages/6e/9a/5a7c608201b45f32e172cd77c1c1e2a5c1162808cb1d4151b4c0d0085403/rgf_python-2.3.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4a4be0a1a91effc962dbf523d397edda", "sha256": "381a0d293df96a8207db3c4403161983e22f4734d010273a31a60ac095d05396" }, "downloads": -1, "filename": "rgf_python-2.3.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "4a4be0a1a91effc962dbf523d397edda", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 759550, "upload_time": "2018-01-08T12:34:59", "url": "https://files.pythonhosted.org/packages/87/89/d1e37f86f9fc0d8993670f0cb29212b159ed2fbc3c2ce731a229de35cdbc/rgf_python-2.3.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "4b44314c5dd6ce77417021c19e2badd0", "sha256": "810dddc9d57f0168babcf3baf42ef02ce70c7a0e618a4a5bebf26638de70a42e" }, "downloads": -1, "filename": "rgf_python-2.3.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "4b44314c5dd6ce77417021c19e2badd0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 825757, "upload_time": "2018-01-08T12:35:06", "url": "https://files.pythonhosted.org/packages/1d/5b/9f37c9e5be8210c06c48621ee5100c2d62144e1043f474ec0598b2cd62d4/rgf_python-2.3.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1fbf7d1af686abf3279e43a757368135", "sha256": "d9b83e79e38d5e50e313d3cea27af989a1f96cbb9176c4067e71aebbb77181a2" }, "downloads": -1, "filename": "rgf_python-2.3.0.tar.gz", "has_sig": false, "md5_digest": "1fbf7d1af686abf3279e43a757368135", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213070, "upload_time": "2018-01-08T12:35:09", "url": "https://files.pythonhosted.org/packages/c5/d7/633d28ac0b98deb21ee92780e292026e684cd0ae7a22e2a88cac5caa8480/rgf_python-2.3.0.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "ee8d776954cc98a1f3b7d50b6bff1725", "sha256": "42b4a9454facf6b2caa2f113765eed2e905c5cac70e8c9307c5b071a67b7bd40" }, "downloads": -1, "filename": "rgf_python-3.0.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "ee8d776954cc98a1f3b7d50b6bff1725", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 727999, "upload_time": "2018-02-10T14:17:19", "url": "https://files.pythonhosted.org/packages/fc/74/bae2bad70302916f10954f6a0698f9dd4550b8adc10eecd30c79b3334fca/rgf_python-3.0.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "661b0c9b46eef3a753637334b98e6637", "sha256": "b7c2bad1e28ca129f40d9410d09e0a332d4f5c0c5efde7a0442afe79b9a02641" }, "downloads": -1, "filename": "rgf_python-3.0.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "661b0c9b46eef3a753637334b98e6637", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 795696, "upload_time": "2018-02-10T14:17:47", "url": "https://files.pythonhosted.org/packages/61/ee/d8e917ebe9b9c15e0034d17af8aff82f0afb476d2c2c97a92a45b26d6152/rgf_python-3.0.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "5f6c3989fa4d9abdc2a696e9db01428d", "sha256": "5b68c9b9de491fe975887617340f2dd28781a69bbdecdaaf9c0a563718877241" }, "downloads": -1, "filename": "rgf_python-3.0.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5f6c3989fa4d9abdc2a696e9db01428d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 761728, "upload_time": "2018-02-10T14:18:13", "url": "https://files.pythonhosted.org/packages/e9/68/d0fddc3068c9b973bed1f5f8a4f0a9b25248d133685183d5235315d0d085/rgf_python-3.0.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "330a76aaad252f7d2d6a0c9c4a030720", "sha256": "2bd5f871e386ec72c13fc1e8273f17ef5972a2402b08a2f4e675cf31a0151964" }, "downloads": -1, "filename": "rgf_python-3.0.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "330a76aaad252f7d2d6a0c9c4a030720", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1587470, "upload_time": "2018-02-10T14:19:07", "url": "https://files.pythonhosted.org/packages/59/70/d9b5ce24c4a0a3923d95df38000b213c5e29b95601a20b8de87f69f4c582/rgf_python-3.0.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "cc4b8121beb540629ed91ecee5a24a7b", "sha256": "faf3f6ab043ae9186b13505f5e629c06f5739d56f4237cb44d4f4884da39802f" }, "downloads": -1, "filename": "rgf_python-3.0.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "cc4b8121beb540629ed91ecee5a24a7b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1728996, "upload_time": "2018-02-10T14:20:07", "url": "https://files.pythonhosted.org/packages/b5/09/75d7fa21efe3298da8613192e740265d3c526bff5b45631c2bb64d66f6e1/rgf_python-3.0.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3834537a3f237498f499bd667cc2f286", "sha256": "f82bf4b429787bcf0f19e60a90f9e1faadf9e984d24c961098bd68a9f1ae9351" }, "downloads": -1, "filename": "rgf_python-3.0.0.tar.gz", "has_sig": false, "md5_digest": "3834537a3f237498f499bd667cc2f286", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215928, "upload_time": "2018-02-10T14:20:15", "url": "https://files.pythonhosted.org/packages/49/3f/5e72ad095c44a80f9878f34e62c4a6d541aa36772453b3c06c66a3bb8c77/rgf_python-3.0.0.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "8024c61b50b7f60714cff8ff56f962d2", "sha256": "d1c0163303b1ff773786d69e613d5bc99bc1cf364d2af6bea6f6075ee4bfdb1b" }, "downloads": -1, "filename": "rgf_python-3.1.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "8024c61b50b7f60714cff8ff56f962d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 727396, "upload_time": "2018-02-24T09:00:33", "url": "https://files.pythonhosted.org/packages/52/1a/b9dee7540ee1da9be3a4c5008f2c57b45b4585bb20e2bdce0834787d8043/rgf_python-3.1.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d0d4c0947bcff89a233960fdf42d7ae1", "sha256": "ceba72ba952211210ce486ddfb42130fa2eb4a19bb5d707f404f29ba0dc590eb" }, "downloads": -1, "filename": "rgf_python-3.1.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d0d4c0947bcff89a233960fdf42d7ae1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 793096, "upload_time": "2018-02-24T09:01:00", "url": "https://files.pythonhosted.org/packages/7f/9b/f488ff1547129261bc5e8c248c4813c6b3f30d1b0696829c838f20223cb4/rgf_python-3.1.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "0d8e45e701afbadb78475fda1d06eb35", "sha256": "23f525d874772da297cddef9fb664de18f9727c4b9a55a9f8ff4ab3f18ab2475" }, "downloads": -1, "filename": "rgf_python-3.1.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0d8e45e701afbadb78475fda1d06eb35", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 759722, "upload_time": "2018-02-24T09:01:27", "url": "https://files.pythonhosted.org/packages/33/c4/7c73917d9a250f1d476b7f585e6b8955179e916f8410ed8f77418665aabf/rgf_python-3.1.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "be95c90e75cdd9df393cc98b2f40149e", "sha256": "d8260578b36d546d44976fd0b4662d482bccf7e868cc254dc0e82eb08310d616" }, "downloads": -1, "filename": "rgf_python-3.1.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "be95c90e75cdd9df393cc98b2f40149e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1580946, "upload_time": "2018-02-24T09:02:20", "url": "https://files.pythonhosted.org/packages/7b/13/2460bc545d347aa6d9e5c8b87a49771812b3b8cb288e8cb401f1b881ada9/rgf_python-3.1.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "7d14be1864b350b060b2d15d7dd26d6c", "sha256": "32bc342444340fcf8d6119f140d6d0b946b0f9ea60d05f11a35bf4cd80bd6fe1" }, "downloads": -1, "filename": "rgf_python-3.1.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "7d14be1864b350b060b2d15d7dd26d6c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1728912, "upload_time": "2018-02-24T09:03:20", "url": "https://files.pythonhosted.org/packages/15/5e/9a96a8ff4da1a68935b32ffc8a1a7d8ebcff9ee999a4668ef7deeb326b2a/rgf_python-3.1.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "df61325f54650862df51f581a7512baf", "sha256": "811c6d78dc6056884f3d225459a77195689bfb963c4cce42c2b5e060dde39826" }, "downloads": -1, "filename": "rgf_python-3.1.0.tar.gz", "has_sig": false, "md5_digest": "df61325f54650862df51f581a7512baf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216710, "upload_time": "2018-02-24T09:03:28", "url": "https://files.pythonhosted.org/packages/ae/22/ad7e7d0ff9304d757170e62403e792334ee432b43c6a246a14830b5e1a54/rgf_python-3.1.0.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "2c54ecb2f52d893eb49420c9ad8fbd78", "sha256": "e3548997362562bc8e208dec31b90cbea42697b4d5f5bdcc52f62c604aa59f7e" }, "downloads": -1, "filename": "rgf_python-3.2.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "2c54ecb2f52d893eb49420c9ad8fbd78", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 728290, "upload_time": "2018-06-16T14:36:16", "url": "https://files.pythonhosted.org/packages/48/47/5468d6c7c636c3614a5ea6ae717596f65094b9845c9cd037cf2e7f403f05/rgf_python-3.2.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0562f048aa6b86164330a6209ed20bfd", "sha256": "c14e55c8d40fed6d5f4526bff2cd7b8597780c3ea62d942c2f8f7d7b1d40f3a7" }, "downloads": -1, "filename": "rgf_python-3.2.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0562f048aa6b86164330a6209ed20bfd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 789810, "upload_time": "2018-06-16T14:36:45", "url": "https://files.pythonhosted.org/packages/24/4d/015b4d8e8d0f673880921778b98155548e017e439ce778c0a3b7c070b573/rgf_python-3.2.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "144007ae9c6c4a2874298826a4504c23", "sha256": "0995ab3038054b611b4fa97d2bdb87aac4a59310a0fb6b86b5e500beb9e94da1" }, "downloads": -1, "filename": "rgf_python-3.2.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "144007ae9c6c4a2874298826a4504c23", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 756429, "upload_time": "2018-06-16T14:37:11", "url": "https://files.pythonhosted.org/packages/fe/d1/4dec9c38a61ac6eb159fe5161b9e6f54a9255d2f0585f9f0ca9b31d0bf71/rgf_python-3.2.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "344f76bb57fe1f5e96c1fa3166edd334", "sha256": "35281bdffb527234fed60944dd39a6219e2d29951ddc005be8267fe6d0054bd9" }, "downloads": -1, "filename": "rgf_python-3.2.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "344f76bb57fe1f5e96c1fa3166edd334", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1578304, "upload_time": "2018-06-16T14:38:05", "url": "https://files.pythonhosted.org/packages/00/fc/bf212db2a1235b993f11dae289115180e2dcb023715adff2674bac85792d/rgf_python-3.2.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "458caa0c482aeb8bac03834e642f904b", "sha256": "9f6f70286f868d6a0ab31ee4b8a429b7664f3fbc01a999267af43688ec1cff66" }, "downloads": -1, "filename": "rgf_python-3.2.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "458caa0c482aeb8bac03834e642f904b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1727457, "upload_time": "2018-06-16T14:39:03", "url": "https://files.pythonhosted.org/packages/c8/ba/eaddd7d4afa2e2cf7ac08595be70853b99e312f2b8d02a339de4e60b83d4/rgf_python-3.2.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b018bf588e833ea86e6852ae59759faa", "sha256": "9a9f497c3e3f558257af20c43e00738d84969fa646780d5dc0fea43e5192ebb8" }, "downloads": -1, "filename": "rgf_python-3.2.0.tar.gz", "has_sig": false, "md5_digest": "b018bf588e833ea86e6852ae59759faa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 217921, "upload_time": "2018-06-16T14:39:12", "url": "https://files.pythonhosted.org/packages/f4/b9/d25a51f0a51d07d6d9d0d67f9ffeb1a057bc2113e281573c8160ce45b7ea/rgf_python-3.2.0.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "96434359d08ecccac7e50112112308e7", "sha256": "bcbf2f60b118da9f0ad06c372d61a2447734d8f6c7155b35e9ebec9ebd09c871" }, "downloads": -1, "filename": "rgf_python-3.3.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "96434359d08ecccac7e50112112308e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 727680, "upload_time": "2018-07-21T13:05:09", "url": "https://files.pythonhosted.org/packages/e5/e4/57088e1fbd717d85a15bb431e9ce461640f9ebf7eca5c1944546d65c8f3d/rgf_python-3.3.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "631d514020ba4e2614b15affc2b785a2", "sha256": "aa35a91dd287efaaca86a30dc6aa7d180ad54330c4075edaeda6cb792464eead" }, "downloads": -1, "filename": "rgf_python-3.3.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "631d514020ba4e2614b15affc2b785a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 788647, "upload_time": "2018-07-21T13:05:37", "url": "https://files.pythonhosted.org/packages/1a/d9/0cb591531e9d2aacfb72a54fc6e9c097f4e861865e288c2e46e4d4836524/rgf_python-3.3.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "e38a2b40bce1b88a06af7151da924bdc", "sha256": "e0640fe0767925857eaa9b827e13625849b35d4833c5dbf58cf3e433dba237f1" }, "downloads": -1, "filename": "rgf_python-3.3.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e38a2b40bce1b88a06af7151da924bdc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 755536, "upload_time": "2018-07-21T13:06:05", "url": "https://files.pythonhosted.org/packages/b4/b4/bb6ba5695d41494bc4b145f1efcffbbce78946456ed6e8cb74c17b46b511/rgf_python-3.3.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fe27f4ec275dd5b7aa07240268dc0c20", "sha256": "88598820bf6218a4126560fc40be5fe025e76ee513ee7efc8f1aa177514c511b" }, "downloads": -1, "filename": "rgf_python-3.3.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "fe27f4ec275dd5b7aa07240268dc0c20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1577501, "upload_time": "2018-07-21T13:07:01", "url": "https://files.pythonhosted.org/packages/a7/b2/cc7a23b3f40394a2a6fb4ffaa06ca6fb82fc16c6983bd29e344f1b7d78d8/rgf_python-3.3.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "cb1e2bb69451fff6eaf4b6a230ad489f", "sha256": "f437ffe3175a94a3947d9605103ea0ba5952b3dfc8fc5feecf9fb61030aecf6d" }, "downloads": -1, "filename": "rgf_python-3.3.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "cb1e2bb69451fff6eaf4b6a230ad489f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1726730, "upload_time": "2018-07-21T13:08:00", "url": "https://files.pythonhosted.org/packages/0f/d9/f3cee0162c6dc3d24989e7966998e081c92b4e0b550b6a2a45baaef53729/rgf_python-3.3.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6f30b1d1cc01aae9952d434e49965beb", "sha256": "7cae6e2153cdb98364b9b79e0fe691123bc0d2dd6aa33e231c64cac8d6d36734" }, "downloads": -1, "filename": "rgf_python-3.3.0.tar.gz", "has_sig": false, "md5_digest": "6f30b1d1cc01aae9952d434e49965beb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212739, "upload_time": "2018-07-21T13:08:07", "url": "https://files.pythonhosted.org/packages/1e/55/2e09803c30b79b96b30d5ed1038de75e7b642a054f724aa258c2e2c1b963/rgf_python-3.3.0.tar.gz" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "cd821672ee818edd4dcde38f89ac2a27", "sha256": "9056cd0e0c1f0beb488dee8ea8675f109a64cfa9e229cb7fabb3c68a651ac946" }, "downloads": -1, "filename": "rgf_python-3.4.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "cd821672ee818edd4dcde38f89ac2a27", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 725845, "upload_time": "2018-12-04T13:23:51", "url": "https://files.pythonhosted.org/packages/0a/20/f4a41716d768641098b5dcf606dc53de6deff67df741515f186bc91030a8/rgf_python-3.4.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cc377db5891dd005c1fc393733ba0106", "sha256": "18ac51ec04df5e924cd0d7d30a0f907fc8de0dba60436f5fa43a137271f18b8a" }, "downloads": -1, "filename": "rgf_python-3.4.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cc377db5891dd005c1fc393733ba0106", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 790134, "upload_time": "2018-12-04T13:24:18", "url": "https://files.pythonhosted.org/packages/85/5e/58401eed977a4a6327fa2ed901f7c524b03898a473dec4533cc34cfce4f1/rgf_python-3.4.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "d3d3d12ca84b0a0bd69682d1ecbed613", "sha256": "72b05a5b0c848191a70030cf9210ae2f234ae074d5c776c27977884b1ddca434" }, "downloads": -1, "filename": "rgf_python-3.4.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d3d3d12ca84b0a0bd69682d1ecbed613", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 757025, "upload_time": "2018-12-04T13:24:44", "url": "https://files.pythonhosted.org/packages/34/1f/ff796d528b5d6a7cb745fc0ac0bb5784c154ade62a3358f0be08a009e0ec/rgf_python-3.4.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f1ef656ec1969188ad8a26a8720b7ac0", "sha256": "3c471fe405ce3b375ca8cfbdc714f661375408308532737febdbd0853818c060" }, "downloads": -1, "filename": "rgf_python-3.4.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "f1ef656ec1969188ad8a26a8720b7ac0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1578989, "upload_time": "2018-12-04T13:25:38", "url": "https://files.pythonhosted.org/packages/15/8b/28cbab179a42974b74d95e1794f68645ebb793f8bb39bcc1037ff413bafe/rgf_python-3.4.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "985bbb8cf0f539057bcc37205590f00a", "sha256": "c9777befd8459d4548598580221eb4d72d8caf5f05215baaa75d9ad28165e918" }, "downloads": -1, "filename": "rgf_python-3.4.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "985bbb8cf0f539057bcc37205590f00a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1728223, "upload_time": "2018-12-04T13:26:37", "url": "https://files.pythonhosted.org/packages/bf/f7/ca6f8ea8c1d4b36be04527235b53e0666b6d239fca57343c2c2ff2763203/rgf_python-3.4.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3673e752b1c1ba5a0f9bd868420f5f74", "sha256": "69d83aeb36c2e075402db06457ea19a39fa83415dbcf958e22eac1f177c00b92" }, "downloads": -1, "filename": "rgf_python-3.4.0.tar.gz", "has_sig": false, "md5_digest": "3673e752b1c1ba5a0f9bd868420f5f74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 214395, "upload_time": "2018-12-04T13:26:44", "url": "https://files.pythonhosted.org/packages/ca/09/158f9c995f0264f1328c61f49871d934caa6b2dd779c02c622fe130fcfc2/rgf_python-3.4.0.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "4a4c64568d34f231876e6a20b1c01413", "sha256": "a24bf7bf373dfd8a7d08fe99cbdc8613fcb25b9755267952b7a6e92017521b16" }, "downloads": -1, "filename": "rgf_python-3.5.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "4a4c64568d34f231876e6a20b1c01413", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 726586, "upload_time": "2019-01-15T12:47:24", "url": "https://files.pythonhosted.org/packages/9b/82/c9079fde6bfb5e3875fb970ecb96fe3a9dafa44be35224cf876633e4025e/rgf_python-3.5.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5ccd7d14a32b75a20bc18bb1c89768cf", "sha256": "de85a35374dc8a91c24992b4aa9e47c71990bd560e7ffe3172f2fd5d9401106e" }, "downloads": -1, "filename": "rgf_python-3.5.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5ccd7d14a32b75a20bc18bb1c89768cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 790877, "upload_time": "2019-01-15T12:47:54", "url": "https://files.pythonhosted.org/packages/c4/d2/1d963ee18f183e9d0784b1b18d7de969489491a54387030bd631ca1e3ae4/rgf_python-3.5.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "e16fa92222db30aa169473977ce85d7a", "sha256": "38a4f296de1745665f6063eff01b8b07c727c0120676d090f751fe19528cb064" }, "downloads": -1, "filename": "rgf_python-3.5.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e16fa92222db30aa169473977ce85d7a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 757765, "upload_time": "2019-01-15T12:48:22", "url": "https://files.pythonhosted.org/packages/27/b4/4b6cc5448e49c9a13bba46da351e5bf9149486996466e2f8e546bee98afb/rgf_python-3.5.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bad974e62d21ac3dfcf9980f0d639bd0", "sha256": "ea4b1ba6d9ee8f2f77be7a7a9ec90de6f80e5845b129b8796118254e370aee6f" }, "downloads": -1, "filename": "rgf_python-3.5.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "bad974e62d21ac3dfcf9980f0d639bd0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1579730, "upload_time": "2019-01-15T12:49:22", "url": "https://files.pythonhosted.org/packages/eb/c9/c85db732fec74bedc00d317bfc5021a7430c2d467a4b3b23a5e7095b3a66/rgf_python-3.5.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "87dc8482435ed5f714c09e07d4c05eea", "sha256": "0fab659e58bc75299dd07312d8acb91cca1470612723c006475b420cafc948b1" }, "downloads": -1, "filename": "rgf_python-3.5.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "87dc8482435ed5f714c09e07d4c05eea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1728966, "upload_time": "2019-01-15T12:55:55", "url": "https://files.pythonhosted.org/packages/e3/0b/d7157d140bc9ad58799957d9c99c6f5b867c1878c48ff9153437454b3c7e/rgf_python-3.5.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "afe631afb0d167c20c2a032971827643", "sha256": "0d97086da9d092de5307b603de2ad2250f883f77634cae29b0484e386e139fbd" }, "downloads": -1, "filename": "rgf_python-3.5.0.tar.gz", "has_sig": false, "md5_digest": "afe631afb0d167c20c2a032971827643", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215148, "upload_time": "2019-01-15T12:55:58", "url": "https://files.pythonhosted.org/packages/2f/be/07e7295c0378ed88ac320835e4dd58b83596d74ecc5feb7ec824749d3875/rgf_python-3.5.0.tar.gz" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "ff1f6c83d0d689679ea3e7ae03ff031c", "sha256": "9963d1d65ce64ede8c07d7ab1752d18bf0aed7689594538e7119fbcdb6561947" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "ff1f6c83d0d689679ea3e7ae03ff031c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 746596, "upload_time": "2019-06-09T15:04:01", "url": "https://files.pythonhosted.org/packages/5a/eb/dc56ba6728d7ddba6c708ade14d5e6c501a1893def32544be302eb1a48ce/rgf_python-3.6.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1c2db2e18afb2e8427d6e13e5b916d27", "sha256": "618d0e1ac7f67c3b1b1f3d7f5d91d216ceb0e6a2c8a811b7a46daf6333094cc0" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1c2db2e18afb2e8427d6e13e5b916d27", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 790969, "upload_time": "2019-06-09T15:04:05", "url": "https://files.pythonhosted.org/packages/d1/1e/ddb208e3d8c0f1fbe1947de4dd6b1a81a0a05da88a660f11a096c518bc2c/rgf_python-3.6.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b7e014e114388ff8142d45e646c8ca5e", "sha256": "0a3012d8c8b4517632f5098386e8754928cf9fc6e765f9d7a3e74837d447031f" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b7e014e114388ff8142d45e646c8ca5e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 757848, "upload_time": "2019-06-09T15:04:09", "url": "https://files.pythonhosted.org/packages/95/7c/41f50b22c5a40614ffe8b3bfb857dbe7b09b843692697443d7811773f0a4/rgf_python-3.6.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d7c0f9722115a1ebc96d311ff08ed28", "sha256": "57bf7331891f9de430ed5902aedf2cb5bc1ca6df8aff899b74369ab2de6fe827" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "2d7c0f9722115a1ebc96d311ff08ed28", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1579823, "upload_time": "2019-06-09T15:04:14", "url": "https://files.pythonhosted.org/packages/5f/ce/bac7ffd6ae708b17bd8d4c7e69b63efa21242cbf8c60c57002e6e710b89a/rgf_python-3.6.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "985e85f1640abef14c2d6631a40a1108", "sha256": "5e5da0afb67bf94b3df1f149f1a9761bd77d8c34704a4ca7b30476a3a12096f3" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "985e85f1640abef14c2d6631a40a1108", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1720718, "upload_time": "2019-06-09T15:04:19", "url": "https://files.pythonhosted.org/packages/af/5d/7d8a78d8f9ba4e7de5d28cf830c2de147ff2858808004679629a8544f1db/rgf_python-3.6.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a013869b0d4a8b917228b420a5ee9ebd", "sha256": "a766cafa1bd9a0cb043b6b9f393510fab47461f4f267b6c1071c95f9fb6a54d7" }, "downloads": -1, "filename": "rgf_python-3.6.0.tar.gz", "has_sig": false, "md5_digest": "a013869b0d4a8b917228b420a5ee9ebd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215274, "upload_time": "2019-06-09T15:04:21", "url": "https://files.pythonhosted.org/packages/3b/ff/fec333f5da1fce8d88cebb77df2c86df0e98681390734196833ebc4a1241/rgf_python-3.6.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ff1f6c83d0d689679ea3e7ae03ff031c", "sha256": "9963d1d65ce64ede8c07d7ab1752d18bf0aed7689594538e7119fbcdb6561947" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "ff1f6c83d0d689679ea3e7ae03ff031c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 746596, "upload_time": "2019-06-09T15:04:01", "url": "https://files.pythonhosted.org/packages/5a/eb/dc56ba6728d7ddba6c708ade14d5e6c501a1893def32544be302eb1a48ce/rgf_python-3.6.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1c2db2e18afb2e8427d6e13e5b916d27", "sha256": "618d0e1ac7f67c3b1b1f3d7f5d91d216ceb0e6a2c8a811b7a46daf6333094cc0" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1c2db2e18afb2e8427d6e13e5b916d27", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 790969, "upload_time": "2019-06-09T15:04:05", "url": "https://files.pythonhosted.org/packages/d1/1e/ddb208e3d8c0f1fbe1947de4dd6b1a81a0a05da88a660f11a096c518bc2c/rgf_python-3.6.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b7e014e114388ff8142d45e646c8ca5e", "sha256": "0a3012d8c8b4517632f5098386e8754928cf9fc6e765f9d7a3e74837d447031f" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b7e014e114388ff8142d45e646c8ca5e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 757848, "upload_time": "2019-06-09T15:04:09", "url": "https://files.pythonhosted.org/packages/95/7c/41f50b22c5a40614ffe8b3bfb857dbe7b09b843692697443d7811773f0a4/rgf_python-3.6.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d7c0f9722115a1ebc96d311ff08ed28", "sha256": "57bf7331891f9de430ed5902aedf2cb5bc1ca6df8aff899b74369ab2de6fe827" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "2d7c0f9722115a1ebc96d311ff08ed28", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1579823, "upload_time": "2019-06-09T15:04:14", "url": "https://files.pythonhosted.org/packages/5f/ce/bac7ffd6ae708b17bd8d4c7e69b63efa21242cbf8c60c57002e6e710b89a/rgf_python-3.6.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "985e85f1640abef14c2d6631a40a1108", "sha256": "5e5da0afb67bf94b3df1f149f1a9761bd77d8c34704a4ca7b30476a3a12096f3" }, "downloads": -1, "filename": "rgf_python-3.6.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "985e85f1640abef14c2d6631a40a1108", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1720718, "upload_time": "2019-06-09T15:04:19", "url": "https://files.pythonhosted.org/packages/af/5d/7d8a78d8f9ba4e7de5d28cf830c2de147ff2858808004679629a8544f1db/rgf_python-3.6.0-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a013869b0d4a8b917228b420a5ee9ebd", "sha256": "a766cafa1bd9a0cb043b6b9f393510fab47461f4f267b6c1071c95f9fb6a54d7" }, "downloads": -1, "filename": "rgf_python-3.6.0.tar.gz", "has_sig": false, "md5_digest": "a013869b0d4a8b917228b420a5ee9ebd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215274, "upload_time": "2019-06-09T15:04:21", "url": "https://files.pythonhosted.org/packages/3b/ff/fec333f5da1fce8d88cebb77df2c86df0e98681390734196833ebc4a1241/rgf_python-3.6.0.tar.gz" } ] }