{
"info": {
"author": "Diffeo, Inc.",
"author_email": "support@diffeo.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities"
],
"description": "trec-dd-simulation-harness\n==========================\n\nThis is the official \"jig\" for simulating a user interacting with a TREC\nDD system during an interactive query session.\n\nUsage\n=====\n\nAfter installation (see below), you will want run the harness to\ngenerate a run file, you want to use the ``trec_dd_harness`` command.\n\nThe purpose of this harness is to interact with your TREC DD system by\nissuing queries to your system, and providing feedback (truth data) for\nthe results produced by your system. While it does this, it keeps track\nof the results produced by your system in a ``run file``. After\ngenerating a run file with this harness, you can score the run using\ntrec\\_dd\\_scorer\n\nThe harness is run via three commands: start, step, stop. Typically, a\nsystem will invoke start, then invoke step multiple times, and then\ninvoke stop. Every invocation must include the -c argument with a path\nto a valid config.yaml file, as illustrated in example/config.yaml.\n\nFor efficiency, the first time you run with a new configuration, the truth\ndata must be loaded into your database using the ``load`` command.\n\n::\n\n (Postgres example, using psql)\n CREATE USER trec_dd_user PASSWORD 'some_password';\n CREATE DATABASE trec_dd OWNER trec_dd_user\n\n (back at the Unix shell)\n (set up config.yaml to point to the database and the truth data file)\n trec_dd_harness -c config.yaml load\n\nBy default, when you score a system using the harness, all of the topics\nare applied to the system in an order selected by the harness. You can\nlimit the topic\\_ids that are used by specifying the topic\\_ids property\nin the config.yaml\n\nThe harness keeps track of the topic\\_ids that have not yet been used in\nbuilding your system's run file. To reset this state, you must run the\n``init`` command.\n\nTo progress through the topics, your system must execute this double\nwhile loop, which is exactly what is implemented in the\ntrec\\_dd/system/ambassador\\_cli.py example:\n\n::\n\n `init`\n while 1:\n topic_id <-- `start`\n if topic_id is None: break\n while 1:\n results <-- run your system\n feedback <-- `step(results)`\n if feedback is None or len(feedback) < batch_size:\n break\n else:\n your system processes the feedback\n `stop`\n\nEach of the five commands returns a JSON dictionary which your system\ncan read using a JSON library. After a ``step`` command, the response\nlooks like:\n\n::\n\n [\n {\n \"topic_id\": \"DD15-1\"\n \"confidence\": 0.987, \n \"on_topic\": 1, \n \"stream_id\": \"1335424206-b5476b1b8bf25b179bcf92cfda23d975\", \n \"subtopics\": [\n {\n \"passage_text\": \"this is a passage of relevant text from the document 'stream_id', relevant to the 'subtopic_id' below with the 'rating' below\", \n \"rating\": 3, \n \"subtopic_id\": \"DD15-1.4\", \n \"subtopic_name\": \"a label for this subtopic\"\n }\n ], \n }, \n { ... }\n ]\n\nThe harness always provides feedback for every result, even if the\nfeedback is that the system has no truth data for that result. Note\nthat your use of the harness *must* call ``stop`` in the next\niteration after any step in which you submit fewer than batch\\_size\nresults. If you fail to do this, the harness will exit.\n\nSee trec\\_dd/system/ambassador\\_cli.py for an example of using the\nharness from python.\n\nThe harness outputs a runfile, whose path is set in the configuration file.\n\nTo score a runfile (see \"Scoring the System\"):\n\n::\n\n trec_dd_scorer -c config.yaml run_file_in.txt run_file_scored.json > pretty_table.txt 2> log.txt &\n\nrun_file_in.txt is the run file output by the harness. The scorer\noutputs a scored run file in run_file_scored.json, and scores to\nstdout.\n\nThis repository also provides a baseline system that randomizes subtopic\nordering (see \"Example TREC DD Systems\"). In particular this baseline\nsystem shows how to hook an a system up to the jig in python. Hooking a\nsystem up to the jig via the command line is further documented below.\n\n::\n\n trec_dd_random_system -c config.yaml &> log.txt &\n\nThe scores for this baseline system using the TREC DD truth data are:\n\n+---------+-----------------------------------+\n| Score | Metric |\n+=========+===================================+\n| 0.438 | average\\_err\\_arithmetic |\n+---------+-----------------------------------+\n| 0.298 | average\\_err\\_harmonic |\n+---------+-----------------------------------+\n| 0.125 | modified\\_precision\\_at\\_recall |\n+---------+-----------------------------------+\n| 0.981 | precision\\_at\\_recall |\n+---------+-----------------------------------+\n| 0.075 | reciprocal\\_rank\\_at\\_recall |\n+---------+-----------------------------------+\n\nInstallation\n============\n\nThe recommended way to install and use the scorer is with python\nvirtualenv, which is a standard tool on all widely used platforms. For\nexample on Ubuntu:\n\n::\n\n apt-get install python-virtualenv\n virtualenv vpy\n\nor on CentOS:\n\n::\n\n yum install python-virtualenv\n virtualenv vpy\n\nor on MacOS X\n\n::\n\n brew install pyenv-virtualenv\n pyenv-virtualenv vpy\n\nor `on\nWindows `__.\n\nYou will also need a database. We recommend postgres or mysql. You can\ninstall this on your system using standard tools. The connection\ninformation must be written into the config.yaml file referenced in the\ncommands above. See `config.yaml `__ for an\nexample.\n\nOnce you have a virtualenv, the following commands will install the\ntrec\\_dd scorer. You should choose whether you are using mysql or\npostgres and specify that as a pip extras declaration in square brackets\nas follows:\n\n::\n\n . vpy/bin/activate\n pip install trec_dd[mysql]\n\nor to use postgres:\n\n::\n\n . vpy/bin/activate\n pip install trec_dd[postgres]\n\nThat will create the shell entry points for running the two commands\nillustrated at the top of this file.\n\nSimulation Harness\n==================\n\nIf you wish to evaluate a TREC DD system, you must run it against the\nTREC DD simulation harness. A system interacting with the simulation\nharness will produce a \"runfile\" that summarizes the simulation session.\nThe \"runfile\", for each of the system's response, encodes information\nsuch as (1) \"was the system's response on topic?\" (2) \"what subtopics\nwere contained within the system's response?\" and (3) \"how relevant was\nthe system's response?\". Please see the specification for a \"runfile\"\nfor more information.\n\nA TREC DD system interacts with the simulation harness by invoking\ncommands at the command line. Systems written in python may use the\n`HarnessAmbassadorCLI `__ to\nfacilitate this communication. The HarnessAmbassadorCLI is also useful\ndocumentation for how one should interact with the harness via the\ncommand line.\n\nOnce you have a \"runfile\", you may then score your run. Please see the\nsection \"Gathering Scores\" for more information.\n\nExample TREC DD Systems\n=======================\n\nThe directory trec\\_dd/system holds example TREC DD systems to\ndemonstrate interaction with the simulation harness using a TREC DD\nsystem. Right now, the only example system is random\\_system.py.\n\nExecuting the Random System\n===========================\n\nRequirements\n------------\n\nTo run the example systems, you must have a truth data XML file. Make\nsure your database is set up as per your config.yaml, and load the\ntruth data into the database:\n\n::\n\n trec_dd_harness -c config.yaml load \n\nRunning the System\n------------------\n\nYou can run the random system in the simulation harness by calling\n\n::\n\n trec_dd_random_system -c config.yaml >log.txt 2>&1\n\nAfter this command executes, you should find the resulting system\nrunfile at the path you specified in the configuration. The runfile summarizes\nthe responses the random system gave to the harness, as well as the\nharness's thoughts on those responses. This runfile captures everything\none needs to know in order to give a system a score.\n\nScoring the System\n------------------\n\nTo score your runfile, you may use the trec\\_dd/scorer/run.py script.\n\n::\n\n trec_dd_scorer -c config.yaml run_file_in.txt run_file_scored.json > pretty_table.txt 2> log.txt &\n\nPlease see the section titled \"Gathering Scores\" for more information on\nthe scoring subsystem.\n\nGathering Scores\n================\n\nRequirements\n------------\n\nYou must have a runfile generated for your system if you wish to score\nit. You must also have access to the truth data used by the harness when\ngenerating the runfile.\n\nRunning the Scorer\n------------------\n\nThere are two scoring scripts used to compute evaluation scores. bin/cubeTest.pl is used to compute Cube Test results. To run it:\n\n::\n bin/cubeTest.pl cubetest-qrels runfile cutoff\n\nwhere ``runfile`` is the output runfile from the jig, ``cubetest-qrels`` is a specially-formatted version of the truth data (and available from the same place), and ``cutoff`` is the number of iterations for running the Cube Test.\n\ntrec\\_dd/scorer/run.py is used to generate other evaluation scores including u-ERR. To run it:\n\n::\n\n trec_dd_scorer -c config.yaml run_file_in.txt run_file_scored.json > pretty_table.txt 2> log.txt &\n\nThis will go through your runfile and run each configured TREC DD\nscorer. ``run_file_in.txt`` is the runfile produced as output by the\nharness. The scorer outputs an annotated version of your run in\n``run_file_scored.json``, and the scores to stdout.\n\nIf you wish to run specific scorers, rather than all of them, please see the\n'--scorer' option on the trec\\_dd\\_scorer command. The scorers specified\nafter the --scorer option must be the names of scorers known to the\nsystem. These are exactly the following:\n\n- reciprocal\\_rank\\_at\\_recall\n- precision\\_at\\_recall\n- modified\\_precision\\_at\\_recall\n- average\\_err\\_arithmetic\n- average\\_err\\_harmonic\n\nDescription of Scorers\n======================\n\n- The Cube Test is a search effectiveness measurement that measures the speed of gaining relevant information (could be documents or passages) in a dynamic search process. It measures the amount of relevant information a search system could gather for the entire search process with multiple runs of retrieval. A higher Cube Test score means a better DD system, which ranks relevant information (documents and/or passages) for a complex search topic as much as possible and as early as possible.\n\n- reciprocal\\_rank\\_at\\_recall calculates the reciprocal of the rank by\n which every subtopic for a topic is accounted for.\n\n- precision\\_at\\_recall calculates the precision of all results up to\n the point where every subtopic for a topic is accounted for.\n\n- average\\_err\\_arithmetic calculates the expected reciprocal rank for\n each subtopic, and then average the scores accross subtopics using an\n arithmetic average. It uses a graded relevance for computing stopping\n probabilities.\n\n- average\\_err\\_harmonic calculates the expected reciprocal rank for\n each subtopic, and then averages the scores accross subtopics using\n an arithmetic average. It uses graded relevance for computing\n stopping probabilities.",
"description_content_type": null,
"docs_url": null,
"download_url": "UNKNOWN",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://trec-dd.org/",
"keywords": null,
"license": "MIT/X11 license http://opensource.org/licenses/MIT",
"maintainer": null,
"maintainer_email": null,
"name": "trec_dd",
"package_url": "https://pypi.org/project/trec_dd/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/trec_dd/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "http://trec-dd.org/"
},
"release_url": "https://pypi.org/project/trec_dd/0.3.6/",
"requires_dist": null,
"requires_python": null,
"summary": "TREC Dynamic Domain (DD) evaluation test harness for simulating user interaction with a search engine",
"version": "0.3.6"
},
"last_serial": 1758806,
"releases": {
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "d22a48a20f93eb082432043525d7c55b",
"sha256": "7524f5a5fabb8a45fe5036454e9bd2c4fa6bb1e1b15a9def34e6c9412506b57b"
},
"downloads": -1,
"filename": "trec_dd-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "d22a48a20f93eb082432043525d7c55b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6326,
"upload_time": "2015-01-17T11:33:24",
"url": "https://files.pythonhosted.org/packages/7f/c8/d979c533385a50b3bd978ec62409ec9a1d64abdc28decd75f5641c05da48/trec_dd-0.2.0.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "535dd3967ea2cd68dccc00f93b746284",
"sha256": "f3c8e5700e7d6b98c744b940be4016c105596cc1a85e7e2b9474a80c87d23f3e"
},
"downloads": -1,
"filename": "trec_dd-0.2.1-py2.7.egg",
"has_sig": false,
"md5_digest": "535dd3967ea2cd68dccc00f93b746284",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 32074,
"upload_time": "2015-03-24T16:11:05",
"url": "https://files.pythonhosted.org/packages/44/c1/aaf5fb92a3ef3c875898fa18bf0b070d9daab2df2a22bf156b0b25d11421/trec_dd-0.2.1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "8ae79363d0b41d7e05fdced277c9485d",
"sha256": "10b10db5fb2d40eda9821dd09b698f5bed3c4d74c5311594c18e3cebaf03ffeb"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "8ae79363d0b41d7e05fdced277c9485d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10358,
"upload_time": "2015-03-24T16:11:02",
"url": "https://files.pythonhosted.org/packages/95/d8/ed9437e3ab369b3078406615049035d47272559a7ca2634a71436ce428be/trec_dd-0.2.1.tar.gz"
}
],
"0.2.1.dev12": [
{
"comment_text": "",
"digests": {
"md5": "a6beceaf9bd6aff6a3c2f7895f84009d",
"sha256": "72524a4a5a9f0dc03fd2f8bb676578f53823bc93062d64db7633fe4effdf3ba9"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.dev12-py2.7.egg",
"has_sig": false,
"md5_digest": "a6beceaf9bd6aff6a3c2f7895f84009d",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 31221,
"upload_time": "2015-02-13T18:55:03",
"url": "https://files.pythonhosted.org/packages/30/08/487d63c270e42d93dc93d5d030dfa766d83f40af8a6601e740fcb5a22da6/trec_dd-0.2.1.dev12-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "264b2e9728c44408fa50db96e9969d0a",
"sha256": "21b6496ac3859a15f3851b973eaf6420ef3b39733f05288cf49aa3c6979533e4"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.dev12.tar.gz",
"has_sig": false,
"md5_digest": "264b2e9728c44408fa50db96e9969d0a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10031,
"upload_time": "2015-02-13T18:55:02",
"url": "https://files.pythonhosted.org/packages/5f/a8/8c10c4df50a8a35eaeaed93fa7b1db91f315e4fe763e0c939a07f12880ed/trec_dd-0.2.1.dev12.tar.gz"
}
],
"0.2.1.dev13": [
{
"comment_text": "",
"digests": {
"md5": "7dd6d346785e2e1019d09c335156b07c",
"sha256": "b24eed75c5de0d4fb48e43d9286bff8c50edc494474cfb3b1e2252e2a9a3b0f0"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.dev13-py2.7.egg",
"has_sig": false,
"md5_digest": "7dd6d346785e2e1019d09c335156b07c",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 31447,
"upload_time": "2015-02-16T16:25:10",
"url": "https://files.pythonhosted.org/packages/52/d3/1753b8bcb16ecda17e487728dc28357f7d0eaf9737178be31265cea68614/trec_dd-0.2.1.dev13-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "ed28d27ecdedc322aa6f78bc28c42581",
"sha256": "b2d71326cb2c915871888e5c8759f6e5c355dac0a0791e52acdc0a32f3114e0d"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.dev13.tar.gz",
"has_sig": false,
"md5_digest": "ed28d27ecdedc322aa6f78bc28c42581",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10068,
"upload_time": "2015-02-16T16:25:08",
"url": "https://files.pythonhosted.org/packages/90/a7/08fffef835db280a779c060d737db300599fbccde0490af09fb52669febc/trec_dd-0.2.1.dev13.tar.gz"
}
],
"0.2.1.dev15": [
{
"comment_text": "",
"digests": {
"md5": "ad1eb39902ec0d5a00041faa8e39fdab",
"sha256": "4c2f49e187f42638cbbc8e614ec6a68b84a2517d7db865dbf603fe900ba2625b"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.dev15-py2.7.egg",
"has_sig": false,
"md5_digest": "ad1eb39902ec0d5a00041faa8e39fdab",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 31896,
"upload_time": "2015-02-17T22:17:34",
"url": "https://files.pythonhosted.org/packages/c9/7c/1dc01e34d3c8bb9d464eaadba1e76efb96f060ac0cc4079d4bd14c67c2a0/trec_dd-0.2.1.dev15-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "088b614355cd29693f552b4311f9e96d",
"sha256": "afe9a6fa624f8ff4cfaacd9004aef7d201acfe651bc8ad41c7e24d229702cb19"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.dev15.tar.gz",
"has_sig": false,
"md5_digest": "088b614355cd29693f552b4311f9e96d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10224,
"upload_time": "2015-02-17T22:17:32",
"url": "https://files.pythonhosted.org/packages/2b/44/d6f7381ba59a0fe6a648687dc99da0e5dac0043ab4a4a39b11f365b70c2c/trec_dd-0.2.1.dev15.tar.gz"
}
],
"0.2.1.dev16": [
{
"comment_text": "",
"digests": {
"md5": "2772b72a37ce3c20aaebef20bacc56ff",
"sha256": "e7831e50d59060a0dd4af440ef814c97f24afc39a100a0bbc3637d450c908d59"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.dev16-py2.7.egg",
"has_sig": false,
"md5_digest": "2772b72a37ce3c20aaebef20bacc56ff",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 32098,
"upload_time": "2015-02-19T19:26:46",
"url": "https://files.pythonhosted.org/packages/cd/27/260cbff6ac1a058f849a77c4ca35d658aed513b5025cf967b112f9930d2f/trec_dd-0.2.1.dev16-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "0bc6d6fde2fa76438f6ea7d79eb5a04e",
"sha256": "93e35863cd4eb7427aa9a4728def6e649489a56afff98df2bf0287e7d67a44f0"
},
"downloads": -1,
"filename": "trec_dd-0.2.1.dev16.tar.gz",
"has_sig": false,
"md5_digest": "0bc6d6fde2fa76438f6ea7d79eb5a04e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10361,
"upload_time": "2015-02-19T19:26:44",
"url": "https://files.pythonhosted.org/packages/b5/3d/e7713b570584fc71d37839d8814291be5e4259cc401ba70b21e38f7ec7de/trec_dd-0.2.1.dev16.tar.gz"
}
],
"0.2.2.dev1": [
{
"comment_text": "",
"digests": {
"md5": "2db3df1f56f18f6a46951b12faa5d14c",
"sha256": "2de57eec64df2a0e9fbceafc3e0f287c7c10b8068f1a8bd7d987aa126127c029"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev1-py2.7.egg",
"has_sig": false,
"md5_digest": "2db3df1f56f18f6a46951b12faa5d14c",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 41218,
"upload_time": "2015-06-09T22:04:47",
"url": "https://files.pythonhosted.org/packages/1f/87/1c69b8e5e3d7aa585ca25bcb27d82801aa01cc7546ecae6a53781a8f2203/trec_dd-0.2.2.dev1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "0d16810b0c05feaecf33c23d88d76c48",
"sha256": "597dc584df2be51bf52baf34dcf893e004fb07f35d7d77a408d6fa6078c8ede8"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev1.tar.gz",
"has_sig": false,
"md5_digest": "0d16810b0c05feaecf33c23d88d76c48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12840,
"upload_time": "2015-06-09T22:04:44",
"url": "https://files.pythonhosted.org/packages/8c/82/ae0df4cb41ebcc382da747de9929d74b857d4f3f8dfff01c7dd3fb0513af/trec_dd-0.2.2.dev1.tar.gz"
}
],
"0.2.2.dev10": [
{
"comment_text": "",
"digests": {
"md5": "a5579e4b6538f203eee5a8e03660120b",
"sha256": "f24442057232837f82da6f6bc01ac8f8ba899f12b13b786c4e4322ea7ff6247f"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev10-py2.7.egg",
"has_sig": false,
"md5_digest": "a5579e4b6538f203eee5a8e03660120b",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 43918,
"upload_time": "2015-06-11T15:57:46",
"url": "https://files.pythonhosted.org/packages/9d/ec/725170d5c6fe0f01625005333c890ab5ff8803c01434233697e7afa197ef/trec_dd-0.2.2.dev10-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "5f2f426f978d849b2dd1c5e87503b7af",
"sha256": "7de57e43246f164c0737d0fb46312204b40752085371bf56bb09e7862e99045e"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev10.tar.gz",
"has_sig": false,
"md5_digest": "5f2f426f978d849b2dd1c5e87503b7af",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15083,
"upload_time": "2015-06-11T15:57:43",
"url": "https://files.pythonhosted.org/packages/32/f4/4aea115e5c67ad62e796deabc8e4171d5fe9be14f30406bb36f161efe3a9/trec_dd-0.2.2.dev10.tar.gz"
}
],
"0.2.2.dev11": [
{
"comment_text": "",
"digests": {
"md5": "afcedc8c90e6f5967c21aee6d0e37c0b",
"sha256": "1954f003bc83cee8266682dc2cb1c9c379dae37bf410c183f4ee995987a3bea4"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev11-py2.7.egg",
"has_sig": false,
"md5_digest": "afcedc8c90e6f5967c21aee6d0e37c0b",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 43929,
"upload_time": "2015-06-11T15:59:06",
"url": "https://files.pythonhosted.org/packages/4d/b3/bc787ce3b1393813e8242799649a760bfd1b7883e8bb3343ec728e8186b5/trec_dd-0.2.2.dev11-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "d74f4246ebf6ce47d9dc99f952953507",
"sha256": "33983d63689042ebf84d580a019bd6001be38aaf556df91ab0c79af22d5ca590"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev11.tar.gz",
"has_sig": false,
"md5_digest": "d74f4246ebf6ce47d9dc99f952953507",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15082,
"upload_time": "2015-06-11T15:59:03",
"url": "https://files.pythonhosted.org/packages/40/a0/6ed7ab9dfc3b8847d0cf3360e9d5c13c233f386bd63805e70c5696018e25/trec_dd-0.2.2.dev11.tar.gz"
}
],
"0.2.2.dev16": [
{
"comment_text": "",
"digests": {
"md5": "dd0c9e3fcf2d6ccdb22505f4833957d6",
"sha256": "3f5ab1eb9b2fb9c4ebc090c64f1566a0c2e63f3c9f3a3839aa7fa769ed44930c"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev16-py2.7.egg",
"has_sig": false,
"md5_digest": "dd0c9e3fcf2d6ccdb22505f4833957d6",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 44622,
"upload_time": "2015-06-11T19:13:48",
"url": "https://files.pythonhosted.org/packages/7e/e7/06f14a8980b5068e22f98016953157a1f2cba27b3ac62722c52723f21417/trec_dd-0.2.2.dev16-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "29512559dc1ae518f0d0e24afd71da83",
"sha256": "2f09560a46b70a3be17ac871088f0e74fc975f6fee28d4524662eb7d12861a99"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev16.tar.gz",
"has_sig": false,
"md5_digest": "29512559dc1ae518f0d0e24afd71da83",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15347,
"upload_time": "2015-06-11T19:13:45",
"url": "https://files.pythonhosted.org/packages/bc/1b/f2adbc0349d8c1d2ccb0e2000b548ce62fb911f30746fe98ca388dcb3fcf/trec_dd-0.2.2.dev16.tar.gz"
}
],
"0.2.2.dev17": [
{
"comment_text": "",
"digests": {
"md5": "ad91dd46ce3070e579c6a08c58cfbda5",
"sha256": "53e838510500df3e65582cad36cc71e2e495143f85c797ece421c38374617732"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev17-py2.7.egg",
"has_sig": false,
"md5_digest": "ad91dd46ce3070e579c6a08c58cfbda5",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 45388,
"upload_time": "2015-06-11T19:28:17",
"url": "https://files.pythonhosted.org/packages/7a/ba/3bdda65f4e882699280b1d6d8eed1b2d5140c24fabf7451f1682e6b003cb/trec_dd-0.2.2.dev17-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "b5df01ff76729dda19cf8e8c24cc2025",
"sha256": "08ec354fa0d3da1096d25f87dfec2d74657ff818e603bf234a2138549435c941"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev17.tar.gz",
"has_sig": false,
"md5_digest": "b5df01ff76729dda19cf8e8c24cc2025",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15403,
"upload_time": "2015-06-11T19:28:13",
"url": "https://files.pythonhosted.org/packages/16/7d/fc894cfe6d1de0125cc457345bbbb0840fee4226a243aec34ae580759e86/trec_dd-0.2.2.dev17.tar.gz"
}
],
"0.2.2.dev19": [
{
"comment_text": "",
"digests": {
"md5": "d3a6296cd4d3836851ce90dc7845070a",
"sha256": "a5ca8f03395d4f34d42f6801bc3255b2200a24de4684d503871beec3a21fd45c"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev19-py2.7.egg",
"has_sig": false,
"md5_digest": "d3a6296cd4d3836851ce90dc7845070a",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 45352,
"upload_time": "2015-06-11T19:37:16",
"url": "https://files.pythonhosted.org/packages/57/fc/c8b440f2e9741aacd952d0fa89d43de6203fdcc9ca81c9c8e50e262b3cbb/trec_dd-0.2.2.dev19-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "4314b650478bcb44d020deee5fca0d35",
"sha256": "da2c950ffb6f867513fe510faaa6d8929d3d927dbe22f3dd3b69df28313db82b"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev19.tar.gz",
"has_sig": false,
"md5_digest": "4314b650478bcb44d020deee5fca0d35",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15400,
"upload_time": "2015-06-11T19:37:13",
"url": "https://files.pythonhosted.org/packages/1f/1f/846ecdfa6d04f53528f37b12e2b3ea888a37dac111e85f37402c4a46f3f7/trec_dd-0.2.2.dev19.tar.gz"
}
],
"0.2.2.dev20": [
{
"comment_text": "",
"digests": {
"md5": "31a0b8daf4541e5749a50f21df0f6bb7",
"sha256": "9a617057e37963b0cf900f3127d5d936ee020c47caf6c5b563de8b2bd9fdcdb2"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev20-py2.7.egg",
"has_sig": false,
"md5_digest": "31a0b8daf4541e5749a50f21df0f6bb7",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 45423,
"upload_time": "2015-06-11T19:42:31",
"url": "https://files.pythonhosted.org/packages/c8/ce/edb2f566ee2a7dc54f87609fef194519d37914fe808d5c0ef72b8e61ff6e/trec_dd-0.2.2.dev20-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "480818a929d9080f32f32dea6e0fb714",
"sha256": "fbad156fc2de6b814e7e420e036e83310108f6bd9959e23fb856adf722eda407"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev20.tar.gz",
"has_sig": false,
"md5_digest": "480818a929d9080f32f32dea6e0fb714",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15417,
"upload_time": "2015-06-11T19:42:29",
"url": "https://files.pythonhosted.org/packages/8c/52/65b35a43abbb932cf6780b5cd4634c61516b3d22209a3b74f8cb892ca8ef/trec_dd-0.2.2.dev20.tar.gz"
}
],
"0.2.2.dev21": [
{
"comment_text": "",
"digests": {
"md5": "8b596ddb1a5947583408a98985eecccd",
"sha256": "b12faf0eca85bf4abede7dfb1c22694d837d132079ae03caee2f3d4d2716d2eb"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev21-py2.7.egg",
"has_sig": false,
"md5_digest": "8b596ddb1a5947583408a98985eecccd",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 45222,
"upload_time": "2015-06-11T19:44:56",
"url": "https://files.pythonhosted.org/packages/67/aa/d6d9978c4d0e089725eed95a303d3b21e3ec58e3686f83c9a8a07a816523/trec_dd-0.2.2.dev21-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "ee6d2ce029898a1c000f9e390390e5c3",
"sha256": "08ab7b23fbbeb72fcfb7edb8f661f289465931fe30aa76d0c1b2d202461b6364"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev21.tar.gz",
"has_sig": false,
"md5_digest": "ee6d2ce029898a1c000f9e390390e5c3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15340,
"upload_time": "2015-06-11T19:44:53",
"url": "https://files.pythonhosted.org/packages/78/6a/ebea53f7c8bc4c30d9fa538335f67f1644e48d3b051bc5da0a80d0177910/trec_dd-0.2.2.dev21.tar.gz"
}
],
"0.2.2.dev22": [
{
"comment_text": "",
"digests": {
"md5": "00efde65a4df717272e1eedf2eafc5a9",
"sha256": "631cec161706d9dcf386008edad6e9ae2986423f9b8b11a488737e88e1e1c55d"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev22-py2.7.egg",
"has_sig": false,
"md5_digest": "00efde65a4df717272e1eedf2eafc5a9",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 45342,
"upload_time": "2015-06-11T20:08:40",
"url": "https://files.pythonhosted.org/packages/18/d3/067d039080c7ec85df27fff5e2423e5b94460542728d54349390997d9169/trec_dd-0.2.2.dev22-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "c90c0b0d79b2bfde1b87015a06909490",
"sha256": "1dbe2186b4a59fac989a5f87e33d64f9e8f44d7abc5a229139f6a7a934d11e37"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev22.tar.gz",
"has_sig": false,
"md5_digest": "c90c0b0d79b2bfde1b87015a06909490",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15391,
"upload_time": "2015-06-11T20:08:37",
"url": "https://files.pythonhosted.org/packages/c1/70/e126a38f90968332deb8c93a33f242cf4d3a36df1fdc1e372d8fbacc554a/trec_dd-0.2.2.dev22.tar.gz"
}
],
"0.2.2.dev23": [
{
"comment_text": "",
"digests": {
"md5": "a45a3016ed12859414f7011c4625e785",
"sha256": "3cd2e06535558ceac6d4191cdb1257f4aa96b6a1ecd3fc00ba0a5b94a22ecedd"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev23-py2.7.egg",
"has_sig": false,
"md5_digest": "a45a3016ed12859414f7011c4625e785",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 45089,
"upload_time": "2015-06-11T20:30:08",
"url": "https://files.pythonhosted.org/packages/73/3b/bb9d576a24210c8395fc4c5a15db282bf8f7727cd2e296247a7a4d9fb5c7/trec_dd-0.2.2.dev23-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "b813b1e28574e324641c98e7347c5285",
"sha256": "4ab131600a5991ae71ea89ec8a561c37c263241c1ee2b4ee470fd64e31c9dcc4"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev23.tar.gz",
"has_sig": false,
"md5_digest": "b813b1e28574e324641c98e7347c5285",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15158,
"upload_time": "2015-06-11T20:30:05",
"url": "https://files.pythonhosted.org/packages/76/27/b7e3d0ad0ee291a1784b8d270f019d5102f435b425190861edb0c60e0cb5/trec_dd-0.2.2.dev23.tar.gz"
}
],
"0.2.2.dev24": [
{
"comment_text": "",
"digests": {
"md5": "e8cebb25e78233ff44da7bb7a65eeb0c",
"sha256": "311be42c012e8457cb6c7ead7937ae940c09ac5b5bdd092fc96f3c3a8b63a067"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev24-py2.7.egg",
"has_sig": false,
"md5_digest": "e8cebb25e78233ff44da7bb7a65eeb0c",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 45080,
"upload_time": "2015-06-11T20:33:35",
"url": "https://files.pythonhosted.org/packages/45/bd/4c420cb1ae0a2c1a874b13c4b8d64a434c49d64f947f4485de83ac0a0718/trec_dd-0.2.2.dev24-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "397d53cd07cae8609d953fa47cc9560c",
"sha256": "647c99331c370a363636a20b0777f608b859a15f881420b923a1f6aaddae4880"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev24.tar.gz",
"has_sig": false,
"md5_digest": "397d53cd07cae8609d953fa47cc9560c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15113,
"upload_time": "2015-06-11T20:33:32",
"url": "https://files.pythonhosted.org/packages/93/7e/076eef0210ad5fee293b745f552839433b27b2aa6692ffc3c789870d3a7b/trec_dd-0.2.2.dev24.tar.gz"
}
],
"0.2.2.dev26": [
{
"comment_text": "",
"digests": {
"md5": "06747a2f1c790ac93347f515e474fa82",
"sha256": "9b7c39bddaa9d3227d771875000df960bd08a91d342072e7141c8ff55dd20df1"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev26-py2.7.egg",
"has_sig": false,
"md5_digest": "06747a2f1c790ac93347f515e474fa82",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 45410,
"upload_time": "2015-06-11T20:43:56",
"url": "https://files.pythonhosted.org/packages/d9/71/172897efc95b3842959de269e5ac7e3b94b29151a0d8541100eda6b5f232/trec_dd-0.2.2.dev26-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "41615c60b89815ead75ac4b27e7a2939",
"sha256": "dca80b16aecd1c502d446975914a693aef5e782c240d8d999c54339c5845de98"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev26.tar.gz",
"has_sig": false,
"md5_digest": "41615c60b89815ead75ac4b27e7a2939",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15267,
"upload_time": "2015-06-11T20:43:53",
"url": "https://files.pythonhosted.org/packages/1f/4b/b55c13745eb7d40c9614e8b2175eaa511c22a24786f181fa5a097e1e6567/trec_dd-0.2.2.dev26.tar.gz"
}
],
"0.2.2.dev5": [
{
"comment_text": "",
"digests": {
"md5": "119748247a119928ad370fcaea7c90b6",
"sha256": "8063349fa9a6902bed08e8e45ca00e3e30ba61f6de1e2df1c22d1fa9785aba96"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev5-py2.7.egg",
"has_sig": false,
"md5_digest": "119748247a119928ad370fcaea7c90b6",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 42115,
"upload_time": "2015-06-10T17:25:47",
"url": "https://files.pythonhosted.org/packages/f2/32/44d5cbe2dc7902d2ec0cc1b7773cf987c1b4289e5d3c2a3c56dad4dd915c/trec_dd-0.2.2.dev5-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "b2d03ce80aed06160e104376c7cd6014",
"sha256": "552a306285c44ac568c4a3a5d8079e5aa689d57f472bdb72ae1b060300a16438"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev5.tar.gz",
"has_sig": false,
"md5_digest": "b2d03ce80aed06160e104376c7cd6014",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12972,
"upload_time": "2015-06-10T17:25:44",
"url": "https://files.pythonhosted.org/packages/8f/a9/761a59cf5d07121790861093684e37f8c41ddd74ff12cbca2bfbc376e9f4/trec_dd-0.2.2.dev5.tar.gz"
}
],
"0.2.2.dev6": [
{
"comment_text": "",
"digests": {
"md5": "40f4fe4dacae2d3c43a56cd86fb744f3",
"sha256": "d2b462e574f5524789076f2c682e4992621c70a0141805a0688cfa9085b71e93"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev6-py2.7.egg",
"has_sig": false,
"md5_digest": "40f4fe4dacae2d3c43a56cd86fb744f3",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 42133,
"upload_time": "2015-06-10T17:50:19",
"url": "https://files.pythonhosted.org/packages/01/38/b9a3cce87b64435dfb6045d74347bdae4bf578c181dadcec3a16816f6403/trec_dd-0.2.2.dev6-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "3d0c6c5a570d3402cb75a6e8e5aa481a",
"sha256": "610c418023a9a7aa2bfae27abafb6c95279000c9c21f46348da90deb2125aa2e"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev6.tar.gz",
"has_sig": false,
"md5_digest": "3d0c6c5a570d3402cb75a6e8e5aa481a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12973,
"upload_time": "2015-06-10T17:50:16",
"url": "https://files.pythonhosted.org/packages/f7/e4/c98a7a055794f58445254849424bf29a4f2155146cfdd26c4e3e04aead98/trec_dd-0.2.2.dev6.tar.gz"
}
],
"0.2.2.dev7": [
{
"comment_text": "",
"digests": {
"md5": "bf0d790ca0b5a04acaa1e66e56b8f158",
"sha256": "d9bfffe18994a28340302bf800ca452af06a69ed99a75c7fc78be3242749630b"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev7-py2.7.egg",
"has_sig": false,
"md5_digest": "bf0d790ca0b5a04acaa1e66e56b8f158",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 42138,
"upload_time": "2015-06-10T17:55:20",
"url": "https://files.pythonhosted.org/packages/63/9f/5576820a54190762adb194dd8a51577a5961a454f4356acddfa3d6b130c5/trec_dd-0.2.2.dev7-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "e00b2de337a679dd6679b124cd2ec3be",
"sha256": "0d4d77ab2ceb6ed14723aa01f95ee9ba2137b55db5f73fa786cf9dc41c266af8"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev7.tar.gz",
"has_sig": false,
"md5_digest": "e00b2de337a679dd6679b124cd2ec3be",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12974,
"upload_time": "2015-06-10T17:55:18",
"url": "https://files.pythonhosted.org/packages/92/34/9ce2574d412a2fefd5c5da288e5d2e9ad1c8f2d2f8b2a0f27b358f7f5317/trec_dd-0.2.2.dev7.tar.gz"
}
],
"0.2.2.dev8": [
{
"comment_text": "",
"digests": {
"md5": "c339aa58bab07510996ec53c47083ea4",
"sha256": "f65979c65992bbcb61c471eb2ebcc05b93ccc2662fa1e735f7ca4d171a48b4ab"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev8-py2.7.egg",
"has_sig": false,
"md5_digest": "c339aa58bab07510996ec53c47083ea4",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 42139,
"upload_time": "2015-06-10T18:12:09",
"url": "https://files.pythonhosted.org/packages/c5/9a/d987b187588f472b9ce8a6f4e5b3479cca42aa6876d57a60c630d5eb2206/trec_dd-0.2.2.dev8-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "66d2b9a6082e1663b131a9e96f7aafc5",
"sha256": "fe39d4656658b9066d7c6c7c6b684aa354e84f1df59c8c641af32747b990a778"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev8.tar.gz",
"has_sig": false,
"md5_digest": "66d2b9a6082e1663b131a9e96f7aafc5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12978,
"upload_time": "2015-06-10T18:12:06",
"url": "https://files.pythonhosted.org/packages/60/a3/432d2df9edd51a26ab53f1f349f34e390210646c6b4763a6f55c427884c1/trec_dd-0.2.2.dev8.tar.gz"
}
],
"0.2.2.dev9": [
{
"comment_text": "",
"digests": {
"md5": "bc80d7cbbb3261248e697f0af76f5f08",
"sha256": "dce557c2047c85f9194bb37fc96f9799749ce68fdf9e408a2d8b16594e86bb52"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev9-py2.7.egg",
"has_sig": false,
"md5_digest": "bc80d7cbbb3261248e697f0af76f5f08",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 43579,
"upload_time": "2015-06-11T15:45:04",
"url": "https://files.pythonhosted.org/packages/ba/be/e6e22f22a7326dbcce1051feeb95f5a65875403ca109f8bbf54034b2c7f7/trec_dd-0.2.2.dev9-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "3443709d4478893e151fba8d8b807d31",
"sha256": "170ac6dbce1b65a8bec363d5db13be2394f4a421c9438f2f707a079ec649bd8c"
},
"downloads": -1,
"filename": "trec_dd-0.2.2.dev9.tar.gz",
"has_sig": false,
"md5_digest": "3443709d4478893e151fba8d8b807d31",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14677,
"upload_time": "2015-06-11T15:45:01",
"url": "https://files.pythonhosted.org/packages/1c/24/a2150ea08ff8ff4fd0e29a94095a4e0f33357fd2d78414d835578e1fe361/trec_dd-0.2.2.dev9.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "962fb407e4eeb03a9ebcdae0f1ba3575",
"sha256": "74e5b6a54c055b23fc3ab3a36e81355cc75ae42edf025cbdbb9bef27899f4287"
},
"downloads": -1,
"filename": "trec_dd-0.3.1-py2.7.egg",
"has_sig": false,
"md5_digest": "962fb407e4eeb03a9ebcdae0f1ba3575",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 55495,
"upload_time": "2015-06-12T18:11:41",
"url": "https://files.pythonhosted.org/packages/06/5f/3072953b1f50b983dbdc39b774f88614f6e815ab38810765751c092e4fa1/trec_dd-0.3.1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "4001f00f55eaa396a40dee9f5c14e2a5",
"sha256": "5d6b45c4ffa5185ad79c1eaf0ea5c8a9f9c745baa7054aed4b3a3fd5801cb447"
},
"downloads": -1,
"filename": "trec_dd-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "4001f00f55eaa396a40dee9f5c14e2a5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20960,
"upload_time": "2015-06-12T18:11:38",
"url": "https://files.pythonhosted.org/packages/3d/6b/5f5af97361d22597c890f097c7c274a13420985f7128278cd6077da1ab00/trec_dd-0.3.1.tar.gz"
}
],
"0.3.1.dev2": [
{
"comment_text": "",
"digests": {
"md5": "7e26c0529af12f1f1cd4aeb316d59540",
"sha256": "1af5c658f5c81e2a97d8d10995995ddd03637ed701e818913146e637f383955f"
},
"downloads": -1,
"filename": "trec_dd-0.3.1.dev2-py2.7.egg",
"has_sig": false,
"md5_digest": "7e26c0529af12f1f1cd4aeb316d59540",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 52717,
"upload_time": "2015-06-12T15:51:44",
"url": "https://files.pythonhosted.org/packages/1c/4a/aaac3d32045157c3af0b6d9a5e69be5608d4b38400e312094f9cc48817ce/trec_dd-0.3.1.dev2-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "8f328b000dc9c150d6929977d61235d2",
"sha256": "ba334dd7f5ba8991f31c4f7beb584fb3d386810d070d096de8023587e087ef3a"
},
"downloads": -1,
"filename": "trec_dd-0.3.1.dev2.tar.gz",
"has_sig": false,
"md5_digest": "8f328b000dc9c150d6929977d61235d2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18892,
"upload_time": "2015-06-12T15:51:41",
"url": "https://files.pythonhosted.org/packages/c6/4a/1c0f6971090534d327fc19019d92855c041784b1ad0969424f58beb6d38e/trec_dd-0.3.1.dev2.tar.gz"
}
],
"0.3.1.dev4": [
{
"comment_text": "",
"digests": {
"md5": "c989fbb09468c1af4907c756c229ffba",
"sha256": "aaadb75b1844452b76b2ac749a58c4a581735425d979ce407b61cf17338aa776"
},
"downloads": -1,
"filename": "trec_dd-0.3.1.dev4-py2.7.egg",
"has_sig": false,
"md5_digest": "c989fbb09468c1af4907c756c229ffba",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 53118,
"upload_time": "2015-06-12T16:20:25",
"url": "https://files.pythonhosted.org/packages/e0/c7/32897f852e5e238fb06f31ee4233ef13cce5edacbfdac6906cf150597c83/trec_dd-0.3.1.dev4-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "a26a8d2ab4444e463eee3f39414f4fbf",
"sha256": "c15bdb837703069fd20755e3099ca5c8867d01e12b6f51ae8f75dc1a47ee5dee"
},
"downloads": -1,
"filename": "trec_dd-0.3.1.dev4.tar.gz",
"has_sig": false,
"md5_digest": "a26a8d2ab4444e463eee3f39414f4fbf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19137,
"upload_time": "2015-06-12T16:20:22",
"url": "https://files.pythonhosted.org/packages/2e/ac/29206f2c1c163442e07b5f83daa93f92e68aec27d7f5c5a1af546e60d063/trec_dd-0.3.1.dev4.tar.gz"
}
],
"0.3.1.dev5": [
{
"comment_text": "",
"digests": {
"md5": "4b9d37a74fb9d638d4dbd788b4950216",
"sha256": "ef145d7827e56e1cb1e9e341c3d1e7d32c0f0b24f30c26adf8b06f174d16665f"
},
"downloads": -1,
"filename": "trec_dd-0.3.1.dev5-py2.7.egg",
"has_sig": false,
"md5_digest": "4b9d37a74fb9d638d4dbd788b4950216",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 53105,
"upload_time": "2015-06-12T17:26:14",
"url": "https://files.pythonhosted.org/packages/5e/c4/bdf66768d079c7e57e2815dcb3930b574dec0ea04bb90b54d7842ae182a4/trec_dd-0.3.1.dev5-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "2a5fd314d1187231af8a1f0c67e64df8",
"sha256": "c4b03180d243e7fc27965bdde369e77321c159fc268186dc03eaeebaee3c554a"
},
"downloads": -1,
"filename": "trec_dd-0.3.1.dev5.tar.gz",
"has_sig": false,
"md5_digest": "2a5fd314d1187231af8a1f0c67e64df8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19165,
"upload_time": "2015-06-12T17:26:12",
"url": "https://files.pythonhosted.org/packages/bb/95/71bb0a2fd5cedfdcdf6ffbf4f7cef2d35252d7025f4428403520d4de16ca/trec_dd-0.3.1.dev5.tar.gz"
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "addeefc177cb68e1ccb3a3f72f5cf5eb",
"sha256": "10686a832b2edafea3b7f773ac214ab5402491fe508c38eb0ca55bb40976db9a"
},
"downloads": -1,
"filename": "trec_dd-0.3.2-py2.7.egg",
"has_sig": false,
"md5_digest": "addeefc177cb68e1ccb3a3f72f5cf5eb",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 55608,
"upload_time": "2015-06-16T16:32:46",
"url": "https://files.pythonhosted.org/packages/20/76/f1ffcfa7e5b48385343c8f7dd78aa31549829bec3ac8a9eb216be4bb2ae2/trec_dd-0.3.2-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "53f73097f107a6048aa2580280555eac",
"sha256": "3480752b693f4216f661558f28e9d7a75b16104f0c4e8a207c63d0ed056240a1"
},
"downloads": -1,
"filename": "trec_dd-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "53f73097f107a6048aa2580280555eac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22670,
"upload_time": "2015-06-16T16:32:42",
"url": "https://files.pythonhosted.org/packages/24/41/e82587f7be69d6290ce4eda392e701f2b3b9ad6ede02b79765db718659b4/trec_dd-0.3.2.tar.gz"
}
],
"0.3.3.dev1": [
{
"comment_text": "",
"digests": {
"md5": "a626a914d14d51324b7120295e708951",
"sha256": "bf1634636345baf56881ee3dd5cb10ed9bc68a403715aa1aeabb5023bd09e00c"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev1-py2.7.egg",
"has_sig": false,
"md5_digest": "a626a914d14d51324b7120295e708951",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 55833,
"upload_time": "2015-06-23T19:50:01",
"url": "https://files.pythonhosted.org/packages/af/98/909dcd651206655a178a9372131b4df6757e8c8d5c0beb05d9c237751cbc/trec_dd-0.3.3.dev1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "f9ef3c420bf07f1dcfac85a8759c2a46",
"sha256": "7709da9ce247998a01aafe0d5e7f172a8f8bb1ca23da055dafe16fe3a6e710f5"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev1.tar.gz",
"has_sig": false,
"md5_digest": "f9ef3c420bf07f1dcfac85a8759c2a46",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23502,
"upload_time": "2015-06-23T19:49:58",
"url": "https://files.pythonhosted.org/packages/f1/76/9fd0e19584c9180da9a3e187a91baafb5812d0dfec95928a46dac5186941/trec_dd-0.3.3.dev1.tar.gz"
}
],
"0.3.3.dev4": [
{
"comment_text": "",
"digests": {
"md5": "8ad832ddbc3f99083fd9cf08803e5447",
"sha256": "f126cd5147e508b16c6e2be9799505f28ce5f90e6396d98ab55d5bba47e704da"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev4-py2.7.egg",
"has_sig": false,
"md5_digest": "8ad832ddbc3f99083fd9cf08803e5447",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 51861,
"upload_time": "2015-06-23T21:25:52",
"url": "https://files.pythonhosted.org/packages/9b/76/56f85376bf52697bcb94a1aa2eaed78aceba76ab0a38c6b98c7aacc2f0cc/trec_dd-0.3.3.dev4-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "6dc35b2cc6f4450f64e444c395a9fa92",
"sha256": "b6106bf7653045515520d76e4ecde767189d54d7cc70b4a49c63ba58c6b50669"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev4.tar.gz",
"has_sig": false,
"md5_digest": "6dc35b2cc6f4450f64e444c395a9fa92",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22276,
"upload_time": "2015-06-23T21:25:49",
"url": "https://files.pythonhosted.org/packages/76/93/159e05a0addd25e4a33b3bdf3e6fc6d99b68e1761bc91b91ec45a17ddf54/trec_dd-0.3.3.dev4.tar.gz"
}
],
"0.3.3.dev5": [
{
"comment_text": "",
"digests": {
"md5": "fb7947e378dd7c4d746324d0b11f20a2",
"sha256": "77c86b2f0f2281aca5bab105db77623f4b5d103dcfd83d1e89e86c11753d64ee"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev5-py2.7.egg",
"has_sig": false,
"md5_digest": "fb7947e378dd7c4d746324d0b11f20a2",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 54883,
"upload_time": "2015-06-23T21:38:37",
"url": "https://files.pythonhosted.org/packages/43/97/ddb98b4cc05bcc50ea88e1a6ab30db334beb8cc5d05524a32c4bdcb31c6b/trec_dd-0.3.3.dev5-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "24d7b9cecc64b47db0a23cce5d8f26a1",
"sha256": "45a6c23e3a7f04d9317527f31b08a621cfe03c4dddef63378ea8205c9f61bde7"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev5.tar.gz",
"has_sig": false,
"md5_digest": "24d7b9cecc64b47db0a23cce5d8f26a1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25215,
"upload_time": "2015-06-23T21:38:34",
"url": "https://files.pythonhosted.org/packages/30/71/079b7e86f111512f4e8e492d258afed8628cef90cba05f1aa5ec2d0efa13/trec_dd-0.3.3.dev5.tar.gz"
}
],
"0.3.3.dev6": [
{
"comment_text": "",
"digests": {
"md5": "5bebb11201c00f70f327db3183942579",
"sha256": "82917ed7e53f49ddb4510fd16772971397c81b3edb522a31a70728f6a5c5388d"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev6-py2.7.egg",
"has_sig": false,
"md5_digest": "5bebb11201c00f70f327db3183942579",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 54993,
"upload_time": "2015-06-23T23:26:10",
"url": "https://files.pythonhosted.org/packages/78/bc/b2425a86892408359b86dbfe84cf274ba18a04a59700a48de7ee3c0215bb/trec_dd-0.3.3.dev6-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "567931af50ad2e83cb5c6880291779ec",
"sha256": "b110da53904c3becdefa95e3d0853f825bb0ee999383a345b33eca512fea18e3"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev6.tar.gz",
"has_sig": false,
"md5_digest": "567931af50ad2e83cb5c6880291779ec",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25470,
"upload_time": "2015-06-23T23:26:06",
"url": "https://files.pythonhosted.org/packages/58/06/edd381b228247e333259cca05976ea1a5260291c843379e664a0d87a62cb/trec_dd-0.3.3.dev6.tar.gz"
}
],
"0.3.3.dev7": [
{
"comment_text": "",
"digests": {
"md5": "581cb27467ff2f2781ec74fe09cc5b22",
"sha256": "f6db90c2d08da799d29af802cd676c15221d249c01a9dbbcf0cdc62e43b5f096"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev7-py2.7.egg",
"has_sig": false,
"md5_digest": "581cb27467ff2f2781ec74fe09cc5b22",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 55617,
"upload_time": "2015-06-25T22:08:44",
"url": "https://files.pythonhosted.org/packages/38/a2/7863b51f236fbfb495e440585d596f6bf780d1cb8b9f8b3871e6e94e98e9/trec_dd-0.3.3.dev7-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "0b9522f686f4c9e03e00b0dbd3c67839",
"sha256": "130a569f7e18b562dc41eaccfaae9a5f5ccb192a8a902fac92d2226712a743ff"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev7.tar.gz",
"has_sig": false,
"md5_digest": "0b9522f686f4c9e03e00b0dbd3c67839",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25742,
"upload_time": "2015-06-25T22:08:41",
"url": "https://files.pythonhosted.org/packages/68/7f/ebadb741b913cc42da635549e4f50025fbe4ef43535d568eabc457e2f7c2/trec_dd-0.3.3.dev7.tar.gz"
}
],
"0.3.3.dev8": [
{
"comment_text": "",
"digests": {
"md5": "69596ac8127543e84cdb2fb906126873",
"sha256": "c3a8b45b8eb5bbc3fd806299f79334f339edbd745974e0f6db2ab25531f736fb"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev8-py2.7.egg",
"has_sig": false,
"md5_digest": "69596ac8127543e84cdb2fb906126873",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 55737,
"upload_time": "2015-06-26T15:06:46",
"url": "https://files.pythonhosted.org/packages/73/c4/492cdf0c6428efb960db9a3ae4e26a85e7345ac158bfa97624fc7157c380/trec_dd-0.3.3.dev8-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "79da2e3dd204f33180ebfe4f5920104f",
"sha256": "512def2fd6a45c5e16e79ec1fcf74637aeabce7b9d9e93dce73eaeec7deed952"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev8.tar.gz",
"has_sig": false,
"md5_digest": "79da2e3dd204f33180ebfe4f5920104f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25787,
"upload_time": "2015-06-26T15:06:43",
"url": "https://files.pythonhosted.org/packages/06/28/de720787fc682f5519620b7183b2aa9588a9a327c1855a8e877a3f067259/trec_dd-0.3.3.dev8.tar.gz"
}
],
"0.3.3.dev9": [
{
"comment_text": "",
"digests": {
"md5": "313680b4d4f8ca1b86912451e2d5b70b",
"sha256": "50dcfda03f0319c970adff589a3735f603f9abfb92235624caa171a88a6aff25"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev9-py2.7.egg",
"has_sig": false,
"md5_digest": "313680b4d4f8ca1b86912451e2d5b70b",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 55731,
"upload_time": "2015-06-29T14:10:23",
"url": "https://files.pythonhosted.org/packages/ef/58/9ee6ee1c962e733eb2ad203fda4085198882bca1972fbe603da2e2626b5f/trec_dd-0.3.3.dev9-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "870201d073538df425618a0edb3d6272",
"sha256": "9b244de43f275854115218f057c283cd1e63d9879445e34521f51b132f9c6cb9"
},
"downloads": -1,
"filename": "trec_dd-0.3.3.dev9.tar.gz",
"has_sig": false,
"md5_digest": "870201d073538df425618a0edb3d6272",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25789,
"upload_time": "2015-06-29T14:10:20",
"url": "https://files.pythonhosted.org/packages/c3/2f/108bafcdb9d09642b5c617a3f1a7e4812fc20a72853185afc00773e37a8c/trec_dd-0.3.3.dev9.tar.gz"
}
],
"0.3.4": [
{
"comment_text": "",
"digests": {
"md5": "2a8ede8f7c75ff7ac096edbf64afc625",
"sha256": "29a9dde84940983e2b8f50406cb81f7386a92404e56acaf252ee4b1c4a1d1152"
},
"downloads": -1,
"filename": "trec_dd-0.3.4-py2.7.egg",
"has_sig": false,
"md5_digest": "2a8ede8f7c75ff7ac096edbf64afc625",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 56325,
"upload_time": "2015-07-08T14:24:30",
"url": "https://files.pythonhosted.org/packages/1e/c8/f72b4713e57a06cda499b30b30565c77c878a1178057af51adaea1522f89/trec_dd-0.3.4-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "a30504b6055ffe89611e6ca104410261",
"sha256": "5e96fa95e6a311cf55b83f65c8b4ee5957b37769a5c6ad51229c79a8dc2c22fe"
},
"downloads": -1,
"filename": "trec_dd-0.3.4.tar.gz",
"has_sig": false,
"md5_digest": "a30504b6055ffe89611e6ca104410261",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26106,
"upload_time": "2015-07-08T14:24:26",
"url": "https://files.pythonhosted.org/packages/dd/ca/84f6e5f2b8d9312f7a6fe2e690727e58ba8ad2e1e75fb45ebf0b5dbf4e83/trec_dd-0.3.4.tar.gz"
}
],
"0.3.4.dev1": [
{
"comment_text": "",
"digests": {
"md5": "32f5b3e948a0e4cf9ef0f33dabaa3cb2",
"sha256": "e5c64ebd9ab2c1e533b253fbab1bf502a0e39c3d20cae3e5feaf1e0776b36aae"
},
"downloads": -1,
"filename": "trec_dd-0.3.4.dev1-py2.7.egg",
"has_sig": false,
"md5_digest": "32f5b3e948a0e4cf9ef0f33dabaa3cb2",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 56343,
"upload_time": "2015-07-08T14:18:17",
"url": "https://files.pythonhosted.org/packages/30/4d/30c581dfd76598eca5283ec3ca2214892133d41e0f6881be9f91ae4f5a85/trec_dd-0.3.4.dev1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "b4d40296820cd52a141180e31998471c",
"sha256": "9d09faa3b6b87d692520ad918cdd39e93c7b497ff91805515f79c3211cd2923c"
},
"downloads": -1,
"filename": "trec_dd-0.3.4.dev1.tar.gz",
"has_sig": false,
"md5_digest": "b4d40296820cd52a141180e31998471c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26110,
"upload_time": "2015-07-08T14:18:14",
"url": "https://files.pythonhosted.org/packages/93/04/4b09d1b08b3e58487194753e419acb87b3c41b938e40674400527eef4378/trec_dd-0.3.4.dev1.tar.gz"
}
],
"0.3.5": [
{
"comment_text": "",
"digests": {
"md5": "7c44af38f1ecc8534c872781e7f38f15",
"sha256": "e501913fde57199873b1389201edfcdcd5908e96070b803742543f888db3d995"
},
"downloads": -1,
"filename": "trec_dd-0.3.5-py2.7.egg",
"has_sig": false,
"md5_digest": "7c44af38f1ecc8534c872781e7f38f15",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57248,
"upload_time": "2015-07-15T15:56:23",
"url": "https://files.pythonhosted.org/packages/48/b2/04f0020d555341cce34edb270a142c7bdd0a230055fb881e49a15260b595/trec_dd-0.3.5-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "d8d43015302597bbdc03e5b9caf37951",
"sha256": "ca10fce372243149bef3106dac45b3b6a001f84ed9473bbeb42a4001b3269e12"
},
"downloads": -1,
"filename": "trec_dd-0.3.5.tar.gz",
"has_sig": false,
"md5_digest": "d8d43015302597bbdc03e5b9caf37951",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27635,
"upload_time": "2015-07-15T15:56:20",
"url": "https://files.pythonhosted.org/packages/16/88/bff968448d0285dc1a200ae5fc5a9ee44d188c296ae94fc4e3b71966fd1d/trec_dd-0.3.5.tar.gz"
}
],
"0.3.5.dev2": [
{
"comment_text": "",
"digests": {
"md5": "dfc466aace3fee2548d4acd73a33fbce",
"sha256": "7a73bc15baaf57a4425257759e52aa4eafdffb8008872418f0977e837b88b306"
},
"downloads": -1,
"filename": "trec_dd-0.3.5.dev2-py2.7.egg",
"has_sig": false,
"md5_digest": "dfc466aace3fee2548d4acd73a33fbce",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57255,
"upload_time": "2015-07-15T14:19:42",
"url": "https://files.pythonhosted.org/packages/6d/6f/48d87d101f5a7980479b2b6f1139c8b712525df9488ae49b2817350cadeb/trec_dd-0.3.5.dev2-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "8dca71aee1711279d7f43290728da691",
"sha256": "7acd7184907f8524c5fdcae15a03a9c511b245b1486c15332d1d1bed9336b1d9"
},
"downloads": -1,
"filename": "trec_dd-0.3.5.dev2.tar.gz",
"has_sig": false,
"md5_digest": "8dca71aee1711279d7f43290728da691",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27653,
"upload_time": "2015-07-15T14:19:39",
"url": "https://files.pythonhosted.org/packages/80/2c/2f83cccbaf93965c4ef5e2e29770a0f9cc57601e561480870a5c71cbcf5c/trec_dd-0.3.5.dev2.tar.gz"
}
],
"0.3.6": [
{
"comment_text": "",
"digests": {
"md5": "1800bf52b70c01d974c808db65c08401",
"sha256": "9537137c845464f463afe9836594b912d1697524eb16404028105aefd997a63c"
},
"downloads": -1,
"filename": "trec_dd-0.3.6-py2.7.egg",
"has_sig": false,
"md5_digest": "1800bf52b70c01d974c808db65c08401",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57258,
"upload_time": "2015-07-22T20:10:11",
"url": "https://files.pythonhosted.org/packages/93/3e/f3200b5393704106c65043397268c94988b41862b91c3f82564b7a37350f/trec_dd-0.3.6-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "ddf2aaf1607fe30ba4aa7579172f975e",
"sha256": "dcdb2d89e3f7ef4a487c3c3fe3b5ca3d7be7f85455624b4a5921ef86a724e1ba"
},
"downloads": -1,
"filename": "trec_dd-0.3.6.tar.gz",
"has_sig": false,
"md5_digest": "ddf2aaf1607fe30ba4aa7579172f975e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27624,
"upload_time": "2015-07-22T20:10:08",
"url": "https://files.pythonhosted.org/packages/8a/8c/a76dd304055e8347b3c29774145253c65444d8c320688b950cdab93cc2fe/trec_dd-0.3.6.tar.gz"
}
],
"0.3.6.dev3": [
{
"comment_text": "",
"digests": {
"md5": "15bf26ea6e0a1656a2fcc11999d3072d",
"sha256": "c08f79f218e027e0b2045668c624cbd4461864f388e65ec63014bbe9f9e92a6b"
},
"downloads": -1,
"filename": "trec_dd-0.3.6.dev3-py2.7.egg",
"has_sig": false,
"md5_digest": "15bf26ea6e0a1656a2fcc11999d3072d",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57273,
"upload_time": "2015-07-22T18:53:52",
"url": "https://files.pythonhosted.org/packages/4b/81/1be22ca46e7e146916934fbfd10bc07bffac6f50add824ca8579010066fe/trec_dd-0.3.6.dev3-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "a9acbf845f6645a8be88c7b1b8a5756b",
"sha256": "bb69d33a6a4b624d4c56ff13142357299d6575583a404127411e18921312e346"
},
"downloads": -1,
"filename": "trec_dd-0.3.6.dev3.tar.gz",
"has_sig": false,
"md5_digest": "a9acbf845f6645a8be88c7b1b8a5756b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27635,
"upload_time": "2015-07-22T18:53:49",
"url": "https://files.pythonhosted.org/packages/e7/a8/948ca618835613b2d7af1b3bc486232f64b0fcc1bf69892e28865ca24575/trec_dd-0.3.6.dev3.tar.gz"
}
],
"0.3.7.dev1": [
{
"comment_text": "",
"digests": {
"md5": "a2708708227a2186fbf8dd08de8280dc",
"sha256": "1cb10dca437a6bc171505c57b8c6603f24491efebad8d9d0602f21e160ab8ce7"
},
"downloads": -1,
"filename": "trec_dd-0.3.7.dev1-py2.7.egg",
"has_sig": false,
"md5_digest": "a2708708227a2186fbf8dd08de8280dc",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57229,
"upload_time": "2015-09-18T17:22:32",
"url": "https://files.pythonhosted.org/packages/27/0f/7e6fcc37557fe7794c2aa499428dc092cde599010f06cafda949b10ff10c/trec_dd-0.3.7.dev1-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "7ded6e6502448b7ae2a85d511b960dbf",
"sha256": "8521aa77f5a8273bbe86f6adfb9aaa23ba313ec89e90c292b4f5335edefcf1b1"
},
"downloads": -1,
"filename": "trec_dd-0.3.7.dev1.tar.gz",
"has_sig": false,
"md5_digest": "7ded6e6502448b7ae2a85d511b960dbf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27642,
"upload_time": "2015-09-18T17:22:28",
"url": "https://files.pythonhosted.org/packages/55/f5/5586a82df375772e39c46966fc3a05e7da4d91c93028deda04e2e737ebf9/trec_dd-0.3.7.dev1.tar.gz"
}
],
"0.3.7.dev2": [
{
"comment_text": "",
"digests": {
"md5": "9e2f05a2caaddcb65b558186a94ed7c0",
"sha256": "6dac94f9a3e12fe96eda657456ffdd2405224fdd966bea5b6a19790e4b1b56b2"
},
"downloads": -1,
"filename": "trec_dd-0.3.7.dev2-py2.7.egg",
"has_sig": false,
"md5_digest": "9e2f05a2caaddcb65b558186a94ed7c0",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57442,
"upload_time": "2015-10-08T18:31:42",
"url": "https://files.pythonhosted.org/packages/64/f5/5b3fbd22b6ec6a3d79e064ecb911fb5a2d495a55d6e5f5305bf656b1cedb/trec_dd-0.3.7.dev2-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "2b3741e358a3064e75acd64404ae9e76",
"sha256": "753c7cf61d762a808702a46566af68717a8b3db028d1d17aa37566e5571bd687"
},
"downloads": -1,
"filename": "trec_dd-0.3.7.dev2.tar.gz",
"has_sig": false,
"md5_digest": "2b3741e358a3064e75acd64404ae9e76",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27820,
"upload_time": "2015-10-08T18:31:37",
"url": "https://files.pythonhosted.org/packages/e5/ca/3d217f0c8adbb5d51bd1e9e084fc73517a65269b3ecd1e51a46fbc9afaa3/trec_dd-0.3.7.dev2.tar.gz"
}
],
"0.3.7.dev3": [
{
"comment_text": "",
"digests": {
"md5": "801338035adcef403026cdd7d6d0770f",
"sha256": "de22eeaee161e99077571922c43cc4f07a6fae11738959ca25b0ca3bdc4ef3b6"
},
"downloads": -1,
"filename": "trec_dd-0.3.7.dev3-py2.7.egg",
"has_sig": false,
"md5_digest": "801338035adcef403026cdd7d6d0770f",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57427,
"upload_time": "2015-10-08T18:51:45",
"url": "https://files.pythonhosted.org/packages/38/b8/0695ac06b06583a867e7d0032775301b759e63b81a0b1bbd417cdc5ba7e3/trec_dd-0.3.7.dev3-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "47679e16627ffc357314737d037812ee",
"sha256": "554bd6e3741cb65ee2c17c9a5aa92ab9995d29ddbc43d36000cd23d91c6b43d8"
},
"downloads": -1,
"filename": "trec_dd-0.3.7.dev3.tar.gz",
"has_sig": false,
"md5_digest": "47679e16627ffc357314737d037812ee",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27822,
"upload_time": "2015-10-08T18:51:41",
"url": "https://files.pythonhosted.org/packages/2d/0e/82464d61b74f0c46660b3b7d8e688e6a56214bdb6919763f7fd13d7e29d3/trec_dd-0.3.7.dev3.tar.gz"
}
],
"0.3.7.dev4": [
{
"comment_text": "",
"digests": {
"md5": "e2d2a7a4146dc682a3939d3f7ff74be3",
"sha256": "927f058978bff26360dbdff8c80775751929f158085544f764f26974d364e6b6"
},
"downloads": -1,
"filename": "trec_dd-0.3.7.dev4-py2.7.egg",
"has_sig": false,
"md5_digest": "e2d2a7a4146dc682a3939d3f7ff74be3",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57237,
"upload_time": "2015-10-08T18:54:31",
"url": "https://files.pythonhosted.org/packages/b3/39/8971b88cad838cc4bf7284e8cd7c1e56a9388ba36ba9d68d17334f4a3f0d/trec_dd-0.3.7.dev4-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "492f27c9803650fd856d75f7044b440c",
"sha256": "0f10f6d60dfd23f3b4a523ea8be1fef4ef9554658ac6c1f188891ed84b3ec8c6"
},
"downloads": -1,
"filename": "trec_dd-0.3.7.dev4.tar.gz",
"has_sig": false,
"md5_digest": "492f27c9803650fd856d75f7044b440c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27635,
"upload_time": "2015-10-08T18:54:27",
"url": "https://files.pythonhosted.org/packages/12/32/11d2f3c601c1da198054029731bf7fd9169ea41d8d105bd7c087ff093e1a/trec_dd-0.3.7.dev4.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "1800bf52b70c01d974c808db65c08401",
"sha256": "9537137c845464f463afe9836594b912d1697524eb16404028105aefd997a63c"
},
"downloads": -1,
"filename": "trec_dd-0.3.6-py2.7.egg",
"has_sig": false,
"md5_digest": "1800bf52b70c01d974c808db65c08401",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 57258,
"upload_time": "2015-07-22T20:10:11",
"url": "https://files.pythonhosted.org/packages/93/3e/f3200b5393704106c65043397268c94988b41862b91c3f82564b7a37350f/trec_dd-0.3.6-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "ddf2aaf1607fe30ba4aa7579172f975e",
"sha256": "dcdb2d89e3f7ef4a487c3c3fe3b5ca3d7be7f85455624b4a5921ef86a724e1ba"
},
"downloads": -1,
"filename": "trec_dd-0.3.6.tar.gz",
"has_sig": false,
"md5_digest": "ddf2aaf1607fe30ba4aa7579172f975e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27624,
"upload_time": "2015-07-22T20:10:08",
"url": "https://files.pythonhosted.org/packages/8a/8c/a76dd304055e8347b3c29774145253c65444d8c320688b950cdab93cc2fe/trec_dd-0.3.6.tar.gz"
}
]
}