{ "info": { "author": "United States", "author_email": "test@replaceme.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "Programming Language :: Python :: 2.7", "Topic :: Utilities" ], "description": "## unitedstates/congress\n\nPublic domain code that collects data about the bills, amendments, roll call votes, and other core data about the U.S. Congress.\n\nIncludes:\n\n* A data importing script for the [official bulk bill status data](https://github.com/usgpo/bill-status) from Congress, the official source of information on the life and times of legislation.\n\n* Scrapers for House and Senate roll call votes.\n\n* A scraper for GPO FDSys, the official repository for most legislative documents.\n\n* A defunct THOMAS scraper for presidential nominations in Congress.\n\nRead about the contents and schema in the [documentation](https://github.com/unitedstates/congress/wiki) in the github project wiki.\n\nFor background on how this repository came to be, see [Eric's blog post](http://sunlightfoundation.com/blog/2013/08/20/a-modern-approach-to-open-data/).\n\n\n### Setting Up\n\nThis project is tested using Python 2.7.\n\n**System dependencies**\n\nOn Ubuntu, you'll need `wget`, `pip`, and some support packages:\n\n```bash\nsudo apt-get install git python-dev libxml2-dev libxslt1-dev libz-dev python-pip\n```\n\nOn OS X, you'll need developer tools installed ([XCode](https://developer.apple.com/xcode/)), and `wget`.\n\n```bash\nbrew install wget\n```\n\n**Python dependencies**\n\nIt's recommended you use a `virtualenv` (virtual environment) for development. The easiest way is install `virtualenv` and `virtualenvwrapper`, using `sudo` if necessary:\n\n```bash\nsudo pip install virtualenv\nsudo pip install virtualenvwrapper\n```\n\nCreate a virtualenv for this project:\n\n```bash\nmkvirtualenv congress\n```\n\nAnd activate it before any development session using:\n\n```bash\nworkon congress\n```\n\nFinally, with your virtual environment activated, install Python packages:\n\n```bash\npip install -r requirements.txt\n```\n\n### Collecting the data\n\nThe general form to start the scraping process is:\n\n ./run [--force] [other options]\n\nwhere data-type is one of:\n\n* `bills` (see [Bills](https://github.com/unitedstates/congress/wiki/bills)) and [Amendments](https://github.com/unitedstates/congress/wiki/amendments))\n* `votes` (see [Votes](https://github.com/unitedstates/congress/wiki/votes))\n* `nominations` (see [Nominations](https://github.com/unitedstates/congress/wiki/nominations))\n* `committee_meetings` (see [Committee Meetings](https://github.com/unitedstates/congress/wiki/committee-meetings))\n* `fdsys` (see [Bill Text](https://github.com/unitedstates/congress/wiki/bill-text))\n* `deepbills` (see [Bill Text](https://github.com/unitedstates/congress/wiki/bill-text))\n* `statutes` (see [Bills](https://github.com/unitedstates/congress/wiki/bills) and [Bill Text](https://github.com/unitedstates/congress/wiki/bill-text))\n\nTo scrape bills, resolutions, and amendments from THOMAS, run:\n\n```bash\n./run fdsys --collections=BILLSTATUS\n./run bills\n```\n\nThe bills script will output bulk data into a top-level `data` directory, then organized by Congress number, bill type, and bill number. Two data output files will be generated for each bill: a JSON version (data.json) and an XML version (data.xml).\n\n### Common options\n\nDebugging messages are hidden by default. To include them, run with --log=info or --debug. To hide even warnings, run with --log=error.\n\nTo get emailed with errors, copy config.yml.example to config.yml and fill in the SMTP options. The script will automatically use the details when a parsing or execution error occurs.\n\nThe --force flag applies to all data types and supresses use of a cache for network-retreived resources.\n\n### Data Output\n\nThe script will cache downloaded pages in a top-level `cache` directory, and output bulk data in a top-level `data` directory.\n\nTwo bulk data output files will be generated for each object: a JSON version (data.json) and an XML version (data.xml). The XML version attempts to maintain backwards compatibility with the XML bulk data that [GovTrack.us](https://www.govtrack.us) has provided for years. Add the --govtrack flag to get fully backward-compatible output using GovTrack IDs (otherwise the source IDs used for legislators is used).\n\nSee the [project wiki](https://github.com/unitedstates/congress/wiki) for documentation on the output format.\n\n### Contributing\n\nPull requests with patches are awesome. Unit tests are strongly encouraged ([example tests](https://github.com/unitedstates/congress/blob/master/test/test_bill_actions.py)).\n\nThe best way to file a bug is to [open a ticket](https://github.com/unitedstates/congress/issues).\n\n\n### Running tests\n\nTo run this project's unit tests:\n\n```bash\n./test/run\n```\n\n### Who's Using This Data\n\nThe [Sunlight Foundation](http://sunlightfoundation.com) and [GovTrack.us](https://www.govtrack.us) are the two principal maintainers of this project.\n\nBoth Sunlight and GovTrack operate APIs where you can get much of this data delivered over HTTP:\n\n* [GovTrack.us API](https://www.govtrack.us/developers/api)\n* [Sunlight Congress API](http://sunlightlabs.github.io/congress/)\n\n## Public domain\n\nThis project is [dedicated to the public domain](LICENSE). As spelled out in [CONTRIBUTING](CONTRIBUTING.md):\n\n> The project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the [CC0 1.0 Universal public domain dedication](http://creativecommons.org/publicdomain/zero/1.0/).\n\n> All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.\n\n[![Build Status](https://travis-ci.org/unitedstates/congress.svg?branch=master)](https://travis-ci.org/unitedstates/congress)", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/unitedstates/congress", "keywords": "government development data", "license": "CC0-1.0", "maintainer": "", "maintainer_email": "", "name": "united-states-congress", "package_url": "https://pypi.org/project/united-states-congress/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/united-states-congress/", "project_urls": { "Homepage": "https://github.com/unitedstates/congress" }, "release_url": "https://pypi.org/project/united-states-congress/0.0.13/", "requires_dist": null, "requires_python": "", "summary": "Public domain data collectors for the work of Congress, including legislation, amendments, and votes.", "version": "0.0.13" }, "last_serial": 2512647, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "90f5613b073ccc4ec3bd8ee4eaa9e577", "sha256": "02b232f52047b556fc1b08757e7c154bda8751dc198780ab13c01c5ef3c7ed08" }, "downloads": -1, "filename": "united_states_congress-0.0.1-py27-none-any.whl", "has_sig": false, "md5_digest": "90f5613b073ccc4ec3bd8ee4eaa9e577", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 6998, "upload_time": "2016-12-12T03:42:28", "url": "https://files.pythonhosted.org/packages/7f/f7/28ac97de5c791e9b4ed963d1e2584f48a78fbbe22b0da178350943f5ffa0/united_states_congress-0.0.1-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66ae9e580a29a169699b9e37fbe29b6c", "sha256": "fc9aa6cb9ecc8b833be8a0b22cf213eb8edff9bcc4e652b98a71e7c80850836c" }, "downloads": -1, "filename": "united-states-congress-0.0.1.tar.gz", "has_sig": false, "md5_digest": "66ae9e580a29a169699b9e37fbe29b6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16923, "upload_time": "2016-12-12T03:43:00", "url": "https://files.pythonhosted.org/packages/81/e7/df002a5ddf5caa21b48ac09aa274246980d23af44930e3e1be60bbb4c494/united-states-congress-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "b382425852220f10c92c66cfcc4c01c3", "sha256": "c18964168e0d2f9d94fac346a7f8449e4f9179ab5129942afc525658e1364181" }, "downloads": -1, "filename": "united_states_congress-0.0.10-py27-none-any.whl", "has_sig": false, "md5_digest": "b382425852220f10c92c66cfcc4c01c3", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7645, "upload_time": "2016-12-12T03:42:31", "url": "https://files.pythonhosted.org/packages/4d/1d/72c5471eed061a8cf296884500e56bd55e478d83f27393aa8e7c443bda6a/united_states_congress-0.0.10-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1fffb32ef3c386943b986c6831a90723", "sha256": "45d63e7adef68a6536a123ec9e7d43243c1e89dc536915f2ef1487d9925b9c75" }, "downloads": -1, "filename": "united-states-congress-0.0.10.tar.gz", "has_sig": false, "md5_digest": "1fffb32ef3c386943b986c6831a90723", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17442, "upload_time": "2016-12-12T03:43:03", "url": "https://files.pythonhosted.org/packages/8a/d7/334a6893c9546168d143e74dc319c4d379918ac2e7ca9e2bc9f3f09b8c87/united-states-congress-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "e465979aeaa80a0b8319b615f5dd40b0", "sha256": "3646785085508e2f7239b7e0915004acf10f8f974881711ce1c82a7801af19c4" }, "downloads": -1, "filename": "united_states_congress-0.0.11-py27-none-any.whl", "has_sig": false, "md5_digest": "e465979aeaa80a0b8319b615f5dd40b0", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7330, "upload_time": "2016-12-12T03:42:34", "url": "https://files.pythonhosted.org/packages/8b/68/8d85d11a7f627ffa8854f21536e014356394dde9a8ec1713f4a80b4c7b25/united_states_congress-0.0.11-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c0414a0c23c9ecf2585c97939fe65051", "sha256": "77812c767e1d509e6b1ae90a9eca2d0f5c1dbcb31a5fbfc18d855566fbad2de4" }, "downloads": -1, "filename": "united-states-congress-0.0.11.tar.gz", "has_sig": false, "md5_digest": "c0414a0c23c9ecf2585c97939fe65051", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17419, "upload_time": "2016-12-12T03:43:05", "url": "https://files.pythonhosted.org/packages/88/96/ad61da2f273935a563bce4bdf2774683f70c4ab086ce7390c385d9dd04be/united-states-congress-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "5cae161dcee91b7fc1f3888a897869d0", "sha256": "f1d8d40cc2428b5809187a64253b3d9b3fdc107ba70d3b180cbcc0c639d5d0f8" }, "downloads": -1, "filename": "united_states_congress-0.0.12-py27-none-any.whl", "has_sig": false, "md5_digest": "5cae161dcee91b7fc1f3888a897869d0", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7320, "upload_time": "2016-12-12T03:59:30", "url": "https://files.pythonhosted.org/packages/eb/e7/5217198954656f09522d70297861b8a0c28309300b51b8cd8576810207bf/united_states_congress-0.0.12-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1acef18b564197631ac0a5adebd6156b", "sha256": "3ed3e0821f47e671bf69aaec8edeeaaec28317e66df558eacd0d8d502f48fd1f" }, "downloads": -1, "filename": "united-states-congress-0.0.12.tar.gz", "has_sig": false, "md5_digest": "1acef18b564197631ac0a5adebd6156b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17404, "upload_time": "2016-12-12T03:59:41", "url": "https://files.pythonhosted.org/packages/69/1b/9f56efa7bae7df44c538417da62dd13457ca9ab9f0f93b288fa3399b8176/united-states-congress-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "dd4410085ed14dc0c4fa7ac6266739dd", "sha256": "4e6389a533dcf3188a20b80391ac27da23467428ffebd31c82657da0e0da947e" }, "downloads": -1, "filename": "united_states_congress-0.0.13-py27-none-any.whl", "has_sig": false, "md5_digest": "dd4410085ed14dc0c4fa7ac6266739dd", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7320, "upload_time": "2016-12-12T04:14:35", "url": "https://files.pythonhosted.org/packages/fd/54/ddc55becbaa59711800e1972deefe78fda2f938e9c1c647f085d10f050cd/united_states_congress-0.0.13-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c456c5f42650b8885bfd007ccc3e388d", "sha256": "4b574c460aac1651b5804148afc681283cfac5e5f65e27a096e76d71181164ab" }, "downloads": -1, "filename": "united-states-congress-0.0.13.tar.gz", "has_sig": false, "md5_digest": "c456c5f42650b8885bfd007ccc3e388d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17407, "upload_time": "2016-12-12T04:14:20", "url": "https://files.pythonhosted.org/packages/b7/70/6bb5fcac037806b73999d849e1467411ec424aab279cec8b31128bc8b75d/united-states-congress-0.0.13.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "77167a17ea49484ac2fc41bf50516fec", "sha256": "a3274a995ca834ceb3dea96b49d739edb911ae9a751294674ac4ef17958ba2a4" }, "downloads": -1, "filename": "united_states_congress-0.0.2-py27-none-any.whl", "has_sig": false, "md5_digest": "77167a17ea49484ac2fc41bf50516fec", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 6997, "upload_time": "2016-12-12T03:42:38", "url": "https://files.pythonhosted.org/packages/a3/da/908c84bfbd4cf5ba8befa29e3b6d5817e19a441045b5bb3c8dc768fb3348/united_states_congress-0.0.2-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0166bc5681247e6bb44b94b49765825b", "sha256": "8508d2fda75422cb274ed6d8fa50b71bed92654ed0de46155f3787b9a5e22b45" }, "downloads": -1, "filename": "united-states-congress-0.0.2.tar.gz", "has_sig": false, "md5_digest": "0166bc5681247e6bb44b94b49765825b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16929, "upload_time": "2016-12-12T03:43:07", "url": "https://files.pythonhosted.org/packages/b5/3e/1ca4844a8aa17419abc8123581d11bfe02e7f043a87879d24ece5fb6413c/united-states-congress-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "e5a7905b468205475c2aae3504354d5b", "sha256": "2d1de67a4c6ccd458310016fa115dfb11ffd42b6369bd647b4c57350d8299959" }, "downloads": -1, "filename": "united_states_congress-0.0.3-py27-none-any.whl", "has_sig": false, "md5_digest": "e5a7905b468205475c2aae3504354d5b", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 6997, "upload_time": "2016-12-12T03:42:41", "url": "https://files.pythonhosted.org/packages/54/6e/6c3f21ddd1e75a6ca29e2f2fbc4632909ce9a3aef04f085a152711e9cded/united_states_congress-0.0.3-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "626da770b2c6bd7598674b0e165bbcde", "sha256": "8628acbb2b41f8ef78b4f869042ebb0cfb233069f7b41505ef7234bbccd790b3" }, "downloads": -1, "filename": "united-states-congress-0.0.3.tar.gz", "has_sig": false, "md5_digest": "626da770b2c6bd7598674b0e165bbcde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17058, "upload_time": "2016-12-12T03:43:09", "url": "https://files.pythonhosted.org/packages/12/aa/18624665c3a9aa8bf1bd1beca86a6ca439c9657d6d42d966da94a4e27fdb/united-states-congress-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "46535589ce2ef77e1d73767ec264c845", "sha256": "cda2996d204351643969e6c7c88951ca8a40d23a2aa836d6b9a63a424fe7d143" }, "downloads": -1, "filename": "united_states_congress-0.0.4-py27-none-any.whl", "has_sig": false, "md5_digest": "46535589ce2ef77e1d73767ec264c845", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7309, "upload_time": "2016-12-12T03:42:45", "url": "https://files.pythonhosted.org/packages/54/04/5511e9ee22971f13187ab74dcfbb2c368ff1fbed866b0b2b7ab5db20891a/united_states_congress-0.0.4-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd6be8a290833308cb6ce16e9640f491", "sha256": "4c1590fd1390cb01df807280df8f591b3a1f9aff5ec77411d963d5e1a737248b" }, "downloads": -1, "filename": "united-states-congress-0.0.4.tar.gz", "has_sig": false, "md5_digest": "fd6be8a290833308cb6ce16e9640f491", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17338, "upload_time": "2016-12-12T03:43:11", "url": "https://files.pythonhosted.org/packages/23/68/e5e11480236c24e1bbbf56d41b79148530863c7d31d2eeb5d2d76ad126ec/united-states-congress-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "beafebee3fba184cedec85a3b0fcbd34", "sha256": "b5be7de5d5562f1333e0f91c3fb18b47722e66693b62c5b817fe317e94acd591" }, "downloads": -1, "filename": "united_states_congress-0.0.5-py27-none-any.whl", "has_sig": false, "md5_digest": "beafebee3fba184cedec85a3b0fcbd34", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7590, "upload_time": "2016-12-12T03:42:47", "url": "https://files.pythonhosted.org/packages/ad/d6/afdf515b29b4b3359c9b933484284017902eb57892c5fd6ddf625ce44b8f/united_states_congress-0.0.5-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5f4cc57a30d40a9e0c34537f7f21141", "sha256": "36ab5c6b5411c4c7aa7b2b6546b8709936673c1e1b6064c3acda870335e23fc2" }, "downloads": -1, "filename": "united-states-congress-0.0.5.tar.gz", "has_sig": false, "md5_digest": "f5f4cc57a30d40a9e0c34537f7f21141", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17395, "upload_time": "2016-12-12T03:43:12", "url": "https://files.pythonhosted.org/packages/c7/6e/93f72867917d20c83f85d712e9accb294b1afe374fa05b7157f15eea8626/united-states-congress-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "d0c1c78e8940b035ae67217b30c72d5b", "sha256": "3ec2b9195c9322fd035bc065593b9846146b1071df9b3932eb3938be571def67" }, "downloads": -1, "filename": "united_states_congress-0.0.6-py27-none-any.whl", "has_sig": false, "md5_digest": "d0c1c78e8940b035ae67217b30c72d5b", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7613, "upload_time": "2016-12-12T03:42:51", "url": "https://files.pythonhosted.org/packages/d1/bc/c20e500a6092eca97d69504ef9889320b509a7049fedf7b4d0ac3bdd296c/united_states_congress-0.0.6-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "545544ca4baa1b57d8736f6aa28fba8f", "sha256": "2075c16cb0979f8c680f1174dcec06b61be7a5164ec0c7adafcf23740e285271" }, "downloads": -1, "filename": "united-states-congress-0.0.6.tar.gz", "has_sig": false, "md5_digest": "545544ca4baa1b57d8736f6aa28fba8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17405, "upload_time": "2016-12-12T03:43:14", "url": "https://files.pythonhosted.org/packages/c8/f7/534926f90f4365594649b3edc4cce7c058d4766c5a63f5da46a80f5666f8/united-states-congress-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "9d53106e4c4af31f04d42427783128f0", "sha256": "18d03532a35be3b63e7bdf742e21b2fe614d4951c3e588105ba426acf3b03917" }, "downloads": -1, "filename": "united_states_congress-0.0.7-py2.7.egg", "has_sig": false, "md5_digest": "9d53106e4c4af31f04d42427783128f0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 3860, "upload_time": "2016-12-12T03:43:21", "url": "https://files.pythonhosted.org/packages/ae/c7/90bfa42a6dfbe9dfff59091c4e9f26ba1f1c9cda14d554ef291207f41040/united_states_congress-0.0.7-py2.7.egg" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "83fdb7828ae89b9a2f73012681d25ad3", "sha256": "8bfa9f3d2606820120327d0139b957ad170c2dace4ba2889ea68157fe07f125b" }, "downloads": -1, "filename": "united_states_congress-0.0.8-py2.7.egg", "has_sig": false, "md5_digest": "83fdb7828ae89b9a2f73012681d25ad3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 3844, "upload_time": "2016-12-12T03:43:23", "url": "https://files.pythonhosted.org/packages/a8/67/f63d89d5d037641d142bcc6f066ddbe84ed3faccd3cc9ad82cccdb7df5e5/united_states_congress-0.0.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ddb7cf5561bce6c568cb60ccd3222c3d", "sha256": "db681b334a0ad829b22325e8a97a4f21b417d41929237189ffd3242c7499b3e7" }, "downloads": -1, "filename": "united_states_congress-0.0.8-py27-none-any.whl", "has_sig": false, "md5_digest": "ddb7cf5561bce6c568cb60ccd3222c3d", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7623, "upload_time": "2016-12-12T03:42:54", "url": "https://files.pythonhosted.org/packages/0e/6c/1dc87f53161f6d5e0c92c5c745a4c1290fb6c44e961fff78b260f4d231a1/united_states_congress-0.0.8-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab90d10a256dce7799079b1a0802cec7", "sha256": "eca4d592706ae46c7cbf0247fd65bc2db71466422f885d642cb45165bb9388b9" }, "downloads": -1, "filename": "united-states-congress-0.0.8.tar.gz", "has_sig": false, "md5_digest": "ab90d10a256dce7799079b1a0802cec7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17418, "upload_time": "2016-12-12T03:43:16", "url": "https://files.pythonhosted.org/packages/8f/10/460066aeab5442754d05ccc6431e11cce07667aadfb83c72dbb77122ea1c/united-states-congress-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "330846c9d316ce1442a022c3590ddc25", "sha256": "464aa20404d7c294ec8a5a46407ba066d06c99d1176d7de4b1461537c07c162b" }, "downloads": -1, "filename": "united_states_congress-0.0.9-py27-none-any.whl", "has_sig": false, "md5_digest": "330846c9d316ce1442a022c3590ddc25", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7631, "upload_time": "2016-12-12T03:42:57", "url": "https://files.pythonhosted.org/packages/57/53/50cf657e8ea366dc988cb46d0f38adb2a058085b4fe8dc8e21b817f85984/united_states_congress-0.0.9-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de6110cd7da47d009418a1c590e32040", "sha256": "363d15e3dfee5cb9405bac04c01344ac65a4e1189cc32f9bd237f5cdee4afb26" }, "downloads": -1, "filename": "united-states-congress-0.0.9.tar.gz", "has_sig": false, "md5_digest": "de6110cd7da47d009418a1c590e32040", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17439, "upload_time": "2016-12-12T03:43:18", "url": "https://files.pythonhosted.org/packages/ef/33/c32d803c3f8b19acc8e6f44f9855c2676a85bc7d97e2b0b609e2ace6ff26/united-states-congress-0.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "dd4410085ed14dc0c4fa7ac6266739dd", "sha256": "4e6389a533dcf3188a20b80391ac27da23467428ffebd31c82657da0e0da947e" }, "downloads": -1, "filename": "united_states_congress-0.0.13-py27-none-any.whl", "has_sig": false, "md5_digest": "dd4410085ed14dc0c4fa7ac6266739dd", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 7320, "upload_time": "2016-12-12T04:14:35", "url": "https://files.pythonhosted.org/packages/fd/54/ddc55becbaa59711800e1972deefe78fda2f938e9c1c647f085d10f050cd/united_states_congress-0.0.13-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c456c5f42650b8885bfd007ccc3e388d", "sha256": "4b574c460aac1651b5804148afc681283cfac5e5f65e27a096e76d71181164ab" }, "downloads": -1, "filename": "united-states-congress-0.0.13.tar.gz", "has_sig": false, "md5_digest": "c456c5f42650b8885bfd007ccc3e388d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17407, "upload_time": "2016-12-12T04:14:20", "url": "https://files.pythonhosted.org/packages/b7/70/6bb5fcac037806b73999d849e1467411ec424aab279cec8b31128bc8b75d/united-states-congress-0.0.13.tar.gz" } ] }