{ "info": { "author": "Mike Lissner", "author_email": "mike@free.law", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Background of the Free Law Reporters Database\n=============================================\n\nA long, long time ago near a courthouse not too far away, people started\nkeeping books of every important opinion that was ever written. These\nbooks became known as *reporters* and were generally created by\nlibrarian-types of yore such as `Mr. William\nCranch `__ and `Alex\nDallas `__.\n\nThese people were busy for the next few centuries and created\n*thousands* of these books, culminating in what we know today as West's\nreporters or as regional reporters like the \"Dakota Reports\" or the\nthoroughly-named, \"Synopses of the Decisions of the Supreme Court of\nTexas Arising from Restraints by Conscript and Other Military\nAuthorities (Robards).\"\n\nIn this repository we've taken a look at all these reporters and tried\nto sort out what we know about them and convert that to data. This data\nis available as a JSON file, and can be browsed in an unofficial CSV.\n\nNaturally, converting several centuries' history into clean data results\nin a mess, but we've done our best and this mess is in use in a number\nof projects as listed below.\n\nWe hope you'll find this useful to your endeavors and that you'll share\nyour work with the community if you improve or use this work.\n\nCSV\n===\n\nYou can make a CSV of this data by running:\n\n::\n\n make_csv.py\n\nWe keep a copy of this CSV in this repository (``reporters.csv``), but\nit is not kept up to date. It should, however, provide a good idea of\nwhat's here.\n\nKnown Implementations\n=====================\n\n1. This work was originally deployed in the\n `CourtListener `__ citation finder\n beginning in about 2012. It has been used literally millions of times\n to identify citations between cases.\n\n2. An extension for Firefox known as the `Free Law\n Ferret `__\n uses this code to find citations in your browser as you read things\n -- all over the Web.\n\n3. A Node module called\n `Walverine `__ uses an\n iteration of this code to find citations using the V8 JavaScript\n engine.\n\nSome Notes on the Data\n======================\n\nSome things to bear in mind as you are examining the Free Law Reporters\nDatabase:\n\n1. Each Reporter key maps to a list of reporters that that key can\n represent. In some cases (especially in early reporters), the key is\n ambiguous, referring to more than one possible reporter.\n2. Formats follow the Blue Book standard, with variations listed for\n local rules and other ways lawyers abbreviate it over the years or\n accidentally.\n3. The ``variations`` key consists of data from local rules, found\n through organic usage in our corpus and from the `Cardiff Index to\n Legal Abbreviations `__. We\n have used a dict for these values due to the fact that there can be\n variations for each series.\n4. ``mlz_jurisdiction`` corresponds to the work that is being done for\n Multi-Lingual Zotero. This field is maintained by Frank Bennett and\n may sometimes be missing values.\n5. Some reporters have ``href`` or ``notes`` fields to provide a link to\n the best available reference (often Wikipedia) or to provide notes\n about the reporter itself.\n6. Regarding dates of the editions, there are a few things to know. In\n reporters with multiple series, if multiple volumes have the same\n dates, this indicates that the point where one series ends and the\n other begins is unknown. If an edition has 1750 as its start date,\n this indicates that the actual start date is unknown. Likewise, if an\n edition has ``null`` as its end date, that indicates the actual end\n date is either unknown, or it's known that the series has not\n completed. These areas need research before we can release version\n 1.1 of this database. Finally, dates are inclusive, so the first and\n last opinions in a reporter series have the same dates as the\n database.\n\nA complete data point has fields like so:\n\n::\n\n \"$citation\": [\n {\n \"cite_type\": \"state|federal|neutral|specialty|specialty_west|specialty_lexis|state_regional|scotus_early\",\n \"editions\": {\n \"$citation\": {\n \"end\": null,\n \"start\": \"1750-01-01T00:00:00\"\n },\n \"$citation 2d\": {\n \"end\": null,\n \"start\": \"1750-01-01T00:00:00\"\n }\n },\n \"mlz_jurisdiction\": [],\n \"name\": \"\",\n \"variations\": {},\n \"notes\": \"\",\n \"href\": \"\",\n \"publisher\": \"\"\n }\n ],\n\nSome notes on the ``state_abbreviations`` and\n``case_name_abbreviations`` files:\n\n1. Abbreviations are based on data from the values in the nineteenth\n edition of the Blue Book supplemented with abbreviations found in our\n corpus.\n2. ``case_name_abbreviations.json`` contains the abbreviations that are\n likely to occur in the case name of an opinion.\n3. ``state_abbreviations.json`` contains the abbreviations that are\n likely to be used to refer to American states.\n\nNotes on Specific Data Point and References\n-------------------------------------------\n\n1. Mississippi supports neutral citations, but does so in their own\n format, as specified in `this\n rule `__.\n Research is needed for the format in ``reporters.json`` to see if it\n is used accidentally as a variant of their rule or whether it is an\n error in this database.\n2. New Mexico dates confirmed via the `table\n here `__.\n3. Both Puerto Rico and \"Pennsylvania State Reports, Penrose and Watts\"\n use the citation \"P.R.\"\n\nInstallation (Python)\n=====================\n\nYou can install the Free Law Reporters Database with a few simple\ncommands:\n\n::\n\n pip install reporters-db\n\nOnce installed you can use it in your code with something like:\n\n::\n\n from reporters_db import REPORTERS\n\nYou can see all of the variables that can be imported by looking in\n``__init__.py``. Other variables currently include:\n``STATE_ABBREVIATIONS``, ``CASE_NAME_ABBREVIATIONS``,\n``VARIATIONS_ONLY``, and ``EDITIONS``. These latter two are convenience\nvariables that you can use to get different views of the ``REPORTERS``\ndata.\n\nOf course, if you're not using Python, the data is in the ``json``\nformat, so you should be able to import it using your language of\nchoice.\n\nTests\n=====\n\n|Build Status|\n\nWe have a few tests that make sure things haven't completely broken.\nThey are automatically run by Travis CI each time a push is completed\nand should be run by developers as well before pushing. They can be run\nwith:\n\n::\n\n python tests.py\n\nIt's pretty simple, right?\n\nVersion History\n===============\n\nPast Versions\n-------------\n\n- 1.0: Has all common Blue Book reporters, with their variations from\n the Cardiff database.\n- 1.0.1\n\n 1. Bug fix after application to Lawbox bulk data\n 2. Updates cite\\_type for better granularity and to eliminate a few\n errors.\n 3. Adds WL, LEXIS and U.S. App. LEXIS as specialty\\_lexis and\n specialty\\_west cite\\_types.\n 4. ``fed`` cite\\_type has been converted to ``federal``\n\n- 1.0.2\n\n 1. Adds tests to verify the data (see ./tests.py)\n 2. Fixes a few data issues after applying tests\n\n- 1.0.9: Updates the mlz\\_jurisdiction field to be state-specific, per\n issue #1.\n\n\nCurrent Version\n---------------\n\n- 1.0.13: Updates the case name abbreviations\n\nFuture Versions\n---------------\n\n- 1.1: All dates are dialed in to the nearest year for every edition of\n every reporter (some still require research beyond what Blue Book\n provides). See `issue\n #7 `__\n- 1.2: All dates are dialed into the correct day for every edition of\n every reporter.\n- 1.x: International Reporters added?\n- 2.0: Other features (suggestions welcome)?\n\nLicense\n=======\n\nThis repository is available under the permissive BSD license, making it\neasy and safe to incorporate in your own libraries.\n\nPull and feature requests welcome. Online editing in Github is possible\n(and easy!)\n\n.. |Build Status| image:: https://travis-ci.org/freelawproject/reporters-db.svg?branch=master\n :target: https://travis-ci.org/freelawproject/reporters-db\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/freelawproject/reporters-db", "keywords": "legal,reporters", "license": "BSD", "maintainer": "Mike Lissner", "maintainer_email": "mike@free.law", "name": "reporters-db", "package_url": "https://pypi.org/project/reporters-db/", "platform": "", "project_url": "https://pypi.org/project/reporters-db/", "project_urls": { "Homepage": "https://github.com/freelawproject/reporters-db" }, "release_url": "https://pypi.org/project/reporters-db/1.0.19/", "requires_dist": [ "six" ], "requires_python": "", "summary": "Database of Court Reporters", "version": "1.0.19" }, "last_serial": 4365721, "releases": { "1.0.11": [ { "comment_text": "", "digests": { "md5": "c437b5f2403536b4d75286a977128c33", "sha256": "303a3d47bb144d48ce5ca073108b0c4fa19e0907ec5e8a526d0477a4916f934d" }, "downloads": -1, "filename": "reporters_db-1.0.11-py2-none-any.whl", "has_sig": false, "md5_digest": "c437b5f2403536b4d75286a977128c33", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 58994, "upload_time": "2016-09-27T18:46:40", "url": "https://files.pythonhosted.org/packages/c0/c0/b69a75e9e8811f9321f1b0c9686c1acd79b20af35096fd3f4b35bc9ab9e9/reporters_db-1.0.11-py2-none-any.whl" } ], "1.0.11.1": [ { "comment_text": "", "digests": { "md5": "ddc9096ad8d6360c6434be6485c447d7", "sha256": "12da36e5fd87477af40b6c3c08cfac77a18a3e6033080c3c304d4df91b745a99" }, "downloads": -1, "filename": "reporters_db-1.0.11.1-py2-none-any.whl", "has_sig": false, "md5_digest": "ddc9096ad8d6360c6434be6485c447d7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 58968, "upload_time": "2016-09-27T18:57:03", "url": "https://files.pythonhosted.org/packages/40/81/29bd1b8bff6d91d5a70e88b5ea0ad7da46e10c75b7c97f437a67babe8a36/reporters_db-1.0.11.1-py2-none-any.whl" } ], "1.0.11.2": [ { "comment_text": "", "digests": { "md5": "7eb74cedf6bbed4ccbba0f652887504e", "sha256": "cf00418e30ca754c4ddca9a5eb87dbe3c93f9898d0f85f571b7d14c10ae3f5c7" }, "downloads": -1, "filename": "reporters_db-1.0.11.2-py2-none-any.whl", "has_sig": false, "md5_digest": "7eb74cedf6bbed4ccbba0f652887504e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 58972, "upload_time": "2016-09-27T19:03:49", "url": "https://files.pythonhosted.org/packages/76/82/54373fb0400ef405b45973b3b3a5446d1d13988555df93a8bf00fecd7e2f/reporters_db-1.0.11.2-py2-none-any.whl" } ], "1.0.11.4": [ { "comment_text": "", "digests": { "md5": "5015c91590b1797061830e98cd0fb0e6", "sha256": "ad86228da342529140103bacb55f9f314dd6edd599fce563ea317d4f26ab0ec4" }, "downloads": -1, "filename": "reporters_db-1.0.11.4-py2.7.egg", "has_sig": false, "md5_digest": "5015c91590b1797061830e98cd0fb0e6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58183, "upload_time": "2016-10-20T18:27:26", "url": "https://files.pythonhosted.org/packages/2f/10/5ff00110d7f48e4868eabd655043d52e873263e3b84ab504dbbd261ea4cb/reporters_db-1.0.11.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d2a9714b12b979a35cc56d33188ffb61", "sha256": "2c7cc87855911f1254c4204ae27ee509e82bfd1508a8e78b367622501d67b89f" }, "downloads": -1, "filename": "reporters_db-1.0.11.4-py2-none-any.whl", "has_sig": false, "md5_digest": "d2a9714b12b979a35cc56d33188ffb61", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 60069, "upload_time": "2016-10-20T18:27:24", "url": "https://files.pythonhosted.org/packages/eb/ed/ccd4f5a47cdc0721a93ef97d7ed3f9edfb64731342c57cda4929e6f75e08/reporters_db-1.0.11.4-py2-none-any.whl" } ], "1.0.11.5": [ { "comment_text": "", "digests": { "md5": "50bbabca8e4a527ddaf892a39bda77c6", "sha256": "ab10b3f415d51535a44da7a8aa78d5f24a815bc7713fed72d568359cde86a4fb" }, "downloads": -1, "filename": "reporters_db-1.0.11.5-py2.7.egg", "has_sig": false, "md5_digest": "50bbabca8e4a527ddaf892a39bda77c6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58190, "upload_time": "2016-10-20T18:32:33", "url": "https://files.pythonhosted.org/packages/f5/c4/9c3b5d86c2e722a0619110a78083394cc29dda5b939e4ca59b7d765ed9ad/reporters_db-1.0.11.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "72f2663457c85884108058f3bf3222c7", "sha256": "639c362ffe9519557eae8126d363750dbb1a5d0492fcb51c933c78aee695d493" }, "downloads": -1, "filename": "reporters_db-1.0.11.5-py2-none-any.whl", "has_sig": false, "md5_digest": "72f2663457c85884108058f3bf3222c7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 60064, "upload_time": "2016-10-20T18:32:30", "url": "https://files.pythonhosted.org/packages/25/cc/392b62d6a96cdf126f570c8fb232273c1693e1623777342e2c8dfe5def47/reporters_db-1.0.11.5-py2-none-any.whl" } ], "1.0.12": [ { "comment_text": "", "digests": { "md5": "18e2dcf6b508881dc85d4499de0df78f", "sha256": "a45c7b7dc42aeb7bedcd660fa0897ee51ad2aaf325e4a3164b3ea3904754af33" }, "downloads": -1, "filename": "reporters_db-1.0.12-py2.7.egg", "has_sig": false, "md5_digest": "18e2dcf6b508881dc85d4499de0df78f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58429, "upload_time": "2017-03-23T18:27:32", "url": "https://files.pythonhosted.org/packages/6e/86/659951fdae1f287a04c4e461657be8a1b25bc9e5320a435e84866bea7091/reporters_db-1.0.12-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5b8b80ac4ba5be4b1afaf35b4b9dbc5e", "sha256": "7b9dd100e492d2df2af54858067c057301b17e2537e6773276f5e93c9a9a8b7e" }, "downloads": -1, "filename": "reporters_db-1.0.12-py2-none-any.whl", "has_sig": false, "md5_digest": "5b8b80ac4ba5be4b1afaf35b4b9dbc5e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 60267, "upload_time": "2017-03-23T18:27:30", "url": "https://files.pythonhosted.org/packages/b2/43/4a591b618047a7a551e8dca9314371ed4ca601b5820b40ae3d577f43afeb/reporters_db-1.0.12-py2-none-any.whl" } ], "1.0.12.1": [ { "comment_text": "", "digests": { "md5": "0ad2cfa5123e3518538b7e7ebff3b0a9", "sha256": "8899c2aa3d53eeb11efcd12cd3960384de8dfea91ac17b3f6e51ff3795ccaef7" }, "downloads": -1, "filename": "reporters_db-1.0.12.1-py2.7.egg", "has_sig": false, "md5_digest": "0ad2cfa5123e3518538b7e7ebff3b0a9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58602, "upload_time": "2017-03-23T18:33:26", "url": "https://files.pythonhosted.org/packages/23/13/d5a7512972354075bc6b81fcd91b2b1ab42c017654256e3627ccefb31044/reporters_db-1.0.12.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d1256e76a850f4236966c322c1253ef1", "sha256": "260d12ce929ba32d380d109777ef049131be477eaec286af682c6a859fd5a420" }, "downloads": -1, "filename": "reporters_db-1.0.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d1256e76a850f4236966c322c1253ef1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60360, "upload_time": "2017-03-23T18:33:24", "url": "https://files.pythonhosted.org/packages/0d/6c/16c7c3849a25d2c3af5ef6e05d768d8e86e74aa9051df4728325c5f31f46/reporters_db-1.0.12.1-py2.py3-none-any.whl" } ], "1.0.13": [ { "comment_text": "", "digests": { "md5": "80a66f421596dfa66a4bd93be8d5c26f", "sha256": "034c27b5c99c1eaca3ae6e0027565e2dda1a63cc43b8292e9ed4ff54413b4c5b" }, "downloads": -1, "filename": "reporters_db-1.0.13-py2.7.egg", "has_sig": false, "md5_digest": "80a66f421596dfa66a4bd93be8d5c26f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58682, "upload_time": "2018-06-04T06:07:16", "url": "https://files.pythonhosted.org/packages/42/b3/b0663a32862c32ba74ca8b3f55b9b210b493182e3dc242ca879456b28486/reporters_db-1.0.13-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "61afe6a54bbf114f9d1178c8300518cb", "sha256": "7680f007ad99cbacddd5094a820e2a0e631eae978cfc5b186b2f24a70c9aae0a" }, "downloads": -1, "filename": "reporters_db-1.0.13-py3.5.egg", "has_sig": false, "md5_digest": "61afe6a54bbf114f9d1178c8300518cb", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 58806, "upload_time": "2018-06-04T06:08:18", "url": "https://files.pythonhosted.org/packages/8f/37/5529fcd4cf12ed761aa3a044694821965038f9e9393fc35a29392d863105/reporters_db-1.0.13-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "ead82ef24be7d9ca0ffcff66896e6079", "sha256": "1cd2ac15d322d6ec060cc2311835126a20169887d8214049f3407c996d004ddc" }, "downloads": -1, "filename": "reporters_db-1.0.13-py3.6.egg", "has_sig": false, "md5_digest": "ead82ef24be7d9ca0ffcff66896e6079", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 58694, "upload_time": "2018-06-04T06:09:34", "url": "https://files.pythonhosted.org/packages/fb/e7/6ffa1d0dd4fd175105f534057cb226c00e21405c66978c23975b19088632/reporters_db-1.0.13-py3.6.egg" } ], "1.0.13.1": [ { "comment_text": "", "digests": { "md5": "3345c2911ef01181006ec4203b8385d1", "sha256": "df98ba57bc491456036c50c7ce93e90a072effc865d517efe6998c755e7a1e53" }, "downloads": -1, "filename": "reporters_db-1.0.13.1-py2.7.egg", "has_sig": false, "md5_digest": "3345c2911ef01181006ec4203b8385d1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58697, "upload_time": "2018-06-04T06:16:11", "url": "https://files.pythonhosted.org/packages/2c/ac/ed8b03042ffc7530324c05102c9e73d49ba4382bdad7ff0abe7111a863f0/reporters_db-1.0.13.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a5d28b1a9e8447743cfbfaf02b84f623", "sha256": "3521c5f88530190ba9e59a3dc9b61a31d252fec8d18e858ba613e7ce8043d828" }, "downloads": -1, "filename": "reporters_db-1.0.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5d28b1a9e8447743cfbfaf02b84f623", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55675, "upload_time": "2018-06-04T06:16:10", "url": "https://files.pythonhosted.org/packages/e1/80/55bca04ca41211c701edcebad567ce34de3510cacf3f57ee0cffcc147c31/reporters_db-1.0.13.1-py2.py3-none-any.whl" } ], "1.0.14": [ { "comment_text": "", "digests": { "md5": "88ee4dd2185fe4c7d3a96259518b6ec5", "sha256": "aa5594907994cdf1f20720c3526ebb315dc1bed71d06aae16ac15dd758d6c738" }, "downloads": -1, "filename": "reporters_db-1.0.14-py2.7.egg", "has_sig": false, "md5_digest": "88ee4dd2185fe4c7d3a96259518b6ec5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 58745, "upload_time": "2018-09-21T00:50:07", "url": "https://files.pythonhosted.org/packages/b9/33/a73e054db0e5d4396a478374dfdd734db750b3f48aa1f33fd0d277c590a3/reporters_db-1.0.14-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6edd2380e020399b2006528f90f75f04", "sha256": "3fcb3bb583694877447c727ec5256b2a74918b2097bbbdd9db76a741220bc598" }, "downloads": -1, "filename": "reporters_db-1.0.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6edd2380e020399b2006528f90f75f04", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55706, "upload_time": "2018-09-21T00:50:05", "url": "https://files.pythonhosted.org/packages/cb/c8/37e286b3288f7b4b7dd515b5a4535825d3b76a226b106bc9fd554a6586a0/reporters_db-1.0.14-py2.py3-none-any.whl" } ], "1.0.15": [ { "comment_text": "", "digests": { "md5": "5cac84837c4151eabefdd9a843f6aab8", "sha256": "7e000318e26ef3269362fe2309ad533f0779a6534d926ecf1703579cd7d736dc" }, "downloads": -1, "filename": "reporters_db-1.0.15-py2.7.egg", "has_sig": false, "md5_digest": "5cac84837c4151eabefdd9a843f6aab8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59008, "upload_time": "2018-09-21T20:58:31", "url": "https://files.pythonhosted.org/packages/1e/3d/4c1f2c7eb748a504f062f326e7fc132468b3f023ff42d137289e7464860b/reporters_db-1.0.15-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3bd0f8913466e9ee9a0fc7307943a2bf", "sha256": "7a719119ecbcac8ecc1692c240183c403012e4cca5457953773adc8fea1d1c67" }, "downloads": -1, "filename": "reporters_db-1.0.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3bd0f8913466e9ee9a0fc7307943a2bf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55967, "upload_time": "2018-09-21T20:58:28", "url": "https://files.pythonhosted.org/packages/0c/71/e02bb930efd4b503b5f4b38dd37beef7590a69fb455b849ed456253d9fa1/reporters_db-1.0.15-py2.py3-none-any.whl" } ], "1.0.16": [ { "comment_text": "", "digests": { "md5": "a0997db2188b9d81b8664210044c6850", "sha256": "62ec5bfff64f6aa055eba3abd1e77a46132815e93b2c386ad03d21f508dd5139" }, "downloads": -1, "filename": "reporters_db-1.0.16-py2.7.egg", "has_sig": false, "md5_digest": "a0997db2188b9d81b8664210044c6850", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 59632, "upload_time": "2018-09-25T06:42:50", "url": "https://files.pythonhosted.org/packages/6b/0c/e81698d6b369d5dce4da9b8f949c2240f135585c1cc0c5de20139017879b/reporters_db-1.0.16-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "08ee140ba9d7e067b9321c4729c2a97c", "sha256": "ff2c119f945233ea1718326f7ab7b69e8e19f5098c6cb99488b1b035dc081789" }, "downloads": -1, "filename": "reporters_db-1.0.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "08ee140ba9d7e067b9321c4729c2a97c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56580, "upload_time": "2018-09-25T06:42:48", "url": "https://files.pythonhosted.org/packages/a5/8a/c7aa01f7970b1c94ac7caf3600651523af85829d1c4ed07082303d24e9e3/reporters_db-1.0.16-py2.py3-none-any.whl" } ], "1.0.17": [ { "comment_text": "", "digests": { "md5": "e8080ee17ddc5a0f4a77b907aea926b5", "sha256": "7ae8b4f46028519985206aa26cf86ac81ef10d94b8d8504c1c9a8955ca2018f4" }, "downloads": -1, "filename": "reporters_db-1.0.17-py2.7.egg", "has_sig": false, "md5_digest": "e8080ee17ddc5a0f4a77b907aea926b5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60129, "upload_time": "2018-10-09T22:26:03", "url": "https://files.pythonhosted.org/packages/80/84/8e2cabd9f6d162be23e642d56eca71780936540f85f6773eb5739150e0eb/reporters_db-1.0.17-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "aa19632fe9c02696e7b82523912a3c67", "sha256": "3a62d9048a487e96af0abbf2f716d44472d4cf06df0ba6e8cbee6309a7b5fdf8" }, "downloads": -1, "filename": "reporters_db-1.0.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa19632fe9c02696e7b82523912a3c67", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57649, "upload_time": "2018-10-09T22:26:01", "url": "https://files.pythonhosted.org/packages/da/d4/4668f964c98b64c4fb4cb24c2d1beab553d35f8bfbd72b5e47f27574f691/reporters_db-1.0.17-py2.py3-none-any.whl" } ], "1.0.18": [ { "comment_text": "", "digests": { "md5": "035cad54335b57456472c2a03986ec9f", "sha256": "5efdbb4a79b04c821150610b07112167ea770b4a666beb80d39128852cbafabe" }, "downloads": -1, "filename": "reporters_db-1.0.18-py2.7.egg", "has_sig": false, "md5_digest": "035cad54335b57456472c2a03986ec9f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60266, "upload_time": "2018-10-09T23:16:28", "url": "https://files.pythonhosted.org/packages/01/be/b84a00a39c86cbb6f1df00e27fc97c41aac29f8858229f186f1333f04185/reporters_db-1.0.18-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d1fd8ca33c3bd757b05dd6740a396f4d", "sha256": "9836411ea823a29214edf2c9d567e603b1f0ea8c9d8affaa91b0f956969870f2" }, "downloads": -1, "filename": "reporters_db-1.0.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d1fd8ca33c3bd757b05dd6740a396f4d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57699, "upload_time": "2018-10-09T23:16:26", "url": "https://files.pythonhosted.org/packages/47/17/5f0969734c62553feaf91841fa53612eada3e9190bac11da235cdc668bf4/reporters_db-1.0.18-py2.py3-none-any.whl" } ], "1.0.19": [ { "comment_text": "", "digests": { "md5": "ea3c1a35ad6c3698f1997d766f18a4e8", "sha256": "6c1930e7f1760ba8d9fb7d88f8bf0413193ad07a6f01420ad17c879067e4a6d3" }, "downloads": -1, "filename": "reporters_db-1.0.19-py2.7.egg", "has_sig": false, "md5_digest": "ea3c1a35ad6c3698f1997d766f18a4e8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60303, "upload_time": "2018-10-11T19:43:16", "url": "https://files.pythonhosted.org/packages/7c/25/a278f5f16f5cbf9da9285b455dabbc18d643b9575c5462805db92c75bcca/reporters_db-1.0.19-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e940eed570ab5ff7a0c79dfc12d43817", "sha256": "61736fbf9b490c3d84db409ea167f254db0b0ad9dc903ab6b4ea1aeababee3ae" }, "downloads": -1, "filename": "reporters_db-1.0.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e940eed570ab5ff7a0c79dfc12d43817", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57717, "upload_time": "2018-10-11T19:43:14", "url": "https://files.pythonhosted.org/packages/41/65/5a62eecb0569f4caa84dfd3a5f9694a63de239f5cfad351c3941f5291a68/reporters_db-1.0.19-py2.py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ea3c1a35ad6c3698f1997d766f18a4e8", "sha256": "6c1930e7f1760ba8d9fb7d88f8bf0413193ad07a6f01420ad17c879067e4a6d3" }, "downloads": -1, "filename": "reporters_db-1.0.19-py2.7.egg", "has_sig": false, "md5_digest": "ea3c1a35ad6c3698f1997d766f18a4e8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 60303, "upload_time": "2018-10-11T19:43:16", "url": "https://files.pythonhosted.org/packages/7c/25/a278f5f16f5cbf9da9285b455dabbc18d643b9575c5462805db92c75bcca/reporters_db-1.0.19-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e940eed570ab5ff7a0c79dfc12d43817", "sha256": "61736fbf9b490c3d84db409ea167f254db0b0ad9dc903ab6b4ea1aeababee3ae" }, "downloads": -1, "filename": "reporters_db-1.0.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e940eed570ab5ff7a0c79dfc12d43817", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57717, "upload_time": "2018-10-11T19:43:14", "url": "https://files.pythonhosted.org/packages/41/65/5a62eecb0569f4caa84dfd3a5f9694a63de239f5cfad351c3941f5291a68/reporters_db-1.0.19-py2.py3-none-any.whl" } ] }