{
"info": {
"author": "Klaus Greff",
"author_email": "klaus.greff@startmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
],
"description": "Sacred\n======\n\n | *Every experiment is sacred*\n | *Every experiment is great*\n | *If an experiment is wasted*\n | *God gets quite irate*\n\n|pypi| |py_versions| |license| |rtfd| |doi|\n\n|build| |coverage| |code_quality| |black|\n\n\n\n\nSacred is a tool to help you configure, organize, log and reproduce experiments.\nIt is designed to do all the tedious overhead work that you need to do around\nyour actual experiment in order to:\n\n- keep track of all the parameters of your experiment\n- easily run your experiment for different settings\n- save configurations for individual runs in a database\n- reproduce your results\n\nSacred achieves this through the following main mechanisms:\n\n- **ConfigScopes** A very convenient way of the local variables in a function\n to define the parameters your experiment uses.\n- **Config Injection**: You can access all parameters of your configuration\n from every function. They are automatically injected by name.\n- **Command-line interface**: You get a powerful command-line interface for each\n experiment that you can use to change parameters and run different variants.\n- **Observers**: Sacred provides Observers that log all kinds of information\n about your experiment, its dependencies, the configuration you used,\n the machine it is run on, and of course the result. These can be saved\n to a MongoDB, for easy access later.\n- **Automatic seeding** helps controlling the randomness in your experiments,\n such that the results remain reproducible.\n\nExample\n-------\n+------------------------------------------------+--------------------------------------------+\n| **Script to train an SVM on the iris dataset** | **The same script as a Sacred experiment** |\n+------------------------------------------------+--------------------------------------------+\n| .. code:: python | .. code:: python |\n| | |\n| from numpy.random import permutation | from numpy.random import permutation |\n| from sklearn import svm, datasets | from sklearn import svm, datasets |\n| | from sacred import Experiment |\n| | ex = Experiment('iris_rbf_svm') |\n| | |\n| | @ex.config |\n| | def cfg(): |\n| C = 1.0 | C = 1.0 |\n| gamma = 0.7 | gamma = 0.7 |\n| | |\n| | @ex.automain |\n| | def run(C, gamma): |\n| iris = datasets.load_iris() | iris = datasets.load_iris() |\n| perm = permutation(iris.target.size) | per = permutation(iris.target.size) |\n| iris.data = iris.data[perm] | iris.data = iris.data[per] |\n| iris.target = iris.target[perm] | iris.target = iris.target[per] |\n| clf = svm.SVC(C, 'rbf', gamma=gamma) | clf = svm.SVC(C, 'rbf', gamma=gamma) |\n| clf.fit(iris.data[:90], | clf.fit(iris.data[:90], |\n| iris.target[:90]) | iris.target[:90]) |\n| print(clf.score(iris.data[90:], | return clf.score(iris.data[90:], |\n| iris.target[90:])) | iris.target[90:]) |\n+------------------------------------------------+--------------------------------------------+\n\nDocumentation\n-------------\nThe documentation is hosted at `ReadTheDocs `_.\n\nInstalling\n----------\nYou can directly install it from the Python Package Index with pip:\n\n pip install sacred\n\nOr if you want to do it manually you can checkout the current version from git\nand install it yourself:\n\n | git clone https://github.com/IDSIA/sacred.git\n | cd sacred\n | python setup.py install\n\nYou might want to also install the ``numpy`` and the ``pymongo`` packages. They are\noptional dependencies but they offer some cool features:\n\n pip install numpy, pymongo\n\nTests\n-----\nThe tests for sacred use the `pytest `_ package.\nYou can execute them by running ``pytest`` in the sacred directory like this:\n\n pytest\n\nThere is also a config file for `tox `_ so you\ncan automatically run the tests for various python versions like this:\n\n tox\n\nContributing\n------------\nIf you find a bug, have a feature request or want to discuss something general you are welcome to open an\n`issue `_. If you have a specific question related\nto the usage of sacred, please ask a question on StackOverflow under the\n`python-sacred tag `_. We value documentation\na lot. If you find something that should be included in the documentation please\ndocument it or let us know whats missing. If you are using Sacred in one of your projects and want to share\nyour code with others, put your repo in the `Projects using Sacred _ list.\nPull requests are highly welcome!\n\nFrontends\n---------\nAt this point there are three frontends to the database entries created by sacred (that I'm aware of).\nThey are developed externally as separate projects.\n\n`Omniboard `_\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n.. image:: docs/images/omniboard-table.png\n.. image:: docs/images/omniboard-metric-graphs.png\n\nOmniboard is a web dashboard that helps in visualizing the experiments and metrics / logs collected by sacred.\nOmniboard is written with React, Node.js, Express and Bootstrap.\n\n\n`Incense `_\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n.. image:: docs/images/incense-artifact.png\n.. image:: docs/images/incense-metric.png\n\nIncense is a Python library to retrieve runs stored in a MongoDB and interactively display metrics and artifacts\nin Jupyter notebooks.\n\n`Sacredboard `_\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n.. image:: docs/images/sacredboard.png\n\nSacredboard is a web-based dashboard interface to the sacred runs stored in a\nMongoDB.\n\n`Neptune `_\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n.. image:: docs/images/neptune-compare.png\n.. image:: docs/images/neptune-collaboration.png\n\nNeptune is a web service that lets you visualize, organize and compare your experiment runs.\nOnce things are logged to Neptune you can share it with others, add comments and even access objects via\nexperiment API:\n\n.. image:: docs/images/neptune-query-api.png\n\nIn order to log your runs to Neptune, all you need to do is add an observer:\n\n.. code-block:: python\n\n from neptunecontrib.monitoring.sacred import NeptuneObserver\n ex.observers.append(NeptuneObserver(api_token='YOUR_API_TOKEN',\n project_name='USER_NAME/PROJECT_NAME'))\n\nFor more info, check the `neptune-contrib library `_.\n\n`SacredBrowser `_\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n.. image:: docs/images/sacred_browser.png\n\nSacredBrowser is a PyQt4 application to browse the MongoDB entries created by\nsacred experiments.\nFeatures include custom queries, sorting of the results,\naccess to the stored source-code, and many more.\nNo installation is required and it can connect to a local\ndatabase or over the network.\n\n\n`Prophet `_\n+++++++++++++++++++++++++++++++++++++++++++++++\nProphet is an early prototype of a webinterface to the MongoDB entries created by\nsacred experiments, that is discontinued.\nIt requires you to run `RestHeart `_ to access the database.\n\n\nRelated Projects\n----------------\n\n`Sumatra `_\n++++++++++++++++++++++++++++++++++++++++++++++\n | Sumatra is a tool for managing and tracking projects based on numerical\n | simulation and/or analysis, with the aim of supporting reproducible research.\n | It can be thought of as an automated electronic lab notebook for\n | computational projects.\n\nSumatra takes a different approach by providing commandline tools to initialize\na project and then run arbitrary code (not just python).\nIt tracks information about all runs in a SQL database and even provides a nice browser tool.\nIt integrates less tightly with the code to be run, which makes it easily\napplicable to non-python experiments.\nBut that also means it requires more setup for each experiment and\nconfiguration needs to be done using files.\nUse this project if you need to run non-python experiments, or are ok with the additional setup/configuration overhead.\n\n\n`Future Gadget Laboratory `_\n++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n | FGLab is a machine learning dashboard, designed to make prototyping\n | experiments easier. Experiment details and results are sent to a database,\n | which allows analytics to be performed after their completion. The server\n | is FGLab, and the clients are FGMachines.\n\nSimilar to Sumatra, FGLab is an external tool that can keep track of runs from\nany program. Projects are configured via a JSON schema and the program needs to\naccept these configurations via command-line options.\nFGLab also takes the role of a basic scheduler by distributing runs over several\nmachines.\n\n\n`CDE `_\n+++++++++++++++++++++++++++++++++++++++++\nBy tracing system calls during program execution CDE creates a snapshot of\n**all** used files and libraries to guarantee the ability to reproduce any unix\nprogram execution. It *only* solves reproducibility, but it does so thoroughly.\n\n\nLicense\n-------\nThis project is released under the terms of the `MIT license `_.\n\n\nCiting Sacred\n-------------\n`K. Greff, A. Klein, M. Chovanec, F. Hutter, and J. Schmidhuber, \u2018The Sacred Infrastructure for Computational Research\u2019, \nin Proceedings of the 15th Python in Science Conference (SciPy 2017), Austin, Texas, 2017, pp. 49\u201356 \n`_.\n\n\n.. |pypi| image:: https://img.shields.io/pypi/v/sacred.svg\n :target: https://pypi.python.org/pypi/sacred\n :alt: Current PyPi Version\n\n.. |py_versions| image:: https://img.shields.io/pypi/pyversions/sacred.svg\n :target: https://pypi.python.org/pypi/sacred\n :alt: Supported Python Versions\n\n.. |license| image:: https://img.shields.io/badge/license-MIT-blue.png\n :target: http://choosealicense.com/licenses/mit/\n :alt: MIT licensed\n\n.. |rtfd| image:: https://readthedocs.org/projects/sacred/badge/?version=latest&style=flat\n :target: https://sacred.readthedocs.io/en/stable/\n :alt: ReadTheDocs\n\n.. |doi| image:: https://zenodo.org/badge/doi/10.5281/zenodo.16386.svg\n :target: http://dx.doi.org/10.5281/zenodo.16386\n :alt: DOI for this release\n\n.. |build| image:: https://dev.azure.com/qwlouse/Sacred%20CI/_apis/build/status/IDSIA.sacred?branchName=master\n :target: https://dev.azure.com/qwlouse/Sacred%20CI/_build/latest?definitionId=1&branchName=master\n :alt: Azure CI status\n\n.. |coverage| image:: https://coveralls.io/repos/IDSIA/sacred/badge.svg\n :target: https://coveralls.io/r/IDSIA/sacred\n :alt: Coverage Report\n\n.. |code_quality| image:: https://scrutinizer-ci.com/g/IDSIA/sacred/badges/quality-score.png?b=master\n :target: https://scrutinizer-ci.com/g/IDSIA/sacred/\n :alt: Code Scrutinizer Quality\n\n.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/ambv/black\n :alt: Code style: black",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/IDSIA/sacred",
"keywords": "",
"license": "",
"maintainer": "",
"maintainer_email": "",
"name": "sacred",
"package_url": "https://pypi.org/project/sacred/",
"platform": "",
"project_url": "https://pypi.org/project/sacred/",
"project_urls": {
"Homepage": "https://github.com/IDSIA/sacred"
},
"release_url": "https://pypi.org/project/sacred/0.8.0/",
"requires_dist": null,
"requires_python": "",
"summary": "Facilitates automated and reproducible experimental research",
"version": "0.8.0"
},
"last_serial": 5972020,
"releases": {
"0.5": [
{
"comment_text": "",
"digests": {
"md5": "7519bee9d6ee0d251df48842957ccb52",
"sha256": "668e8df7283afe2780c67f0d0d1697ac7ad165ca9a207b44d8c4684bae8f2877"
},
"downloads": -1,
"filename": "sacred-0.5-py2-none-any.whl",
"has_sig": false,
"md5_digest": "7519bee9d6ee0d251df48842957ccb52",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 26469,
"upload_time": "2014-09-24T12:14:38",
"url": "https://files.pythonhosted.org/packages/6a/e9/4c4bdb3a392b3584a8678be120685befb914f540f7a695f14d17026a378d/sacred-0.5-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ddcf7668b981b37c1f606109563667ed",
"sha256": "5b511b28529dde680964500e7ff841ac940c3bb020f174516355a15b1e795173"
},
"downloads": -1,
"filename": "sacred-0.5.tar.gz",
"has_sig": false,
"md5_digest": "ddcf7668b981b37c1f606109563667ed",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20052,
"upload_time": "2014-09-23T09:35:45",
"url": "https://files.pythonhosted.org/packages/65/cd/47a356bb8da2e81dd0647d0dfa2a77007ff7204778b00607a1d10a0760dc/sacred-0.5.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "96c1363b09ca21de253eb6fd329a0141",
"sha256": "ce6ffd87c236cdecbbcbf11c179f0ecdac8c7d642c180a727e9703ca03394b53"
},
"downloads": -1,
"filename": "sacred-0.5.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "96c1363b09ca21de253eb6fd329a0141",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 27429,
"upload_time": "2014-10-07T18:09:21",
"url": "https://files.pythonhosted.org/packages/fb/e8/086c8ca0024ae28df0f622c343a417119c84a7e241eb87f47f622f555ae7/sacred-0.5.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "30bcf4987550024f0f96553ad98f1ffb",
"sha256": "680a8efcfd430976376037f119a8089d2499cdbf888263d5c09bc033848bace0"
},
"downloads": -1,
"filename": "sacred-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "30bcf4987550024f0f96553ad98f1ffb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22724,
"upload_time": "2014-10-07T18:08:57",
"url": "https://files.pythonhosted.org/packages/0f/18/aa2610a671de04a9a319da0940e8c48c339ff10e6e7aae56541f3a717928/sacred-0.5.1.tar.gz"
}
],
"0.5.2": [
{
"comment_text": "",
"digests": {
"md5": "6465e58add498503436c20d1ec403972",
"sha256": "76c94d08024dbf77da5c4c9957087515012acd2854c9eb7dd68f6030ab02e768"
},
"downloads": -1,
"filename": "sacred-0.5.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6465e58add498503436c20d1ec403972",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 27425,
"upload_time": "2015-02-09T12:50:09",
"url": "https://files.pythonhosted.org/packages/cf/71/1120d221014f65bc52398ee18e45a3ae04ffec80a9235734077277d21916/sacred-0.5.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6f7cfd62384544c40a2ce2e563f05cf7",
"sha256": "cea722a2e082187735138b46b9790ea0a8f3071fb82ce1fd5d9c3cac84b30413"
},
"downloads": -1,
"filename": "sacred-0.5.2.tar.gz",
"has_sig": false,
"md5_digest": "6f7cfd62384544c40a2ce2e563f05cf7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22736,
"upload_time": "2015-02-09T12:49:47",
"url": "https://files.pythonhosted.org/packages/08/7f/92cc051f62d1aa58c1fa21a19fb61026e97a91da2bff4eb8491c513eb107/sacred-0.5.2.tar.gz"
}
],
"0.6": [
{
"comment_text": "",
"digests": {
"md5": "92a11d2196481e6c8e575ac38f66f251",
"sha256": "b76296d0a45f75d297d681ac6651f90ada9e03ef4ff9034d449c1e97bac6d535"
},
"downloads": -1,
"filename": "sacred-0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "92a11d2196481e6c8e575ac38f66f251",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 35791,
"upload_time": "2015-03-17T02:09:10",
"url": "https://files.pythonhosted.org/packages/9d/f8/a558caa12e9eddb3d48c06d3d44a76df4e85c49233635ab5ca410baa48d8/sacred-0.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "44c0d67fc9c23c292835402e89078145",
"sha256": "69174066c3bf1b377bf2239d2b5fd9a07646b9642664a0573c0f3cd02cd42499"
},
"downloads": -1,
"filename": "sacred-0.6.tar.gz",
"has_sig": false,
"md5_digest": "44c0d67fc9c23c292835402e89078145",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25708,
"upload_time": "2015-03-17T02:09:07",
"url": "https://files.pythonhosted.org/packages/bc/d4/241c1c2d92fa36fe2f627023f9b6d03773b3c24f5e1b9c6b22f27d756560/sacred-0.6.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "a55ee4db02065295d202dad7f6730502",
"sha256": "78576d3de733dfe39004546b443f84a4742984378705c44f55d1b85b3a3c8131"
},
"downloads": -1,
"filename": "sacred-0.6.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a55ee4db02065295d202dad7f6730502",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 36828,
"upload_time": "2015-04-06T20:25:05",
"url": "https://files.pythonhosted.org/packages/87/4b/e5bf36757db1ea16fa8c5be1e9c120b0e408d5605c67e7f022353493c3eb/sacred-0.6.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e63101b4b2606cd9585909d4b499e142",
"sha256": "b57a31b547d12690ad5410d4e7517628968ff736998ed4b68be7c31925fa6943"
},
"downloads": -1,
"filename": "sacred-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "e63101b4b2606cd9585909d4b499e142",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26515,
"upload_time": "2015-04-06T20:25:00",
"url": "https://files.pythonhosted.org/packages/76/ad/2c409143a1aaa582df768f63717393d92325abdb87d546d2971f2d4131a0/sacred-0.6.1.tar.gz"
}
],
"0.6.10": [
{
"comment_text": "",
"digests": {
"md5": "ec60c19bb298cac196caa1af42bcfbfe",
"sha256": "5e849fb9b62024aac0e401bccc4cfae8247f5a0611559c1d1ea28c30eaa814d3"
},
"downloads": -1,
"filename": "sacred-0.6.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ec60c19bb298cac196caa1af42bcfbfe",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 46996,
"upload_time": "2016-08-08T13:47:56",
"url": "https://files.pythonhosted.org/packages/db/23/bd4c9cc1cb2ab0fc7af610de32676defa9fa652af2d6051ad47ac91b1dff/sacred-0.6.10-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1ee4422677abf134ce435cece8cdac13",
"sha256": "cbe6779e837ce5df9184928c38fd4362376a1468e5a7d0a08b22177f482d784d"
},
"downloads": -1,
"filename": "sacred-0.6.10.tar.gz",
"has_sig": false,
"md5_digest": "1ee4422677abf134ce435cece8cdac13",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34508,
"upload_time": "2016-08-08T13:47:53",
"url": "https://files.pythonhosted.org/packages/3a/3d/7472f176cac6652dcb0ec7021afe3617e4ec0d2db10375990feba575cdb2/sacred-0.6.10.tar.gz"
}
],
"0.6.2": [
{
"comment_text": "",
"digests": {
"md5": "3497ea886b6537857dc20e9fdb7e0bec",
"sha256": "1583fdbbf9ccee893c913f0c7b690e4e2a3ed275e2bb639be1a2aa0b4c387a33"
},
"downloads": -1,
"filename": "sacred-0.6.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3497ea886b6537857dc20e9fdb7e0bec",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 36837,
"upload_time": "2015-04-16T11:58:57",
"url": "https://files.pythonhosted.org/packages/61/b6/ec376bd6bcf971af539ee9f0588dc2b686392abc5abf0627f121572113bb/sacred-0.6.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5a336028707d635e53cfe786ea995fa8",
"sha256": "95ced3fdef088e22ca83bc8e22a154d34adcbc2f7a83729e1e6c8abd6efbdf84"
},
"downloads": -1,
"filename": "sacred-0.6.2.tar.gz",
"has_sig": false,
"md5_digest": "5a336028707d635e53cfe786ea995fa8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28240,
"upload_time": "2015-04-16T11:58:53",
"url": "https://files.pythonhosted.org/packages/90/33/3884628d4f1998f3288f6cef1aace091fc599333589a27db08b502577ca9/sacred-0.6.2.tar.gz"
}
],
"0.6.3": [
{
"comment_text": "",
"digests": {
"md5": "1fb94a921b913e42cb8eb72f09abac28",
"sha256": "fb5d8857825ffd5354653abd6138b979b071c6d0497b5253325c0e705ae9d877"
},
"downloads": -1,
"filename": "sacred-0.6.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1fb94a921b913e42cb8eb72f09abac28",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 37885,
"upload_time": "2015-04-28T18:02:27",
"url": "https://files.pythonhosted.org/packages/1d/31/b7d5e605a632bb2734389837c7e6a7b06b848dda66fa05b40cb0c454f639/sacred-0.6.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a7ea09598bcdb87c729329ccf996e518",
"sha256": "f0a7a0337068d4ca2581bb8ed74442afcb117a3965d1bad470d7e067a9b2439a"
},
"downloads": -1,
"filename": "sacred-0.6.3.tar.gz",
"has_sig": false,
"md5_digest": "a7ea09598bcdb87c729329ccf996e518",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29318,
"upload_time": "2015-04-28T18:02:23",
"url": "https://files.pythonhosted.org/packages/b8/7b/6b8dab3b94a4648fd2c59ff59c40b81205c39bc48718d0130fbdf700a1ef/sacred-0.6.3.tar.gz"
}
],
"0.6.4": [
{
"comment_text": "",
"digests": {
"md5": "d65363b619e67b9a6109ae1acb4161fe",
"sha256": "8f4956c3e29da83a721f1a483e396a1a2ad79316062d6395c25153861dfc0db4"
},
"downloads": -1,
"filename": "sacred-0.6.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d65363b619e67b9a6109ae1acb4161fe",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 38504,
"upload_time": "2015-06-12T15:58:10",
"url": "https://files.pythonhosted.org/packages/75/ba/4595a3022c17c99fe78df4ad1e4796ad73c19dee56b0bf503be953886d9d/sacred-0.6.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1339575c856f33484c22e37160bf43d2",
"sha256": "36483a2359a8a95d90fefb94510af74adc63841c64bad37bb777df2b7e5f8b15"
},
"downloads": -1,
"filename": "sacred-0.6.4.tar.gz",
"has_sig": false,
"md5_digest": "1339575c856f33484c22e37160bf43d2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29908,
"upload_time": "2015-06-12T15:58:07",
"url": "https://files.pythonhosted.org/packages/80/bc/b26ae3cad94fbbde64120bbd043f3ca8a853fc67488f83183500aeb7008a/sacred-0.6.4.tar.gz"
}
],
"0.6.5": [
{
"comment_text": "",
"digests": {
"md5": "50a648d81c78c10828bd1ebef6fdd8d6",
"sha256": "5b671a58965ff3a0ac25d5af325ee64683c346894219d3994d2c0a8df3d05b37"
},
"downloads": -1,
"filename": "sacred-0.6.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "50a648d81c78c10828bd1ebef6fdd8d6",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 41757,
"upload_time": "2015-08-28T11:56:13",
"url": "https://files.pythonhosted.org/packages/cd/19/32e5ec7602899ca10274537dd29ebd8710ea77354cb7fa084a26ca8d264c/sacred-0.6.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "46c74b36bb6afc862014d3d2bda1868d",
"sha256": "6f72656544033eaf23f4170182880f6ac4756cb9acc817babbc448112fc59218"
},
"downloads": -1,
"filename": "sacred-0.6.5.tar.gz",
"has_sig": false,
"md5_digest": "46c74b36bb6afc862014d3d2bda1868d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32592,
"upload_time": "2015-08-28T11:56:02",
"url": "https://files.pythonhosted.org/packages/4e/1a/48a2cf40a3fbdef7f106a82fa32812ce34374e5add3c6f70a16a64a38c75/sacred-0.6.5.tar.gz"
}
],
"0.6.6": [
{
"comment_text": "",
"digests": {
"md5": "6fa024797093ea4e5d5cd27e34003c5d",
"sha256": "30cc31201020420c5c983510ba336ef61c109277b51260bc0b842ea06a087cac"
},
"downloads": -1,
"filename": "sacred-0.6.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6fa024797093ea4e5d5cd27e34003c5d",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 43775,
"upload_time": "2015-09-10T20:39:24",
"url": "https://files.pythonhosted.org/packages/98/a2/c621699a610ef536444ba4ab09560fdf7798d7f6aedc13144363f54ad378/sacred-0.6.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "edb5b8a87ddc74ca2dd201fd95a49b06",
"sha256": "e42d3f4c5b4cff2b52974ff1dc44a838173673cb62a4b4ca32a7043a562de1b2"
},
"downloads": -1,
"filename": "sacred-0.6.6.tar.gz",
"has_sig": false,
"md5_digest": "edb5b8a87ddc74ca2dd201fd95a49b06",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31750,
"upload_time": "2015-09-10T20:39:14",
"url": "https://files.pythonhosted.org/packages/e5/3b/192828679bb7f0f8fd46ca356cedd24e6823b22ccab6f8a0ca7aae06dd7f/sacred-0.6.6.tar.gz"
}
],
"0.6.7": [
{
"comment_text": "",
"digests": {
"md5": "967626100b430bcbc221d872ce054807",
"sha256": "4f02320f01f9f4805e57cf2cdf9c7236f5f9399fa6322f6523480c1fd9532b7e"
},
"downloads": -1,
"filename": "sacred-0.6.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "967626100b430bcbc221d872ce054807",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 43777,
"upload_time": "2015-09-11T15:08:24",
"url": "https://files.pythonhosted.org/packages/84/54/4461541d549976fd8e8a5afbf9e40431a1daa943a82f89a330eefe0143b1/sacred-0.6.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a97daf6c3aa955eb0919738d9a21c907",
"sha256": "ff9ee5d571d33e4215322c60498c53143bc8ff5be852941bb1c4b8613a05b45f"
},
"downloads": -1,
"filename": "sacred-0.6.7.tar.gz",
"has_sig": false,
"md5_digest": "a97daf6c3aa955eb0919738d9a21c907",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31773,
"upload_time": "2015-09-11T15:08:19",
"url": "https://files.pythonhosted.org/packages/30/33/2b41d38db6f99a485a648e1d80d51b8120574abf33e8b16c7ecbce1a2d41/sacred-0.6.7.tar.gz"
}
],
"0.6.8": [
{
"comment_text": "",
"digests": {
"md5": "630e2364f4a94022a7a35b689c59fdb9",
"sha256": "1544cb3afb5b2369d26389ec6ba9e76d08151aadf5b94d7bb7197017b41e9c25"
},
"downloads": -1,
"filename": "sacred-0.6.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "630e2364f4a94022a7a35b689c59fdb9",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 46009,
"upload_time": "2016-01-13T19:02:07",
"url": "https://files.pythonhosted.org/packages/57/8b/44d92e2f6031d1d456ffb161569d8a468ba3b1c726c090dd1ce00311c1dc/sacred-0.6.8-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ae123745fc2f3cb4464ff493fd6c7292",
"sha256": "736f71426d57aa830cb6b629d4be29f4928187a7cb42478be41a6baa9b659afc"
},
"downloads": -1,
"filename": "sacred-0.6.8.tar.gz",
"has_sig": false,
"md5_digest": "ae123745fc2f3cb4464ff493fd6c7292",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33618,
"upload_time": "2016-01-13T19:00:29",
"url": "https://files.pythonhosted.org/packages/cc/19/302da498046eb626d36f05f4f1858d2a2217be86ab4c1262a8cea860c746/sacred-0.6.8.tar.gz"
}
],
"0.6.9": [
{
"comment_text": "",
"digests": {
"md5": "0d831c227718006d3ecf18892e37775d",
"sha256": "8394d18f6e36289f96dbffb18abac72a23cd1d70c6a162878ad0fa380b6c3a6d"
},
"downloads": -1,
"filename": "sacred-0.6.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0d831c227718006d3ecf18892e37775d",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 46025,
"upload_time": "2016-01-16T16:31:15",
"url": "https://files.pythonhosted.org/packages/fa/68/7dc50c4e4e9b4563f4ca4c42c8ba40ff0eb05408a70eb5a799ada03968e5/sacred-0.6.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "93189a9b01e737a4e4d792c7152e7d4f",
"sha256": "a410b5769344b971b2f19b7559974ebc692d9baf384f53d12f36934b4cabd5d3"
},
"downloads": -1,
"filename": "sacred-0.6.9.tar.gz",
"has_sig": false,
"md5_digest": "93189a9b01e737a4e4d792c7152e7d4f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33677,
"upload_time": "2016-01-16T16:31:05",
"url": "https://files.pythonhosted.org/packages/2a/05/639bdb89297400d4b7321258f05827a872d3d73231fa3afe88aa7529df20/sacred-0.6.9.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "6c16162226d08c26ae806441d897881d",
"sha256": "b15537dbeedc91bdd1cc73672f26a372aed85b646c4b41137a81fc459aee8a86"
},
"downloads": -1,
"filename": "sacred-0.7.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6c16162226d08c26ae806441d897881d",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 75787,
"upload_time": "2017-05-07T23:09:10",
"url": "https://files.pythonhosted.org/packages/68/d9/bcf5c7152b86edd2ab1750101896f72ef120385173aa4e1eca8fa6574c1b/sacred-0.7.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7917e31ddfaf4a09fec27f43014fb04e",
"sha256": "9360d6737d9d0b0301c52336456b51036d3eb96f5bc3ffd2af5d9179c5f10bdf"
},
"downloads": -1,
"filename": "sacred-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "7917e31ddfaf4a09fec27f43014fb04e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 56237,
"upload_time": "2017-05-07T23:09:06",
"url": "https://files.pythonhosted.org/packages/c2/f8/e498df58e4ecfb012132cb12516d21fc5573069a8bc88c21260566018a38/sacred-0.7.0.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "3b16fe13ac27c1b4a6fdd1a150507ac8",
"sha256": "fa44710f047ef9d4e5fc4ee5342a63acb54af6635ea0a921a86cf09ceca12518"
},
"downloads": -1,
"filename": "sacred-0.7.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3b16fe13ac27c1b4a6fdd1a150507ac8",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 83436,
"upload_time": "2017-09-14T12:53:10",
"url": "https://files.pythonhosted.org/packages/b5/98/56e0f708385847ea5cbf2e36d605dc479d843c8f0322107c97d7838c0a24/sacred-0.7.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e4e69ffe281592e14043c011caebc1c5",
"sha256": "e7f5056a7224c89795045e6a67c74eb2c40ae276d0e669fd6283af30fc0de958"
},
"downloads": -1,
"filename": "sacred-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "e4e69ffe281592e14043c011caebc1c5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 61464,
"upload_time": "2017-09-14T12:53:02",
"url": "https://files.pythonhosted.org/packages/8a/81/e4c7b7ad0ca1003ba4c86675659ee914fb7eaf61c4b3e143b98ab90ba873/sacred-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "",
"digests": {
"md5": "e26060b38eb68080860ae54f51a10e59",
"sha256": "372f12b3289f6a4075510286e509dc7d525f8f2188e1b423ba7866aa48e6b29a"
},
"downloads": -1,
"filename": "sacred-0.7.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e26060b38eb68080860ae54f51a10e59",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 86987,
"upload_time": "2017-11-03T14:48:25",
"url": "https://files.pythonhosted.org/packages/dc/7d/aa5aea1f1d4b0cac805a474cb01d18d960cd6cb0bd8f42f8d5257f7b13b6/sacred-0.7.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b7e807b272dc4a31c803d9043f09285c",
"sha256": "9a5e2f6acbe5d86fd23a30e2e467bbad74d797e335617b48a88789c911c0341c"
},
"downloads": -1,
"filename": "sacred-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "b7e807b272dc4a31c803d9043f09285c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 65041,
"upload_time": "2017-11-03T14:48:17",
"url": "https://files.pythonhosted.org/packages/ac/9f/8106e5e89cbbf98132e51ffb84457bb05fcd8040918dafc483d46597c792/sacred-0.7.2.tar.gz"
}
],
"0.7.3": [
{
"comment_text": "",
"digests": {
"md5": "a0b9f6ed8bb1b3834328a16a00f16613",
"sha256": "4af3f68de49bf02d759065d6ddc85e4724f22e818cb9bfc78be02d17d8e63731"
},
"downloads": -1,
"filename": "sacred-0.7.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a0b9f6ed8bb1b3834328a16a00f16613",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 82700,
"upload_time": "2018-05-06T20:51:39",
"url": "https://files.pythonhosted.org/packages/2d/86/7be3afa4d4c1c0c76a5de03e5ff779797ab2654e377685255c11c13c0ea5/sacred-0.7.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "741a0fb8cb1025c1cd5e0229cdbfbb0a",
"sha256": "9b848b0654868b8794c81ad0fab8045b7a531e324dccacb9e5d518174bdf2aa0"
},
"downloads": -1,
"filename": "sacred-0.7.3.tar.gz",
"has_sig": false,
"md5_digest": "741a0fb8cb1025c1cd5e0229cdbfbb0a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66565,
"upload_time": "2018-05-06T20:51:36",
"url": "https://files.pythonhosted.org/packages/db/f0/d4941878c50fcc78f3c7bd58a4f69d1559146324b408988ce6c7251cb78a/sacred-0.7.3.tar.gz"
}
],
"0.7.4": [
{
"comment_text": "",
"digests": {
"md5": "a4d94426698ccccf35838e64f9a2f5ea",
"sha256": "43a299045e73c0f1eaa70e3901f749a002362548685569f54b0a9853bd750362"
},
"downloads": -1,
"filename": "sacred-0.7.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a4d94426698ccccf35838e64f9a2f5ea",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 83094,
"upload_time": "2018-06-12T06:06:13",
"url": "https://files.pythonhosted.org/packages/59/25/844c1e9bf5e767b76b9c1df9b7fc8ea323ea8c5065a6bcd9659a33d6db81/sacred-0.7.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3b19ff7cb69d3d1593f004bfd06c0e99",
"sha256": "a5e624b8998b7f8320cfc790cd63bc5c09cfc1587e4818a83cf00de2868e25ba"
},
"downloads": -1,
"filename": "sacred-0.7.4.tar.gz",
"has_sig": false,
"md5_digest": "3b19ff7cb69d3d1593f004bfd06c0e99",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66983,
"upload_time": "2018-06-12T06:06:06",
"url": "https://files.pythonhosted.org/packages/78/7c/07dc814c4e2edd516a323785fdf523c6b08db563c654bd5f11d8453ef9e7/sacred-0.7.4.tar.gz"
}
],
"0.7.5": [
{
"comment_text": "",
"digests": {
"md5": "5885bb5ffc0bd8936ed609b78eb3a517",
"sha256": "c9aa2e41b556c06931635588f5556d090182dbd456b73105af85a3796193580b"
},
"downloads": -1,
"filename": "sacred-0.7.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5885bb5ffc0bd8936ed609b78eb3a517",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 92343,
"upload_time": "2019-06-20T14:14:11",
"url": "https://files.pythonhosted.org/packages/6c/89/bd8a71138906b146eea621505236f8704a3eeab2b9668aad77691b93fdb8/sacred-0.7.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e35cb665d45e7ee4a7fcc5a5175a9074",
"sha256": "2bbb7fcacee69ca8490a73935d9a3c2b3d1bdb79fe396f3b11f09ed5d1005657"
},
"downloads": -1,
"filename": "sacred-0.7.5.tar.gz",
"has_sig": false,
"md5_digest": "e35cb665d45e7ee4a7fcc5a5175a9074",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 74882,
"upload_time": "2019-06-20T14:14:07",
"url": "https://files.pythonhosted.org/packages/89/08/63cfff53bb59bbc55f75532a96d71110f642f289180043b3cb9cc94d7bdb/sacred-0.7.5.tar.gz"
}
],
"0.7b1": [
{
"comment_text": "",
"digests": {
"md5": "863acb653caec36e86fe0c502a66ac7a",
"sha256": "641591c5b825fad7115ccd79c4f441523b8b23319cebd939653be398883a35cb"
},
"downloads": -1,
"filename": "sacred-0.7b1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "863acb653caec36e86fe0c502a66ac7a",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 71375,
"upload_time": "2017-01-16T09:58:51",
"url": "https://files.pythonhosted.org/packages/c4/00/0abbdaa8b112c0685e5bfa6e394c2bf3c4cdc689369f5f527c3c0d414d33/sacred-0.7b1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "157bcb898adb6e06d832b7898beebad1",
"sha256": "1e51d97b0c3ca6ae8f6a00040ed0e3a45459339b2f0c2b56241639079700fcf3"
},
"downloads": -1,
"filename": "sacred-0.7b1.tar.gz",
"has_sig": false,
"md5_digest": "157bcb898adb6e06d832b7898beebad1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 53487,
"upload_time": "2017-01-16T09:58:47",
"url": "https://files.pythonhosted.org/packages/8c/1d/982a2fe732fc2efcc33f78e132eb3ebcd173e736a854ab4653574982c2cb/sacred-0.7b1.tar.gz"
}
],
"0.7b2": [
{
"comment_text": "",
"digests": {
"md5": "0ce39a968b28d61d3268f5787f2b3cde",
"sha256": "cac3a3378bc33fc9df75727220bb09e9fe00b48a8dd87c03e0006c0d70e1d2b0"
},
"downloads": -1,
"filename": "sacred-0.7b2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0ce39a968b28d61d3268f5787f2b3cde",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 71455,
"upload_time": "2017-01-27T09:19:17",
"url": "https://files.pythonhosted.org/packages/cc/18/38952e0f844564d000eeab6e0d959d2f71599e4d2a2992b3d8166025f06b/sacred-0.7b2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2b19d996433c261e2f46bdcc176bc1d2",
"sha256": "bde392a1041e19f2c797694816b53699f707852954c6c69a19569c154ac8cd55"
},
"downloads": -1,
"filename": "sacred-0.7b2.tar.gz",
"has_sig": false,
"md5_digest": "2b19d996433c261e2f46bdcc176bc1d2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 53636,
"upload_time": "2017-01-27T09:19:14",
"url": "https://files.pythonhosted.org/packages/fc/5e/fdc42aeccd7fbd4d39d7f1284df035f48ab76c96cf13c9b6e0b6d629b116/sacred-0.7b2.tar.gz"
}
],
"0.7b3": [
{
"comment_text": "",
"digests": {
"md5": "6d7c27ad9710be729f403fda405633c2",
"sha256": "8238484f3daddc78d9f6c52745c450078364b68a5b02147039e5019f8483e9dc"
},
"downloads": -1,
"filename": "sacred-0.7b3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6d7c27ad9710be729f403fda405633c2",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 74473,
"upload_time": "2017-03-10T13:26:33",
"url": "https://files.pythonhosted.org/packages/aa/de/dc70ba8c98e400b4343ceecb59df582b6f5af19aa43b695c89b2c5c62669/sacred-0.7b3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b2006f0b44a107cb9bd58f45f2eafb06",
"sha256": "e165311d6b651ac23852dc98b28d3a0ba81ae31ef5676a492eca856f56089d4d"
},
"downloads": -1,
"filename": "sacred-0.7b3.tar.gz",
"has_sig": false,
"md5_digest": "b2006f0b44a107cb9bd58f45f2eafb06",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 55238,
"upload_time": "2017-03-10T13:26:29",
"url": "https://files.pythonhosted.org/packages/64/c9/68eb69a408ff621b0ef13acc1e9497d5e67c343e13fef7e75a6c630b3772/sacred-0.7b3.tar.gz"
}
],
"0.7b4": [
{
"comment_text": "",
"digests": {
"md5": "2d920f2cf5a4de1dbfd8474a62fc0c2b",
"sha256": "a850100a8f3d98644a0d372c6bb743bf016480c5ecd7e4e62768b8cff4fd1ff9"
},
"downloads": -1,
"filename": "sacred-0.7b4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2d920f2cf5a4de1dbfd8474a62fc0c2b",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 75577,
"upload_time": "2017-04-23T06:25:35",
"url": "https://files.pythonhosted.org/packages/74/fd/2b83b5c26a1aa3f5ed73c00f2d26e5f95c94a65af301b8080525469170e5/sacred-0.7b4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7dcb5ab1d5d0b0bff61f616cbf8f4229",
"sha256": "2a1844fe36d4b15ef2575fbed88a978bade3e04b12ad1f3432660197807dba09"
},
"downloads": -1,
"filename": "sacred-0.7b4.tar.gz",
"has_sig": false,
"md5_digest": "7dcb5ab1d5d0b0bff61f616cbf8f4229",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 55997,
"upload_time": "2017-04-23T06:25:30",
"url": "https://files.pythonhosted.org/packages/bf/07/bdb20847d4a4876cbbdaa56e6db3ec52cb03930320aa4979a5027a97c30d/sacred-0.7b4.tar.gz"
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "fa5e1d9d3c125c67819355ff10fd4356",
"sha256": "265f732ef8663a3c28e1335c739d28176c02eb5efd1b7ec0d26fc2c5463308e4"
},
"downloads": -1,
"filename": "sacred-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "fa5e1d9d3c125c67819355ff10fd4356",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 81109,
"upload_time": "2019-10-14T15:09:56",
"url": "https://files.pythonhosted.org/packages/e4/25/94c9005de169b76a912b762c22dfd5ef5f1d3642fb3d279f8921c99e4e75/sacred-0.8.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "fa5e1d9d3c125c67819355ff10fd4356",
"sha256": "265f732ef8663a3c28e1335c739d28176c02eb5efd1b7ec0d26fc2c5463308e4"
},
"downloads": -1,
"filename": "sacred-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "fa5e1d9d3c125c67819355ff10fd4356",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 81109,
"upload_time": "2019-10-14T15:09:56",
"url": "https://files.pythonhosted.org/packages/e4/25/94c9005de169b76a912b762c22dfd5ef5f1d3642fb3d279f8921c99e4e75/sacred-0.8.0.tar.gz"
}
]
}