{ "info": { "author": "Jacopo Chevallard", "author_email": "jacopo.chevallard@mailfence.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Topic :: Scientific/Engineering :: Astronomy" ], "description": "# PyP-BEAGLE\n\nPyP-BEAGLE (**Py**thon **P**ostprocessing of **BEAGLE**) is a Python package to postprocess the analyses performed with the galaxy SED modelling tool [Beagle](http://www.jacopochevallard.org/beagle/) (**B**ay**E**sian **A**nalysis of **G**a**L**axy s**E**ds). PyP-BEAGLE allows one to create different types of publication-quality plots, LaTeX tables, as well as several higher level \"summary\" catalogues. \n\n# Installing PyP-BEAGLE\n\n* Make sure that you have a (science-ready!) installation of Python 2.7, for instance [Anaconda](https://www.continuum.io/downloads) (the Python 2.7 version)\n\n* To install PyP-BEAGLE simply run\n ```\n pip install pyp_beagle\n ```\n\n# Known issues\n\n* On a Mac OS, multiprocessing only works with the ``Agg`` backend. Make sure that your ``~/.matplotlib/matplotlibrc`` file contains the line\n ```\n backend : Agg\n ```\n\n* If you encounter errors related to LaTeX, or if the visual appearance of the plots is not satisfying, you can copy the matplotlib configuration file ``script/matplotlibrc`` into your ``$HOME/.matplotlib/`` folder (if the folder does not exist, create it). If you already have a customized ``matplotlibrc`` file, then you can use the GNU ``diff`` command to update it.\n\n* PyP-BEAGLE assumes that the Beagle environment variables are correctly set on your machine. Note that while these are the same environment variables used by Docker-Beagle (see [here](https://github.com/jacopo-chevallard/BEAGLE-general/wiki#running-beagle)), they have to point to the actual folders on your machine, not to the \"virtual\" folder that Docker-Beagle uses. To correctly set the environment variables, you can use the ``scripts/BEAGLE_env_variable.bash`` or ``scripts/BEAGLE_env_variable.csh`` files. In practice, after modifying the file to reflect your Beagle folder tree, you can simply add at the end of your ``.bashrc`` (or ``.tcshrc``, or equivalent) the line\n ```bash\n source /BEAGLE_env_variable.bash\n ```\n\n# Using PyP-BEAGLE\n\nThe post-processing of Beagle results is performed by means of the command ``pyp_beagle``. Since PyP-BEAGLE is often updated, you can visualize the (entire) possible options via the PyP-BEAGLE ``help``, with the command\n```csh\npyp_beagle --help\n```\n\nBelow we report a few of some common PyP-BEAGLE use cases and related commands.\n\n* [triangle plots](#plotting-the-posterior-probability-distributions-aka-triangle-plots)\n* [marginal plots](#plotting-the-comparison-of-data-and-model-observables-aka-marginal-plots)\n* [summary catalogue](#computing-a-summary-catalogue)\n* [true vs retrieved parameters](#plotting-the-comparison-of-input-and-retrieved-parameters-when-fitting-mock-observations)\n\n### Plotting the posterior probability distributions (aka \"triangle plots\")\n\n#### Command\n\n```csh\npyp_beagle -r \\\n--plot-triangle \\\n[-np ] \\\n[--json-triangle ] \\\n[--mock-catalogue ] \\\n[--json-mock ]\n```\n\nwhere\n* ```` must be replaced by the full path to the Beagle output directory;\n* ```` is an integer indicating how many processors can be used for the parallel execution of the script. This is particularly important when producing plots for large (> 1000) samples, as the creation of each individual plot can take several tens of seconds.\n* ```` is a JSON file used for the configuration of the triangle plot (which parameters should be plotted, log scale, plot limits, ...), an example can be found [here](https://github.com/jacopo-chevallard/PyP-BEAGLE/blob/0996fd3c6b271e15452b7edee6627bc7fbc68675/PyP-BEAGLE/files/params_names.json);\n* ```` indicates a Beagle FITS file containing the input (i.e. \"true\") physical parameters used to construct the noiseless SEDs which have then been fitted with Beagle (after the noise addition, which must be performed **outside** Beagle). Note that in this case, a ```` must be passed, since we must instruct PyP-BEAGLE where (in which FITS extension and column) to find the \"true\" parameters. An example of the ```` to be used in this case can be found [here](https://github.com/jacopo-chevallard/PyP-BEAGLE/blob/0996fd3c6b271e15452b7edee6627bc7fbc68675/PyP-BEAGLE/files/params_names_mock.json).\n\n\n#### Output\n\nThe successful execution of the script will create a set of ``*_triangle.pdf`` files (one per object) in the ``/pyp-beagle/plot`` folder.\n\n\n### Plotting the comparison of data and model observables (aka \"marginal plots\")\n\n#### Command\n\n```csh\npyp_beagle -r \\\n--plot-marginal \\\n[-np ] \\\n[--log-wavelength] \\\n[--plot-line-labels] \\\n[--spectral-resolution ] \\\n```\n\nwhere\n* ```` must be replaced by the full path to the Beagle output directory;\n* ```` is an integer indicating how many processors can be used for the parallel execution of the script. This is particularly important when producing plots for large (> 1000) samples, as the creation of each individual plot can take several tens of seconds;\n* ```` is a float indicating the resolution of the spectra, and it is used to determine which emission line labels are printed on the plot.\n\n#### Output\n\nThe successful execution of the script will create a set of ``*_marginal_SED_spec.pdf`` files (one per object) in the ``/pyp-beagle/plot`` folder.\n\n\n### Computing a summary catalogue\n\n#### Command\n\n```csh\npyp_beagle -r \n--compute-summary\n[--json-summary ]\n```\n\nwhere\n* ```` must be replaced by the full path to the Beagle output directory;\n* ```` is a JSON file used for the configuration of the summary catalogue, specifying for which parameters the summary statistics (posterior mean and median, 68 and 95 % credible regions) should be computed. An example can be found [here](https://github.com/jacopo-chevallard/PyP-BEAGLE/blob/0996fd3c6b271e15452b7edee6627bc7fbc68675/PyP-BEAGLE/files/summary_config.json).\n\n#### Output\n\nThe successful execution of the script will create the file ``/pyp-beagle/data/BEAGLE_summary_catalogue.fits``.\n\n### Plotting the comparison of input and retrieved parameters when fitting mock observations\n\n#### Command\n\n```csh\npyp_beagle -r \n--mock-catalogue \\\n--json-mock \n```\n\nwhere\n* ```` must be replaced by the full path to the Beagle output directory;\n* ```` indicates a Beagle FITS file containing the input (i.e. \"true\") physical parameters used to construct the noiseless SEDs which have then been fitted with Beagle (after the noise addition, which must be performed **outside** Beagle). Note that in this case, a ```` must be passed, since we must instruct PyP-BEAGLE where (in which FITS extension and column) to find the \"true\" parameters. An example of the ```` to be used in this case can be found [here](https://github.com/jacopo-chevallard/PyP-BEAGLE/blob/0996fd3c6b271e15452b7edee6627bc7fbc68675/PyP-BEAGLE/files/params_names_mock.json).\n\n#### Output\n\nThe successful execution of the script will create the files ``/pyp-beagle/plot/BEAGLE_mock_retrieved_params_hist.pdf`` and ``/pyp-beagle/plot/BEAGLE_mock_retrieved_params.pdf``.", "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/jacopo-chevallard/PyP-BEAGLE", "keywords": "astronomy galaxies statistics visualization", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pyp-beagle", "package_url": "https://pypi.org/project/pyp-beagle/", "platform": "", "project_url": "https://pypi.org/project/pyp-beagle/", "project_urls": { "Homepage": "https://github.com/jacopo-chevallard/PyP-BEAGLE" }, "release_url": "https://pypi.org/project/pyp-beagle/0.6.6/", "requires_dist": null, "requires_python": "", "summary": "Package for post-processing of results obtained with the Beagle SED fitting tool", "version": "0.6.6" }, "last_serial": 5539175, "releases": { "0.3.1": [ { "comment_text": "", "digests": { "md5": "a7f0ed0a1807ce10ae2a31092b8bf96a", "sha256": "5b1a7fe8f12f131855e7e4aedb386e7bd2d4daaa62c551864a8f4578ec3aa05e" }, "downloads": -1, "filename": "pyp_beagle-0.3.1-py2.7.egg", "has_sig": false, "md5_digest": "a7f0ed0a1807ce10ae2a31092b8bf96a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 137601, "upload_time": "2017-07-27T11:45:16", "url": "https://files.pythonhosted.org/packages/5d/ee/8caa618517f37074e76a57a718c39a746718ee550532a3ecf57d91d4f625/pyp_beagle-0.3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "db5634d62e1727673aed2d7dd9b0b37d", "sha256": "70cd9bffa6bfcdb2e49a9034273ea5a6864adb198091f9d55ce3f7903e72a0b9" }, "downloads": -1, "filename": "pyp_beagle-0.3.1.tar.gz", "has_sig": false, "md5_digest": "db5634d62e1727673aed2d7dd9b0b37d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82044, "upload_time": "2017-03-30T12:09:04", "url": "https://files.pythonhosted.org/packages/60/20/b833856d49c3c866443cdc3862e4c64eb16ba2e5e8c86b4cc3ee9e5ba460/pyp_beagle-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "4ca30d67516dfd4c358831d1da51ab1f", "sha256": "a1f58fad399e5c863496c14e80f5093f95ed35faf495d4056c9d3c706fa91245" }, "downloads": -1, "filename": "pyp_beagle-0.4.0-py2.7.egg", "has_sig": false, "md5_digest": "4ca30d67516dfd4c358831d1da51ab1f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 137722, "upload_time": "2017-07-27T11:56:01", "url": "https://files.pythonhosted.org/packages/56/99/e2438b51db1b341a3b98b29948df26b70c24aac0f684f75d3a840e64cf86/pyp_beagle-0.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ed1a47fd7f1017f40af32bac9e0a0cfb", "sha256": "e63974a1794d6c5891c4c20c8ab1cbb2000ce79ff2c7e1989e31a6f2628cf22a" }, "downloads": -1, "filename": "pyp_beagle-0.4.0.tar.gz", "has_sig": false, "md5_digest": "ed1a47fd7f1017f40af32bac9e0a0cfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66360, "upload_time": "2017-03-30T13:17:02", "url": "https://files.pythonhosted.org/packages/17/e2/6281b6ba8ceadcae9a044fbcd87149f141d1c2b6779e90c9a626be53b59b/pyp_beagle-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "3698a48fb4202a74fef7a2417aa01679", "sha256": "d33db5f5db771099d9c9498b0242510a937687de2fe957dd5e650d36bb5b2764" }, "downloads": -1, "filename": "pyp_beagle-0.4.1-py2.7.egg", "has_sig": false, "md5_digest": "3698a48fb4202a74fef7a2417aa01679", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 138517, "upload_time": "2017-07-27T11:56:03", "url": "https://files.pythonhosted.org/packages/a7/ef/67e1f6fa813fb55995950a29044ff47e7b8ad7bfe7cf8ea96d4fe36a4966/pyp_beagle-0.4.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "06c9c57df7a24faa2fc42e7a8c9d0a7d", "sha256": "ac8871dee149a9ece5246d1d0f1fd954874eb27597286c2ff81c2c6b7a816569" }, "downloads": -1, "filename": "pyp_beagle-0.4.1.tar.gz", "has_sig": false, "md5_digest": "06c9c57df7a24faa2fc42e7a8c9d0a7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66490, "upload_time": "2017-05-02T15:02:44", "url": "https://files.pythonhosted.org/packages/73/46/040dd6df47441611f3ad9a957fac23a7533de756cb584ab0d0afc9b0d593/pyp_beagle-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "bf7bf885fd66221cfb4a4904524b6346", "sha256": "323988cce9f6a929c87d660f272738cea4301b1be0a08c4a035ad6a086c86dc5" }, "downloads": -1, "filename": "pyp_beagle-0.4.2-py2.7.egg", "has_sig": false, "md5_digest": "bf7bf885fd66221cfb4a4904524b6346", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 141773, "upload_time": "2017-07-27T11:56:05", "url": "https://files.pythonhosted.org/packages/dd/d2/fe866f11da4a702f44aa11a9afcb1bcaecd29a0d459ee6fdf2c5fae4a767/pyp_beagle-0.4.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f0e59ff268f0024a06ceffaeb5816515", "sha256": "c6bc165bb2b836e89ee4838370c99b992695e676801d308e1e7f5f9c78b56e66" }, "downloads": -1, "filename": "pyp_beagle-0.4.2.tar.gz", "has_sig": false, "md5_digest": "f0e59ff268f0024a06ceffaeb5816515", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66841, "upload_time": "2017-05-04T16:14:13", "url": "https://files.pythonhosted.org/packages/34/28/518b32ff78eaf24cc8e9b5c50ca69d670a853f6e09ac82fdd4d9494dcc5b/pyp_beagle-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "6590a9e09b4f1f9e387138cca06d760c", "sha256": "26c1a4b82bab438354196cd5d75c5073bbdcf583f45008642184e99aed924ac6" }, "downloads": -1, "filename": "pyp_beagle-0.4.3-py2.7.egg", "has_sig": false, "md5_digest": "6590a9e09b4f1f9e387138cca06d760c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 144573, "upload_time": "2017-07-27T11:56:07", "url": "https://files.pythonhosted.org/packages/a5/0b/0aede4aff2a404094948a78ac3ee3c571c8569071a67727aeee2fdeadd68/pyp_beagle-0.4.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "466a52dbc9b6e7788b22714516130f85", "sha256": "6c264aaa330fe6271a25db0c026bd4a74f8315991d08fd2b8f390254c3c2a4ca" }, "downloads": -1, "filename": "pyp_beagle-0.4.3.tar.gz", "has_sig": false, "md5_digest": "466a52dbc9b6e7788b22714516130f85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68061, "upload_time": "2017-05-16T13:08:30", "url": "https://files.pythonhosted.org/packages/a5/21/ff615eb0050aa8e9486be3fc8cde278145adbf247b63435ab2d97fa8af99/pyp_beagle-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "b45642141d6d81d5bdec036055b6184c", "sha256": "dcb6d40ca67e84043d6cb0abeb94f5b2646be515216c8eadd0ca639ab18a0a76" }, "downloads": -1, "filename": "pyp_beagle-0.4.4-py2.7.egg", "has_sig": false, "md5_digest": "b45642141d6d81d5bdec036055b6184c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 145593, "upload_time": "2017-07-27T11:56:09", "url": "https://files.pythonhosted.org/packages/24/98/72de58333fa48baeb8e5f4d134a19aba0d861af48fdf709d9ef0bf31b696/pyp_beagle-0.4.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2aea21814e42f788615f0b724147ccc4", "sha256": "928b9d121217d374658fb1e9c2bf8937187178ed19c13cedf15e956873306e3e" }, "downloads": -1, "filename": "pyp_beagle-0.4.4.tar.gz", "has_sig": false, "md5_digest": "2aea21814e42f788615f0b724147ccc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69080, "upload_time": "2017-06-07T13:49:27", "url": "https://files.pythonhosted.org/packages/be/88/b3db8efab59801e63b7ee5984b14a1bfe231997d46bb3116f3737c89a82b/pyp_beagle-0.4.4.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "c29d9db513d2fd60bdce6cf2070750f4", "sha256": "a1634d114fb26103d7e2c33b2b893d859bce1ed86c188b3667a41b1e0c5e2855" }, "downloads": -1, "filename": "pyp_beagle-0.4.6-py2.7.egg", "has_sig": false, "md5_digest": "c29d9db513d2fd60bdce6cf2070750f4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 147522, "upload_time": "2017-07-27T11:56:11", "url": "https://files.pythonhosted.org/packages/a3/64/2015e1880933ff400f6c483e6d3d74b07d370eb859a119f164079c2fe413/pyp_beagle-0.4.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "632bb40fd23147e2946d95661cc50321", "sha256": "0ae809bf2c1fd38f610e0fae4c891ac9b49479eba1659aa1ccf008b98e3ffe6a" }, "downloads": -1, "filename": "pyp_beagle-0.4.6.tar.gz", "has_sig": false, "md5_digest": "632bb40fd23147e2946d95661cc50321", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69811, "upload_time": "2017-06-22T13:01:45", "url": "https://files.pythonhosted.org/packages/35/af/b88c55c319cfe96d0c1cb518b3f93c4f3a28b166e23d4ef5ef0be5dc802f/pyp_beagle-0.4.6.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "329e1cb0fd15d271127f77da07a65e2c", "sha256": "4486c7387f9bdd64837a4b86e9b1398ba6ae854c8fb4a274c6f9b5ab5eca2888" }, "downloads": -1, "filename": "pyp_beagle-0.5.0-py2.7.egg", "has_sig": false, "md5_digest": "329e1cb0fd15d271127f77da07a65e2c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 150209, "upload_time": "2017-07-27T11:56:12", "url": "https://files.pythonhosted.org/packages/5a/34/4e50a4f4f847aceb6573e65e0bdfd9c9b1caaf00cedffb303ed9fad02b2b/pyp_beagle-0.5.0-py2.7.egg" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "c4fb9b9dd01612c1438d09457cd3306b", "sha256": "b603364f3b0a0a566ba2952d873bd2e2f6369c907e8fc361d447e71a99af1bed" }, "downloads": -1, "filename": "pyp_beagle-0.5.1-py2.6.egg", "has_sig": false, "md5_digest": "c4fb9b9dd01612c1438d09457cd3306b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 149359, "upload_time": "2017-07-27T11:56:14", "url": "https://files.pythonhosted.org/packages/87/ed/3a0e3680962026a221a9bad08a5a67170c734869b7a4436a131d0e1dadd7/pyp_beagle-0.5.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "32d9e704e708ec905afdd5be2160097e", "sha256": "29f3824d6715eab89b3f3867010a1be99551806523f5c9fb46c5fb4521ba9ba8" }, "downloads": -1, "filename": "pyp_beagle-0.5.1-py2.7.egg", "has_sig": false, "md5_digest": "32d9e704e708ec905afdd5be2160097e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 150206, "upload_time": "2017-07-27T11:56:16", "url": "https://files.pythonhosted.org/packages/37/5c/2880ae64a9ffa1b0222eac41280f2225023b99675b6c2fb8231af1552778/pyp_beagle-0.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "adef208062b6677d87a2068bac1c5bfd", "sha256": "2acbee0dc155403c9dff94b0566915e40c5e4d39d8f3287f6f08aeafe7cb3e64" }, "downloads": -1, "filename": "pyp_beagle-0.5.1.tar.gz", "has_sig": false, "md5_digest": "adef208062b6677d87a2068bac1c5bfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71861, "upload_time": "2017-07-27T11:56:17", "url": "https://files.pythonhosted.org/packages/aa/49/44786ffa9f6a7464e1717580bbc81170a22153a2528e0f35ef5888345f56/pyp_beagle-0.5.1.tar.gz" } ], "0.5.10": [ { "comment_text": "", "digests": { "md5": "60a66b13d6949affeeaff4910be3b073", "sha256": "7d85461bd0ea60d16ac1df55316803a592b9ff12228d77568cc552e43faf1b7d" }, "downloads": -1, "filename": "pyp_beagle-0.5.10-py2.6.egg", "has_sig": false, "md5_digest": "60a66b13d6949affeeaff4910be3b073", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 140143, "upload_time": "2018-03-28T16:37:15", "url": "https://files.pythonhosted.org/packages/8a/a2/9d23486cf51da8e6ee2db9403db817e0d22c32e41cea902d8e06b54622a7/pyp_beagle-0.5.10-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "094bba4910af619551e4809affd32616", "sha256": "1d8131a89012e03eedfa5e76734a77bfee67bfa4e52516dfbd61ef93b9aae0eb" }, "downloads": -1, "filename": "pyp_beagle-0.5.10-py2.7.egg", "has_sig": false, "md5_digest": "094bba4910af619551e4809affd32616", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 141031, "upload_time": "2018-03-28T16:38:00", "url": "https://files.pythonhosted.org/packages/17/a2/9e659279b54065bf2c6a10b95eb0315b40baee0a841c0a8e9ac793f1a835/pyp_beagle-0.5.10-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "29c3864cdb2be1b82eba495dc5afd564", "sha256": "70ca449edd91b00119d51b8b663415522dea6bbb39db08b25618f17b2f415471" }, "downloads": -1, "filename": "pyp_beagle-0.5.10.tar.gz", "has_sig": false, "md5_digest": "29c3864cdb2be1b82eba495dc5afd564", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57579, "upload_time": "2018-03-28T16:37:16", "url": "https://files.pythonhosted.org/packages/90/0e/fac28fa550531f3ebcfe723ea9108e9be545696491bc646f62155fdca00b/pyp_beagle-0.5.10.tar.gz" } ], "0.5.11": [ { "comment_text": "", "digests": { "md5": "4d93a4c4cfc85c0aedb979f31a9aff41", "sha256": "1ec4c4d537bbbb8d58d5344b62350753e71e548a3e27446d54551ef069436e88" }, "downloads": -1, "filename": "pyp_beagle-0.5.11-py2.6.egg", "has_sig": false, "md5_digest": "4d93a4c4cfc85c0aedb979f31a9aff41", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 140271, "upload_time": "2018-04-05T16:47:39", "url": "https://files.pythonhosted.org/packages/cc/62/bb661194782f67b9f0f5f96ff92e62cea01c632b555cc88dfbcfb0143a6e/pyp_beagle-0.5.11-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "af40a9cc171dc962d9c8823b77f4090e", "sha256": "7fde51cdb7b73ac04ac03704ff6d9699d1436cf7a917f7f6e72ad600dcd7b70d" }, "downloads": -1, "filename": "pyp_beagle-0.5.11-py2.7.egg", "has_sig": false, "md5_digest": "af40a9cc171dc962d9c8823b77f4090e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 141167, "upload_time": "2018-04-05T16:48:09", "url": "https://files.pythonhosted.org/packages/ad/9b/5f1ba9d4bdcce6cd724cbef0e5b227449b6fda2e30b0c8afcd1563fcc3dc/pyp_beagle-0.5.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c586c81cef5d7208214ec3ef29c7b8b5", "sha256": "1897dc2458b0168dd2b311353e25c6bef209e814f862389fdebf22a4e264c6b9" }, "downloads": -1, "filename": "pyp_beagle-0.5.11.tar.gz", "has_sig": false, "md5_digest": "c586c81cef5d7208214ec3ef29c7b8b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57799, "upload_time": "2018-04-05T16:47:41", "url": "https://files.pythonhosted.org/packages/28/94/8d31dafc0b525a172ab8b5871ae751bdee0859267eca7ba5339b828b5b8f/pyp_beagle-0.5.11.tar.gz" } ], "0.5.12": [ { "comment_text": "", "digests": { "md5": "b9dfa6ed7244d3dc7436607017115cd4", "sha256": "a40f40788e6c36fdbd2d628c83e3663e20bd83a788ed49c7be75ccecfade1dc5" }, "downloads": -1, "filename": "pyp_beagle-0.5.12-py2.6.egg", "has_sig": false, "md5_digest": "b9dfa6ed7244d3dc7436607017115cd4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 140439, "upload_time": "2018-06-04T11:49:39", "url": "https://files.pythonhosted.org/packages/41/78/991d109946ea48396894b251c3494090f732f56ff4c10cd0d04bd85371ad/pyp_beagle-0.5.12-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5a72fa30ece801a0b210627e3cdcb03c", "sha256": "efdf760372b37df0c31f9ed03be63906b80ced311cbde9fb4eb34952f0894a94" }, "downloads": -1, "filename": "pyp_beagle-0.5.12-py2.7.egg", "has_sig": false, "md5_digest": "5a72fa30ece801a0b210627e3cdcb03c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 141339, "upload_time": "2018-06-04T11:50:32", "url": "https://files.pythonhosted.org/packages/93/ab/0eecfa596663e2bf5e975578cbf9753d907dedad53ecfb3c6f14036aae0a/pyp_beagle-0.5.12-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "012b2e538c01ffccecea8203d977d370", "sha256": "30aaedc3eb187f3a49156ac9ac900e9831a50affec0a3a3f7e3f4f5bf63172a3" }, "downloads": -1, "filename": "pyp_beagle-0.5.12.tar.gz", "has_sig": false, "md5_digest": "012b2e538c01ffccecea8203d977d370", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57854, "upload_time": "2018-06-04T11:49:41", "url": "https://files.pythonhosted.org/packages/81/aa/0530b4077f968db05bb97d2922b2dfd4ac9fc97531ca58ce84229adf2af3/pyp_beagle-0.5.12.tar.gz" } ], "0.5.13": [ { "comment_text": "", "digests": { "md5": "1f5872aa156df85facadc7af82205d9f", "sha256": "1f5234ae5fe3d716ec136d05aac293d899b1fc1f3396468b68053ca51579ebd8" }, "downloads": -1, "filename": "pyp_beagle-0.5.13-py2.6.egg", "has_sig": false, "md5_digest": "1f5872aa156df85facadc7af82205d9f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 141407, "upload_time": "2018-07-06T10:34:21", "url": "https://files.pythonhosted.org/packages/ac/f1/06cc2b5b3b3495164630e3bcb87551213ecb7d14be355e17015128d195d8/pyp_beagle-0.5.13-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ad47946091b5f3ac0adad99368101220", "sha256": "7ee2b2d8bab93535faa59cc225aef268e8f7c4ce1365454b3e94a3a31af77e89" }, "downloads": -1, "filename": "pyp_beagle-0.5.13-py2.7.egg", "has_sig": false, "md5_digest": "ad47946091b5f3ac0adad99368101220", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 142285, "upload_time": "2018-07-06T10:35:05", "url": "https://files.pythonhosted.org/packages/7d/8a/ebe7f912293b74e946e766246c7e54eb4dee87a479647c617c3903501e84/pyp_beagle-0.5.13-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "68817c222126aee95ae202e3d2055c15", "sha256": "abb6dd913ef4436e9845012a384d8d9554f7c080109095fd63888d39daf2b71d" }, "downloads": -1, "filename": "pyp_beagle-0.5.13.tar.gz", "has_sig": false, "md5_digest": "68817c222126aee95ae202e3d2055c15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58208, "upload_time": "2018-07-06T10:34:22", "url": "https://files.pythonhosted.org/packages/d3/4a/b2bc686ecf9ae01d3ece5c158b970b8b356bffd18c2aee37d99f44cda61a/pyp_beagle-0.5.13.tar.gz" } ], "0.5.14": [ { "comment_text": "", "digests": { "md5": "2ab072829740379aafb17b706c858123", "sha256": "39a0512266b058d3ae7e38bedf02bf1f03fb50ebda22dc769da07fcb1596c188" }, "downloads": -1, "filename": "pyp_beagle-0.5.14-py2.6.egg", "has_sig": false, "md5_digest": "2ab072829740379aafb17b706c858123", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 141430, "upload_time": "2018-07-30T18:44:27", "url": "https://files.pythonhosted.org/packages/37/f0/8da7b148b6a1e7e16f47fdf23436a05e48d051a2f9f2c2f1d9d8490b7b80/pyp_beagle-0.5.14-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "217fbdbd3aa4999a4fcb64ce74cbe156", "sha256": "2a0de760a3e9668aada04ef03b43149d78a20d3c1ffb4848eb75bc5ad49722e1" }, "downloads": -1, "filename": "pyp_beagle-0.5.14-py2.7.egg", "has_sig": false, "md5_digest": "217fbdbd3aa4999a4fcb64ce74cbe156", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 142306, "upload_time": "2018-07-30T18:44:48", "url": "https://files.pythonhosted.org/packages/41/6d/f2395fc080ce8e83ff94daa7d2c7997c2c84d9a7437090a9bd87bc9ad4ab/pyp_beagle-0.5.14-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "86a300e8b25a3d8a7b8e28398a950277", "sha256": "f32ea2157471ebcf74ca5a93c6d2159362ff1be078cd22247f4ac08abcd17346" }, "downloads": -1, "filename": "pyp_beagle-0.5.14.tar.gz", "has_sig": false, "md5_digest": "86a300e8b25a3d8a7b8e28398a950277", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58218, "upload_time": "2018-07-30T18:44:28", "url": "https://files.pythonhosted.org/packages/1c/ef/07e89b9cea7a21aa24145f4e903022e2096f8b9c9fc06166c90de60973be/pyp_beagle-0.5.14.tar.gz" } ], "0.5.15": [ { "comment_text": "", "digests": { "md5": "a517410cf9d6b134557750f3e278b96a", "sha256": "0bd5142adff5a63867e1e64c5715b94d41e2b8add16766bd29b95b699540ebb6" }, "downloads": -1, "filename": "pyp_beagle-0.5.15-py2.6.egg", "has_sig": false, "md5_digest": "a517410cf9d6b134557750f3e278b96a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 141478, "upload_time": "2018-08-01T20:09:42", "url": "https://files.pythonhosted.org/packages/da/79/a0baa76994f169f41b3dacfe419fa2d72c7ec71e71b5c0941cefd789f280/pyp_beagle-0.5.15-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "99f6ed68815550aa653791cff05b93fb", "sha256": "43f905edb34e879eb720f838b9f1ad08c16f516db150888e61e80e4e11404f0f" }, "downloads": -1, "filename": "pyp_beagle-0.5.15-py2.7.egg", "has_sig": false, "md5_digest": "99f6ed68815550aa653791cff05b93fb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 142353, "upload_time": "2018-08-01T20:10:28", "url": "https://files.pythonhosted.org/packages/3e/a8/fb79bd529a5f91566caec720c210c63502a664509a7e00421c9327e52547/pyp_beagle-0.5.15-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1370aa83e050e09f4bce3170067a1dee", "sha256": "0ddd44f6f3dc1de037c1f07fd989b925f4656fcd22398cc4f92026e8060d52b8" }, "downloads": -1, "filename": "pyp_beagle-0.5.15.tar.gz", "has_sig": false, "md5_digest": "1370aa83e050e09f4bce3170067a1dee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58261, "upload_time": "2018-08-01T20:09:44", "url": "https://files.pythonhosted.org/packages/ed/9a/81664d3440c97f23eb64d5bc055fb1e59e13d502ddf73b72eca4edc775f1/pyp_beagle-0.5.15.tar.gz" } ], "0.5.16": [ { "comment_text": "", "digests": { "md5": "d96374c579e10f4596fb0ee76e0a6008", "sha256": "838de9a61e351019fcae8d798977b475c90544c1c8bb006bd4ac83edad8094b5" }, "downloads": -1, "filename": "pyp_beagle-0.5.16-py2.6.egg", "has_sig": false, "md5_digest": "d96374c579e10f4596fb0ee76e0a6008", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 142142, "upload_time": "2018-08-02T19:24:11", "url": "https://files.pythonhosted.org/packages/5d/7c/a727dfdce2674d924033e060859aae185a57c25c763e8feaf657c0db5ae3/pyp_beagle-0.5.16-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "20243101fb5e7afa4efd36485844c72d", "sha256": "bd49a71457dda35f91566e71a21165b245a6d76d356e3c0c0c2f94ce7d59c7e3" }, "downloads": -1, "filename": "pyp_beagle-0.5.16-py2.7.egg", "has_sig": false, "md5_digest": "20243101fb5e7afa4efd36485844c72d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 143045, "upload_time": "2018-08-02T19:25:00", "url": "https://files.pythonhosted.org/packages/c7/b6/5802a16d7f7f93faa5e4977aae1d460ecedd122637d79d808a359007e8c0/pyp_beagle-0.5.16-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "cbe3b0b08dc0f143b1d6823ec8670cb8", "sha256": "bc15e7108fe7a8b95d0548355c648cf9c94fc8d2e7ffddf0f969852b32b3f046" }, "downloads": -1, "filename": "pyp_beagle-0.5.16.tar.gz", "has_sig": false, "md5_digest": "cbe3b0b08dc0f143b1d6823ec8670cb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58717, "upload_time": "2018-08-02T19:24:13", "url": "https://files.pythonhosted.org/packages/6b/f0/63a9cd504bef26a89d854545a0aebff0c88d704b13ffed9f12ff1afe8fa8/pyp_beagle-0.5.16.tar.gz" } ], "0.5.17": [ { "comment_text": "", "digests": { "md5": "a43a8c61dbd5e61146604cc46f069645", "sha256": "206c879370235dec23e1ea16e4ee989431cd72805cbd66c1b74fe414cfe60dd8" }, "downloads": -1, "filename": "pyp_beagle-0.5.17-py2.6.egg", "has_sig": false, "md5_digest": "a43a8c61dbd5e61146604cc46f069645", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 142164, "upload_time": "2018-08-28T10:43:11", "url": "https://files.pythonhosted.org/packages/cc/aa/2d0a43d6eb0354ce5293e6be003a0f9943efec0b035cb9a63eaebcc0b56b/pyp_beagle-0.5.17-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "6fa7c4a2fe9994cf4429b5416a0db55a", "sha256": "791c1480101a71f0650104c758c3402ce91bef3c4737c8e95af5f8f568cb0081" }, "downloads": -1, "filename": "pyp_beagle-0.5.17-py2.7.egg", "has_sig": false, "md5_digest": "6fa7c4a2fe9994cf4429b5416a0db55a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 143074, "upload_time": "2018-08-28T10:44:51", "url": "https://files.pythonhosted.org/packages/0d/53/d34b229e5900971a9f1060f2cd4acfd4f50ad7c6a7c4ae9a1c92638e0247/pyp_beagle-0.5.17-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "657f8dff54c1793ec629df545f4fc6cd", "sha256": "105d2076a6d00d4d348439653f6250254e2977b1066fee2c1ea1efe37e5790a9" }, "downloads": -1, "filename": "pyp_beagle-0.5.17.tar.gz", "has_sig": false, "md5_digest": "657f8dff54c1793ec629df545f4fc6cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58718, "upload_time": "2018-08-28T10:43:12", "url": "https://files.pythonhosted.org/packages/fc/80/6f4996c357e4762f2213ba4fc1ffec995b62141308812d2a29537e36d7e7/pyp_beagle-0.5.17.tar.gz" } ], "0.5.18": [ { "comment_text": "", "digests": { "md5": "8b8d603d78d94313b3ab0fc82bb1df46", "sha256": "0788546f2607164f363054174ef28d91784c1979ba8a9fd40499c03ad6a7c3bb" }, "downloads": -1, "filename": "pyp_beagle-0.5.18-py2.6.egg", "has_sig": false, "md5_digest": "8b8d603d78d94313b3ab0fc82bb1df46", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 143855, "upload_time": "2018-09-05T13:55:17", "url": "https://files.pythonhosted.org/packages/78/a8/46a67fcee8168c350d326e3ce3bcfb14ea41f25f5d2cbc111dd9c65c36f5/pyp_beagle-0.5.18-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "df9463cb42fb8d396144f6d4aff02aaa", "sha256": "115924e9fa38f7006626deea6c4f57cac144a4b54cd2ce3cddf9008ce68724ad" }, "downloads": -1, "filename": "pyp_beagle-0.5.18-py2.7.egg", "has_sig": false, "md5_digest": "df9463cb42fb8d396144f6d4aff02aaa", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 144763, "upload_time": "2018-09-05T13:57:25", "url": "https://files.pythonhosted.org/packages/3b/42/299733d1aae9a7df953ea3d0c54d5f05a0f21d3e94b2a1f588e89160ead8/pyp_beagle-0.5.18-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f4cd20f5232cfc8c23682ca50c70c494", "sha256": "fe5ddfb6e29b3b573ef8c524918131ac6ea7395d2ab4f8677898ba326a4fefed" }, "downloads": -1, "filename": "pyp_beagle-0.5.18.tar.gz", "has_sig": false, "md5_digest": "f4cd20f5232cfc8c23682ca50c70c494", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59525, "upload_time": "2018-09-05T13:55:18", "url": "https://files.pythonhosted.org/packages/fb/cc/7734e972e5a2c06e5ce7c7ebf0747f77763c530d60bc28b788e4e8fd16f6/pyp_beagle-0.5.18.tar.gz" } ], "0.5.19": [ { "comment_text": "", "digests": { "md5": "fbb74deafd9a6cfba3d414c0f4813369", "sha256": "e02f2091d16027d49dbd4caeb68cd7886a3e716f3149f47b1fa94d04361d77c4" }, "downloads": -1, "filename": "pyp_beagle-0.5.19-py2.6.egg", "has_sig": false, "md5_digest": "fbb74deafd9a6cfba3d414c0f4813369", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 143850, "upload_time": "2018-09-05T15:23:17", "url": "https://files.pythonhosted.org/packages/8f/5c/811150159d8ea88ad7623e74ccafebd3c1da5549ed980f0c4c3209e35e20/pyp_beagle-0.5.19-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ae8259753e64173bb59b0a023a0507f6", "sha256": "9ae455600d5e6943d1bf7fce2865d479fd4ef774065241d01865cf30661aacea" }, "downloads": -1, "filename": "pyp_beagle-0.5.19-py2.7.egg", "has_sig": false, "md5_digest": "ae8259753e64173bb59b0a023a0507f6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 144712, "upload_time": "2018-09-05T15:24:12", "url": "https://files.pythonhosted.org/packages/93/05/c4c01d59116cc4a51d47be1ef665bded6ccdc295c3bfbe381ad7a997f48c/pyp_beagle-0.5.19-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "24ec0b63e616e74c1c4bdafb1ce3e190", "sha256": "e50fb02845dea3cc7704de01ad57e5a34f676313c1194a8bd1947b436cf13f48" }, "downloads": -1, "filename": "pyp_beagle-0.5.19.tar.gz", "has_sig": false, "md5_digest": "24ec0b63e616e74c1c4bdafb1ce3e190", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59508, "upload_time": "2018-09-05T15:23:18", "url": "https://files.pythonhosted.org/packages/12/30/5ff7a3575208d127e888139ceb0013020494f32167f0dcb9143355fd6a47/pyp_beagle-0.5.19.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "c187a0d7e8e3a80b558b3d7214b21982", "sha256": "b1d3a07ec7260e41b40fc3f4454dc48b8abbe09d46e3d86f9d11310d4b3f3e4a" }, "downloads": -1, "filename": "pyp_beagle-0.5.2-py2.6.egg", "has_sig": false, "md5_digest": "c187a0d7e8e3a80b558b3d7214b21982", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 150507, "upload_time": "2017-07-28T14:10:05", "url": "https://files.pythonhosted.org/packages/f4/75/cc0ac8bf9ab2958576a77ddb63dd777c86ee14407bdb4210862940ffa14e/pyp_beagle-0.5.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "11c8fc2c1c3ddb5121c5fb146bab448e", "sha256": "0b1a31585424eaeb624e6882baa75f188a11efdda5c3095719b9f18f091c9ffc" }, "downloads": -1, "filename": "pyp_beagle-0.5.2-py2.7.egg", "has_sig": false, "md5_digest": "11c8fc2c1c3ddb5121c5fb146bab448e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 151350, "upload_time": "2017-07-28T14:10:08", "url": "https://files.pythonhosted.org/packages/51/d6/6eca1e517c1b9bddd56172cd69374e55a870b73cde758804e3cf4125f870/pyp_beagle-0.5.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7d1ea82bc103b58b8edbfd9fcfeda80c", "sha256": "c0e8840c9bcf981a972df9b95f914612b20a6effc1f6efa7955ab9a1560e8d81" }, "downloads": -1, "filename": "pyp_beagle-0.5.2.tar.gz", "has_sig": false, "md5_digest": "7d1ea82bc103b58b8edbfd9fcfeda80c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72325, "upload_time": "2017-07-28T14:10:10", "url": "https://files.pythonhosted.org/packages/17/3b/5716fa1fb0cf29df697d037bbba789a74ae4f0071f52c99610c84cecbfea/pyp_beagle-0.5.2.tar.gz" } ], "0.5.20": [ { "comment_text": "", "digests": { "md5": "80e382459e3270e52e36fb71f3171314", "sha256": "f5a861620ea0ce9d99643e7cd3153bdb339b65eb8f0b1c657c74948c523b9862" }, "downloads": -1, "filename": "pyp_beagle-0.5.20-py2.7.egg", "has_sig": false, "md5_digest": "80e382459e3270e52e36fb71f3171314", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 145362, "upload_time": "2018-10-02T13:00:54", "url": "https://files.pythonhosted.org/packages/73/ab/1e49a46a813f2eec9d3e66448b9ad16f863162a19476d2888edf69dee7ef/pyp_beagle-0.5.20-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8c07c7b14fbffc9ba12fab9a9eed93b1", "sha256": "274ba69373460859c66b50db419fb7e52228b28e68f398372ce4137073f63751" }, "downloads": -1, "filename": "pyp_beagle-0.5.20.tar.gz", "has_sig": false, "md5_digest": "8c07c7b14fbffc9ba12fab9a9eed93b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59827, "upload_time": "2018-10-02T13:00:55", "url": "https://files.pythonhosted.org/packages/2f/0b/a15c5b832829c72bdd91ca432bb471cb4bbf029e1ec982ac43efb423f8b3/pyp_beagle-0.5.20.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "cdcc7806dd6a6073d4f6b26f78143924", "sha256": "54b84d762756306a83fd63d04a57e3a66455e5d6ac0f2e369fd003c5e838a09e" }, "downloads": -1, "filename": "pyp_beagle-0.5.3-py2.6.egg", "has_sig": false, "md5_digest": "cdcc7806dd6a6073d4f6b26f78143924", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 136125, "upload_time": "2017-08-08T10:48:54", "url": "https://files.pythonhosted.org/packages/f5/50/0bbe0045896b638159ce168669a2a8ac6af0490ee0c0f7470e1ce54a0545/pyp_beagle-0.5.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "8450d6a383c03a4261b7d6e36372de52", "sha256": "2101474c32d21b6e6ab552fb7f517b095b83f476dc4235c2a2a47d9347b2d5f1" }, "downloads": -1, "filename": "pyp_beagle-0.5.3-py2.7.egg", "has_sig": false, "md5_digest": "8450d6a383c03a4261b7d6e36372de52", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 137013, "upload_time": "2017-08-08T10:50:34", "url": "https://files.pythonhosted.org/packages/2b/3f/2b4405b005ba2bb170a6fd313592fc46e8b70bc8344b408b689b981d655f/pyp_beagle-0.5.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6ad12157e0b4141742f7decdfe18e92e", "sha256": "47a9a6429b3b5c3f780fd027d16fa9be8680352ff495719a6c733252cfb815b8" }, "downloads": -1, "filename": "pyp_beagle-0.5.3.tar.gz", "has_sig": false, "md5_digest": "6ad12157e0b4141742f7decdfe18e92e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56045, "upload_time": "2017-08-08T10:48:55", "url": "https://files.pythonhosted.org/packages/f8/13/b974c3da063546bccf13b38987f3b01d5963a09e76eaa6f5569f0bc8c722/pyp_beagle-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "dd59f4ac250b76bf6b342f737968abc4", "sha256": "8e6ba06b265d1ddd667bb5f7d9170fe52f547216fcdb93780e182e0065ad5918" }, "downloads": -1, "filename": "pyp_beagle-0.5.4-py2.6.egg", "has_sig": false, "md5_digest": "dd59f4ac250b76bf6b342f737968abc4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 136135, "upload_time": "2017-08-08T10:59:13", "url": "https://files.pythonhosted.org/packages/9e/84/f400289665288993c1db9da65ce7f9969332639247c9695322afadaf4baa/pyp_beagle-0.5.4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "e571bf559c5f69fa2c52507a3c52151f", "sha256": "6fa6e55ebeb03865b8d0ded776a88f3b7bd43d4191f2bec487ebf50deb5081d8" }, "downloads": -1, "filename": "pyp_beagle-0.5.4-py2.7.egg", "has_sig": false, "md5_digest": "e571bf559c5f69fa2c52507a3c52151f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 137037, "upload_time": "2017-08-08T10:59:49", "url": "https://files.pythonhosted.org/packages/a2/48/c6d4502d832ca19bf85e308fcca324dfcfcaedb93ce37c300db8f5872fc6/pyp_beagle-0.5.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f8a3595adc7a3e93c8afdaaebcc8d9c3", "sha256": "7264f84926e3ee0c4b6430b605cc1417545beeef31766cf9d869b6dbb206cfbc" }, "downloads": -1, "filename": "pyp_beagle-0.5.4.tar.gz", "has_sig": false, "md5_digest": "f8a3595adc7a3e93c8afdaaebcc8d9c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56037, "upload_time": "2017-08-08T10:59:14", "url": "https://files.pythonhosted.org/packages/96/86/5cb3e97d747a38391d4a53de70a69ce8734bcdab401a7ee0fab98553975e/pyp_beagle-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "5d76896f82d5eebec01061bf68557d61", "sha256": "4976ba361327fd8529409a849c56ac34989fbe4a97a99596da987e8c665535aa" }, "downloads": -1, "filename": "pyp_beagle-0.5.5-py2.6.egg", "has_sig": false, "md5_digest": "5d76896f82d5eebec01061bf68557d61", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 137887, "upload_time": "2017-08-24T13:07:12", "url": "https://files.pythonhosted.org/packages/e7/3c/9702826b37bff4525e9b46e38b83819b248ebffc175ec21168a53049c47c/pyp_beagle-0.5.5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "18ad1c2c17a3f8411006ddc25ce222d3", "sha256": "0af9d0ef9c6f9425bd453bd99f5a132a55779d37dba34f78df2e6d71bafabd2c" }, "downloads": -1, "filename": "pyp_beagle-0.5.5-py2.7.egg", "has_sig": false, "md5_digest": "18ad1c2c17a3f8411006ddc25ce222d3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 138793, "upload_time": "2017-08-24T13:07:48", "url": "https://files.pythonhosted.org/packages/af/41/0a44c90e29171a05b90967fc5aeff1f91106d403026795728aeb1645e3ab/pyp_beagle-0.5.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1f72555097dde8c94e9e536b1e71045c", "sha256": "b2af8ddb0cd777d6d7db682f466d2c50220b53f0bb7ed46870625f869c80be77" }, "downloads": -1, "filename": "pyp_beagle-0.5.5.tar.gz", "has_sig": false, "md5_digest": "1f72555097dde8c94e9e536b1e71045c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56678, "upload_time": "2017-08-24T13:07:14", "url": "https://files.pythonhosted.org/packages/11/05/547d01fe3c096f80aba5420314bf0029fb9fd9da10bd5beac9aed794f332/pyp_beagle-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "6d2a10f692cdcc68fd28df33301b529c", "sha256": "5b708de60ea3c2690e98c64f2692c6068267d131add14f706d682b5d858b2fb5" }, "downloads": -1, "filename": "pyp_beagle-0.5.6-py2.6.egg", "has_sig": false, "md5_digest": "6d2a10f692cdcc68fd28df33301b529c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 138557, "upload_time": "2017-09-06T07:39:44", "url": "https://files.pythonhosted.org/packages/da/72/761c2a1f5aa96e61f9b61a1f06f0ea7577a9f20fa9c154219e1fc8a23026/pyp_beagle-0.5.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "b09f3c77d427ace227378108c4973109", "sha256": "26109cff2f49831bd879153c26ec97caf21bbabc1a9b6bdc02f50a917e534f8f" }, "downloads": -1, "filename": "pyp_beagle-0.5.6-py2.7.egg", "has_sig": false, "md5_digest": "b09f3c77d427ace227378108c4973109", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 139441, "upload_time": "2017-09-06T07:40:24", "url": "https://files.pythonhosted.org/packages/8f/b0/37b972ce19c09ec81ab0fee2efd46a7e26ad0a6b3f0b45a5c61f52b1deaf/pyp_beagle-0.5.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d54073b05be6263d5e33f9909732f1ae", "sha256": "fa582696e4c84243b8e5f4d4a99a322b9fee6ffcd12b917ccfdd00afcb650965" }, "downloads": -1, "filename": "pyp_beagle-0.5.6.tar.gz", "has_sig": false, "md5_digest": "d54073b05be6263d5e33f9909732f1ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56943, "upload_time": "2017-09-06T07:39:46", "url": "https://files.pythonhosted.org/packages/0c/67/0ef5be95df68ae0f0f8b240ae8c9f8ac88d184e0893105816b2c199ed387/pyp_beagle-0.5.6.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "9747be732508d5ce7085ed3a1adb6d17", "sha256": "e3ed8ff76c5bce5c0dfce65fd08c5e43816989eeff3f051cda9fac3c54205cfc" }, "downloads": -1, "filename": "pyp_beagle-0.5.7-py2.6.egg", "has_sig": false, "md5_digest": "9747be732508d5ce7085ed3a1adb6d17", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 138548, "upload_time": "2017-11-29T15:47:05", "url": "https://files.pythonhosted.org/packages/9a/82/b958a131262991a5361eba82f516aee106262740a1b63f8b4197cbcf95dd/pyp_beagle-0.5.7-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "998b12968052f7752389eac8bcd22364", "sha256": "423af06efa9321f467f942df4e588e0add0e887284c2b508302a670b1f1632ff" }, "downloads": -1, "filename": "pyp_beagle-0.5.7-py2.7.egg", "has_sig": false, "md5_digest": "998b12968052f7752389eac8bcd22364", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 139492, "upload_time": "2017-11-29T15:47:35", "url": "https://files.pythonhosted.org/packages/59/28/3f676ec3427d80ab63b5079ccb9692343d1616b1cd1d71494e5a54a54547/pyp_beagle-0.5.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "399ad7b04cb5fb37549f8924679ac194", "sha256": "649214a59fa65ffb88b174a351d3c6225e88c85a808c3bc69244a2017359abcc" }, "downloads": -1, "filename": "pyp_beagle-0.5.7.tar.gz", "has_sig": false, "md5_digest": "399ad7b04cb5fb37549f8924679ac194", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56956, "upload_time": "2017-11-29T15:47:08", "url": "https://files.pythonhosted.org/packages/df/3a/7c9b2c18f79ef01dd500f4766f31dc8e5b66eb1862e4b513c5c4bbe4926d/pyp_beagle-0.5.7.tar.gz" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "77b44d475050aa490d91a60ac68863e0", "sha256": "eb51d0c2b0f6d2a357729eb0922f45577efcc69d7f819fb20493a2cb803717f4" }, "downloads": -1, "filename": "pyp_beagle-0.5.8-py2.6.egg", "has_sig": false, "md5_digest": "77b44d475050aa490d91a60ac68863e0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 139028, "upload_time": "2017-12-07T20:20:21", "url": "https://files.pythonhosted.org/packages/08/7e/389ded3460530f92ecb4fc8a7560491568798add79d2e10c1d9e4821830c/pyp_beagle-0.5.8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "8c21c909a2cb0d2d795b9c7e43ac0b8b", "sha256": "4083bdb10a605dc1600d578fd93445e3a16e8d31211dffdb6f2a753d13b7ab99" }, "downloads": -1, "filename": "pyp_beagle-0.5.8-py2.7.egg", "has_sig": false, "md5_digest": "8c21c909a2cb0d2d795b9c7e43ac0b8b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 139960, "upload_time": "2017-12-07T20:20:53", "url": "https://files.pythonhosted.org/packages/fb/ad/5bee441fee459c076a1003ffc19b2737a39267e57b496b547e5adc3d51e4/pyp_beagle-0.5.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "172fa239f97a60072311c430316f538d", "sha256": "af9767c4ed384ddc39be2c7853b1d5503e1a9dc134465b50301269ad051df753" }, "downloads": -1, "filename": "pyp_beagle-0.5.8.tar.gz", "has_sig": false, "md5_digest": "172fa239f97a60072311c430316f538d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57156, "upload_time": "2017-12-07T20:20:23", "url": "https://files.pythonhosted.org/packages/34/9e/cebff128c852f91b7b3eccea11ee5edc2792c5bfd20efcdb7c55881ffcbb/pyp_beagle-0.5.8.tar.gz" } ], "0.5.9": [ { "comment_text": "", "digests": { "md5": "19a3add786393885c6ea37bc6e714026", "sha256": "f7df4b2f6a71f3172b00912a218a2e355f760f32bd7f67b4c2e2db2d674f5127" }, "downloads": -1, "filename": "pyp_beagle-0.5.9-py2.6.egg", "has_sig": false, "md5_digest": "19a3add786393885c6ea37bc6e714026", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 139143, "upload_time": "2017-12-13T16:50:13", "url": "https://files.pythonhosted.org/packages/24/16/16cf16889166124cfa4e449c96e39e88b9f4cd257ad9562953d7c0e79104/pyp_beagle-0.5.9-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "856c9ab4cd0347e1d4129f13efffa28c", "sha256": "30c4eb370b3eb1a709dd117e5e153a7c8217d6cc622862f49ed18a0910eed18d" }, "downloads": -1, "filename": "pyp_beagle-0.5.9-py2.7.egg", "has_sig": false, "md5_digest": "856c9ab4cd0347e1d4129f13efffa28c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 140057, "upload_time": "2017-12-13T16:50:46", "url": "https://files.pythonhosted.org/packages/8c/04/525af147cbea7891776fdae87edfdb66dde30937601c3a9385ea418ca6f3/pyp_beagle-0.5.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b103ccac4dbc9add877bad26aa681c5d", "sha256": "2fbd227fa9593c5b6da002d8d2768c3c686f65847f9dc44cd7feffd7946e1d2d" }, "downloads": -1, "filename": "pyp_beagle-0.5.9.tar.gz", "has_sig": false, "md5_digest": "b103ccac4dbc9add877bad26aa681c5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57185, "upload_time": "2017-12-13T16:50:18", "url": "https://files.pythonhosted.org/packages/ec/6e/51848c659e89a1b594b75fdf9ec276e414e550e7ae0af05fb8906110f594/pyp_beagle-0.5.9.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "ab680b6b6ba40abb3ab94d4fffd0e9cb", "sha256": "3271c05b773ef5a6264e274dfc715e86e7ef31f71565d64168906d5bd5e38eba" }, "downloads": -1, "filename": "pyp_beagle-0.6.0-py2.7.egg", "has_sig": false, "md5_digest": "ab680b6b6ba40abb3ab94d4fffd0e9cb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 154111, "upload_time": "2019-02-27T16:52:37", "url": "https://files.pythonhosted.org/packages/7e/c4/e7e815cdde57c6abf64844f174f684865997c30721838d1fc3b5c6691d45/pyp_beagle-0.6.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5c8540d764a892b3a3006f11200e0863", "sha256": "650c6ac751aedeeacb8d18bd87fd3e3d97243752b158467d5335e88587388234" }, "downloads": -1, "filename": "pyp_beagle-0.6.0.tar.gz", "has_sig": false, "md5_digest": "5c8540d764a892b3a3006f11200e0863", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62872, "upload_time": "2019-02-27T16:52:38", "url": "https://files.pythonhosted.org/packages/36/c8/56cef6bca48969ac33ca35434fd4c3f966f67e7379756bb1c37641fe4851/pyp_beagle-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "e7f000e5392081331d92a7b27fbf2330", "sha256": "3a3124876703339c24c2a0d92b294313e2e11591b19de9f1314ebaa0a77cc7b6" }, "downloads": -1, "filename": "pyp_beagle-0.6.1-py2.7.egg", "has_sig": false, "md5_digest": "e7f000e5392081331d92a7b27fbf2330", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 155041, "upload_time": "2019-02-28T15:00:44", "url": "https://files.pythonhosted.org/packages/fb/bf/743eb795aa827c7b763a4676905b1e074d55db93216092e2851648652a60/pyp_beagle-0.6.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "37b454f4164906af2abaad188e1fed68", "sha256": "c7deb6746ea8b7c2984cec8595998adb0408885db5bffc0b9ba66373ea39f332" }, "downloads": -1, "filename": "pyp_beagle-0.6.1.tar.gz", "has_sig": false, "md5_digest": "37b454f4164906af2abaad188e1fed68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63371, "upload_time": "2019-02-28T15:00:46", "url": "https://files.pythonhosted.org/packages/00/f0/823d4257308bc9d7a6f058aafc3b527216df783fe8ab725c0faf864cc2b0/pyp_beagle-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "20e6921758fb6bd991acc184a6f3d14f", "sha256": "1618d392f3133388adb3655856ff9edf6bd32231a8225d4f5a439e0235bdba92" }, "downloads": -1, "filename": "pyp_beagle-0.6.2-py2.7.egg", "has_sig": false, "md5_digest": "20e6921758fb6bd991acc184a6f3d14f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 155073, "upload_time": "2019-02-28T15:22:56", "url": "https://files.pythonhosted.org/packages/c8/1c/ec7f2bb81e523a87691cb8e8e9934fec580647e6b6912f9f30a613fe50ea/pyp_beagle-0.6.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8c066f233cb73b564aff71336b77c6e3", "sha256": "c32dd2391615d7bffc3adcefd141c76c0887a122eacff7fd165e00ea573c3d3e" }, "downloads": -1, "filename": "pyp_beagle-0.6.2.tar.gz", "has_sig": false, "md5_digest": "8c066f233cb73b564aff71336b77c6e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63373, "upload_time": "2019-02-28T15:22:58", "url": "https://files.pythonhosted.org/packages/1a/7c/b61f5161bf923199e9e295f187db5a3e59f7f8bba29ce49b3aae0b18aac8/pyp_beagle-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "d067d93a8a90401740bcb27769050ec1", "sha256": "ab2cefef5c7be1a5c93f5e7119f483429a82593c54af3486fb328f6dda47ebac" }, "downloads": -1, "filename": "pyp_beagle-0.6.3-py2.7.egg", "has_sig": false, "md5_digest": "d067d93a8a90401740bcb27769050ec1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 155107, "upload_time": "2019-03-08T15:10:49", "url": "https://files.pythonhosted.org/packages/e4/e9/35651bb6680552b3a1a6837c39e80e3e6d28e8b5483fb7290f47eff15a8f/pyp_beagle-0.6.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c8e6d8051f69b45f1b8b28422b02958c", "sha256": "839166227c78d43b1ed60a2f30c41e3d447c7d2d485fd7baf4fa25c37c7f0b2f" }, "downloads": -1, "filename": "pyp_beagle-0.6.3.tar.gz", "has_sig": false, "md5_digest": "c8e6d8051f69b45f1b8b28422b02958c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63382, "upload_time": "2019-03-08T15:10:51", "url": "https://files.pythonhosted.org/packages/f8/b4/c21ffc305b9ecbcbdcffcd0eafc3a9b7fcb8d3ff702e9c1695b0862a3338/pyp_beagle-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "75b210a8f5bd84621f987b25a2a1eb5a", "sha256": "9f00b327189b43ec4d50260eb6609a93e67e9ff65f3e71f8c3c3f7f531791846" }, "downloads": -1, "filename": "pyp_beagle-0.6.4-py2.7.egg", "has_sig": false, "md5_digest": "75b210a8f5bd84621f987b25a2a1eb5a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 155014, "upload_time": "2019-03-27T17:17:13", "url": "https://files.pythonhosted.org/packages/d3/e6/0deabc635509f40d8ad54679e1c2122afb94facc2cf1b46e5b7f2f50a6d9/pyp_beagle-0.6.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7123b0c248b24f17d0bb7924d6545e2a", "sha256": "8a8c65efbe5e32d2806d7d3b261a8612feead176e6afa74f38f2f7b204ace126" }, "downloads": -1, "filename": "pyp_beagle-0.6.4.tar.gz", "has_sig": false, "md5_digest": "7123b0c248b24f17d0bb7924d6545e2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63249, "upload_time": "2019-03-27T17:17:14", "url": "https://files.pythonhosted.org/packages/dc/93/f1fddd4782ac0ddfd435e838d0f3586e223fb0b300fb6b8c1daae98c487f/pyp_beagle-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "23285a712709db562d5f7e274b26cba4", "sha256": "e0647abd8a0c82f21678978f6d6f09c947012c9fa2a78d71c1c78637ca514c13" }, "downloads": -1, "filename": "pyp_beagle-0.6.5-py2.7.egg", "has_sig": false, "md5_digest": "23285a712709db562d5f7e274b26cba4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 155482, "upload_time": "2019-04-05T13:28:09", "url": "https://files.pythonhosted.org/packages/d4/28/4e5503201e40a9dd70d3294d3dbf2bf952bb5576ad8cf7c4ae63dcdf81a1/pyp_beagle-0.6.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "4e54782f98b3a50f8f4259c1885e86fd", "sha256": "d191f791fb7ccad49d467383faccf9814aba843b374a39f7ec7a25d6f7c2618d" }, "downloads": -1, "filename": "pyp_beagle-0.6.5.tar.gz", "has_sig": false, "md5_digest": "4e54782f98b3a50f8f4259c1885e86fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63575, "upload_time": "2019-04-05T13:28:11", "url": "https://files.pythonhosted.org/packages/52/32/a9abfaf00358f27605f7e9edd9deee5b89c8be506f28d496318e1bc74ee3/pyp_beagle-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "7069f2ada5ed01442c24ff854e3787e9", "sha256": "ac677f4a23908a7afb40b74e7ad7ca633a27ebd6f169df1e258aaeeb0bc6c201" }, "downloads": -1, "filename": "pyp_beagle-0.6.6-py2.7.egg", "has_sig": false, "md5_digest": "7069f2ada5ed01442c24ff854e3787e9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 156211, "upload_time": "2019-07-16T08:25:54", "url": "https://files.pythonhosted.org/packages/77/72/bdd1992ffdefa54f1083f571238be418cef106613a856d3ab1b7c5f80e7c/pyp_beagle-0.6.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "79ecd9ddf7a3436a691c4190626923b0", "sha256": "06c84cc575a3509381810be5e100fdcd2610c48303af8d0dfb8efab3933df009" }, "downloads": -1, "filename": "pyp_beagle-0.6.6.tar.gz", "has_sig": false, "md5_digest": "79ecd9ddf7a3436a691c4190626923b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64059, "upload_time": "2019-07-16T08:25:56", "url": "https://files.pythonhosted.org/packages/9c/fc/dcf05bd740a78ea93316ab71bfefc1d9c04de00611ef2ca520855deae2f8/pyp_beagle-0.6.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7069f2ada5ed01442c24ff854e3787e9", "sha256": "ac677f4a23908a7afb40b74e7ad7ca633a27ebd6f169df1e258aaeeb0bc6c201" }, "downloads": -1, "filename": "pyp_beagle-0.6.6-py2.7.egg", "has_sig": false, "md5_digest": "7069f2ada5ed01442c24ff854e3787e9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 156211, "upload_time": "2019-07-16T08:25:54", "url": "https://files.pythonhosted.org/packages/77/72/bdd1992ffdefa54f1083f571238be418cef106613a856d3ab1b7c5f80e7c/pyp_beagle-0.6.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "79ecd9ddf7a3436a691c4190626923b0", "sha256": "06c84cc575a3509381810be5e100fdcd2610c48303af8d0dfb8efab3933df009" }, "downloads": -1, "filename": "pyp_beagle-0.6.6.tar.gz", "has_sig": false, "md5_digest": "79ecd9ddf7a3436a691c4190626923b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64059, "upload_time": "2019-07-16T08:25:56", "url": "https://files.pythonhosted.org/packages/9c/fc/dcf05bd740a78ea93316ab71bfefc1d9c04de00611ef2ca520855deae2f8/pyp_beagle-0.6.6.tar.gz" } ] }