{ "info": { "author": "Jeremy Carbaugh", "author_email": "jcarbaugh@sunlightfoundation.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "======\ncensus\n======\n.. image:: https://travis-ci.org/datamade/census.svg?branch=master\n :target: https://travis-ci.org/datamade/census\n\nA simple wrapper for the United States Census Bureau's API.\n\nProvides access to ACS, SF1, and SF3 data sets.\n\nInstall\n=======\n\n::\n\n pip install census\n\nYou may also want to install a complementary library, `us `_, which help you figure out the\n`FIPS `_ codes for many geographies. We use it in the examples below.\n\n::\n\n pip install us\n\nUsage\n=====\n\nFirst, get yourself a `Census API key `_.\n\n::\n\n from census import Census\n from us import states\n\n c = Census(\"MY_API_KEY\")\n c.acs5.get(('NAME', 'B25034_010E'),\n {'for': 'state:{}'.format(states.MD.fips)})\n\nThe call above will return the name of the geographic area and the number of\nhomes that were built before 1939 for the state of Maryland. Helper methods have\nbeen created to simplify common geometry calls::\n\n c.acs5.state(('NAME', 'B25034_010E'), states.MD.fips)\n\nFull details on geometries and the states module can be found below.\n\nThe get method is the core data access method on both the ACS and SF1 data sets.\nThe first parameter is either a single string column or a tuple of columns. The\nsecond parameter is a geoemtry dict with a `for` key and on option `in` key. The\n`for` argument accepts a `\"*\"` wildcard character or `Census.ALL`. The wildcard\nis not valid for the `in` parameter.\n\nThe default year is 2016. To access earlier data, pass a year parameter to the\nAPI call::\n\n c.acs5.state(('NAME', 'B25034_010E'), states.MD.fips, year=2010)\n\nThe default year may also be set client-wide::\n\n c = Census(\"MY_API_KEY\", year=2010)\n\n\nDatasets\n========\n\n* acs5: ACS 5 Year Estimates (2016, 2015, 2014, 2013, 2012, 2011, 2010)\n* acs1dp: ACS 1 Year Estimates, Data Profiles (2016, 2015, 2014, 2013, 2012)\n* sf1: Census Summary File 1 (2010, 2000, 1990)\n* sf3: Census Summary File 3 (2000, 1990)\n\n\nGeographies\n===========\n\nThe API supports a wide range of geographic regions. The specification of these\ncan be quite complicated so a number of convenience methods are provided. Refer to the `Census API documentation `_\nfor more geographies beyond the convenience methods.\n\n*Not all geographies are supported in all years. Calling a convenience method\nwith a year that is not supported will raise census.UnsupportedYearException.*\n\n`Geographic relationship files `_ are provided on the Census developer site as a tool to help users compare the geographies from the 1990, 2000 and 2010 Censuses. From these files, data users may determine how geographies from one Census relate to those from the prior Census.\n\nACS5 Geographies\n----------------\n\n* state(fields, state_fips)\n* state_county(fields, state_fips, county_fips)\n* state_county_blockgroup(fields, state_fips, county_fips, blockgroup)\n* state_county_subdivision(fields, state_fips, county_fips, subdiv_fips)\n* state_county_tract(fields, state_fips, county_fips, tract)\n* state_place(fields, state_fips, place)\n* state_congressional_district(fields, state_fips, congressional_district)\n* state_legislative_district_upper(fields, state_fips, legislative_district)\n* state_legislative_district_lower(fields, state_fips, legislative_district)\n* us(fields)\n* zipcode(fields, zip5)\n\nACS1 Geographies\n----------------\n\n* state(fields, state_fips)\n* state_congressional_district(fields, state_fips, district)\n* us(fields)\n\nSF1 Geographies\n---------------\n\n* state(fields, state_fips)\n* state_county(fields, state_fips, county_fips)\n* state_county_subdivision(fields, state_fips, county_fips, subdiv_fips)\n* state_county_tract(fields, state_fips, county_fips, tract)\n* state_place(fields, state_fips, place)\n* state_congressional_district(fields, state_fips, district)\n* state_msa(fields, state_fips, msa)\n* state_csa(fields, state_fips, csa)\n* state_district_place(fields, state_fips, district, place)\n* state_zipcode(fields, state_fips, zip5)\n\nSF3 Geometries\n--------------\n\n* state(fields, state_fips)\n* state_county(fields, state_fips, county_fips)\n* state_county_tract(fields, state_fips, county_fips, tract)\n* state_place(fields, state_fips, place)\n\n\nStates\n======\n\nThis package previously had a `census.states` module, but now uses the\n*us* package. ::\n\n >>> from us import states\n >>> print states.MD.fips\n u'24'\n\nConvert FIPS to state abbreviation using `lookup()`: ::\n\n >>> print states.lookup('24').abbr\n u'MD'\n\n\nBYOS - Bring Your Own Session\n=============================\n\nIf you'd prefer to use a custom configured requests.Session, you can pass it\nto the Census constructor::\n\n s = requests.session()\n s.headers.update({'User-Agent': 'census-demo/0.0'})\n\n c = Census(\"MY_API_KEY\", session=s)\n\nYou can also replace the session used by a specific data set::\n\n c.sf1.session = s\n\n\nExamples\n========\n\nThe geographic name for all census tracts for county 170 in Alaska::\n\n c.sf1.get('NAME', geo={'for': 'tract:*',\n 'in': 'state:{} county:170'.format(states.AK.fips)})\n\nThe same call using the `state_county_tract` convenience method::\n\n c.sf1.state_county_tract('NAME', states.AK.fips, '170', Census.ALL)\n\nTotal number of males age 5 - 9 for all states::\n\n c.acs5.get('B01001_004E', {'for': 'state:*'})\n\nThe same call using the state convenience method::\n\n c.acs5.state('B01001_004E', Census.ALL)\n\nDon't know the list of tables in a survey, try this:\n\n c.acs5.tables()\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/datamade/census", "keywords": "", "license": "BSD", "maintainer": "Forest Gregg", "maintainer_email": "fgregg@gmail.com", "name": "census", "package_url": "https://pypi.org/project/census/", "platform": "any", "project_url": "https://pypi.org/project/census/", "project_urls": { "Homepage": "http://github.com/datamade/census" }, "release_url": "https://pypi.org/project/census/0.8.13/", "requires_dist": [ "requests (>=1.1.0)", "future", "backports.functools-lru-cache ; python_version < \"3.3\"" ], "requires_python": "", "summary": "A wrapper for the US Census Bureau's API", "version": "0.8.13" }, "last_serial": 4798399, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "bdbb422076cc96c311f329e609bf8510", "sha256": "fe5ddceba639712173fdaceedc315410e3445ff8704543aa3979f7e84ba95bee" }, "downloads": -1, "filename": "census-0.1.tar.gz", "has_sig": false, "md5_digest": "bdbb422076cc96c311f329e609bf8510", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5105, "upload_time": "2012-06-12T00:34:22", "url": "https://files.pythonhosted.org/packages/d6/41/d75b5d6ad29a3c8bde67c3cdbee813f885d5cfe2f80a9c60c8bc5cdbe908/census-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "e716449254a7981684dc59f1d952fe74", "sha256": "11248a45f9c71ad901368cd014ed7589bd067a5fd8ddb8c02bd56b6a3149b35b" }, "downloads": -1, "filename": "census-0.2.tar.gz", "has_sig": false, "md5_digest": "e716449254a7981684dc59f1d952fe74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5107, "upload_time": "2012-08-01T23:30:00", "url": "https://files.pythonhosted.org/packages/ce/19/2d80d321fd26200f5bab671dd8f03489beeb197895f443d6d90c95fa0bbc/census-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "005f937c7780c89b9b3222f63e3388fe", "sha256": "c2b25dc7aa246f3c3d5d24d32a4c5c30ab8500d68836236d6cb25ae1d14a51c1" }, "downloads": -1, "filename": "census-0.3.tar.gz", "has_sig": false, "md5_digest": "005f937c7780c89b9b3222f63e3388fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4604, "upload_time": "2012-08-15T18:20:22", "url": "https://files.pythonhosted.org/packages/07/08/7e6446b9574958024cef8e57763b4a516bb74b2a1d277c64f9fe8867ed0c/census-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "74bc9d15bed495f07ad37832213e30cc", "sha256": "682caa899a61db59e2bf96be50eb905383292649faea09071d84d6cd8d48ee50" }, "downloads": -1, "filename": "census-0.4.tar.gz", "has_sig": false, "md5_digest": "74bc9d15bed495f07ad37832213e30cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4746, "upload_time": "2013-01-09T03:31:13", "url": "https://files.pythonhosted.org/packages/91/9f/ca8215f5efa5f5e127cc6e721c749fe95afb5014c77255ad71caca73ceaf/census-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "5e59a6a89c46f406b80fcff7d8475847", "sha256": "9738812dbe5d5d67c92556377ededbe31b19ca4315aff39294c38a9cbc31c920" }, "downloads": -1, "filename": "census-0.5.tar.gz", "has_sig": false, "md5_digest": "5e59a6a89c46f406b80fcff7d8475847", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5557, "upload_time": "2013-03-04T16:42:10", "url": "https://files.pythonhosted.org/packages/fb/0a/a8872893bb4542fce5c3d26dd632f63d01aeb03ea7692739b9f877abd871/census-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "797c257c1477af8e01c184ae92cd64cd", "sha256": "245bf363bc38e23ba580cd5cc04464ad227812e71a44047dbf5cb8f6145625b9" }, "downloads": -1, "filename": "census-0.6.tar.gz", "has_sig": false, "md5_digest": "797c257c1477af8e01c184ae92cd64cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6169, "upload_time": "2014-09-26T17:39:17", "url": "https://files.pythonhosted.org/packages/69/6f/4c67262993b908b2e385be2626933c6d01f90622f70465b01308aaac7b64/census-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "9041e12ac9fa870e90717f444f41e54f", "sha256": "a1fdb2471b7fdffcc25f13de7e11b338d55db02eb3917d0425a0de5661de1e87" }, "downloads": -1, "filename": "census-0.7.tar.gz", "has_sig": false, "md5_digest": "9041e12ac9fa870e90717f444f41e54f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6190, "upload_time": "2015-03-13T18:07:04", "url": "https://files.pythonhosted.org/packages/46/fc/162627f55ac93b182008cda6f61e46f65b760c22264b603e9b86b1f13bf8/census-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "6b053d46d2742917eb7aa82532501b1a", "sha256": "ca726adb0b6038518b913c0f7a628e48b8d1bc6dc17712672f796556e4b50900" }, "downloads": -1, "filename": "census-0.8.tar.gz", "has_sig": false, "md5_digest": "6b053d46d2742917eb7aa82532501b1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7519, "upload_time": "2016-07-24T20:05:10", "url": "https://files.pythonhosted.org/packages/e3/d5/f1a95511d9e6d42f838dbda8464ff98d2f2e6e03207feee33de62cc6233d/census-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "e2c26ceed55f646a1a6c14a2b2b00ea8", "sha256": "2c760580c3b0b8e3d4982afc47c4ced24696e0f580276748508fed8a8ad4aa41" }, "downloads": -1, "filename": "census-0.8.1.tar.gz", "has_sig": false, "md5_digest": "e2c26ceed55f646a1a6c14a2b2b00ea8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7538, "upload_time": "2016-07-26T01:14:09", "url": "https://files.pythonhosted.org/packages/84/4d/1baac213b6bbc782db317652cba99ea43189fa55c4497b30bf74a632c84b/census-0.8.1.tar.gz" } ], "0.8.10": [ { "comment_text": "", "digests": { "md5": "1679b7383fe1e62d543a8eb347bc2dfa", "sha256": "d4fed848682a501cd2db1f8858c24666d33de56dfd4e163c8d6ac939f613be49" }, "downloads": -1, "filename": "census-0.8.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1679b7383fe1e62d543a8eb347bc2dfa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9971, "upload_time": "2018-12-18T17:59:34", "url": "https://files.pythonhosted.org/packages/b1/13/41a43aa85fc0695091b5c3ac217606d163fe233f9452eb57002473a6dc69/census-0.8.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "923706f236523124703953f774b72618", "sha256": "b6fb2dc83ff8667906b02e949b0476b922cdd02a8e0a3f0dfdb7ec7bebe378d5" }, "downloads": -1, "filename": "census-0.8.10.tar.gz", "has_sig": false, "md5_digest": "923706f236523124703953f774b72618", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11022, "upload_time": "2018-12-18T17:59:36", "url": "https://files.pythonhosted.org/packages/76/bd/29724b16cc12271a8593dbf34ac5cba1829c2093e9d8fa8b00ee33c154b0/census-0.8.10.tar.gz" } ], "0.8.11": [ { "comment_text": "", "digests": { "md5": "3f3fc4d43a3a36486fe97180ad43fbba", "sha256": "4d9e5d3a67a781b61aa12f12d8e4cbffbd3bbf72972e4676c45f85d8079b32bb" }, "downloads": -1, "filename": "census-0.8.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f3fc4d43a3a36486fe97180ad43fbba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10168, "upload_time": "2019-01-10T21:21:34", "url": "https://files.pythonhosted.org/packages/db/92/83049d15ba973fdb6f2e0b61e64f55e058f4f0b1df348ae340d5a591421c/census-0.8.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4cfabd9125631f0e3f67c250a1a1f983", "sha256": "16724a19be2a155157e38ebbd9fe7125e10ebc1bdd85922ce474ecae0eb6623d" }, "downloads": -1, "filename": "census-0.8.11.tar.gz", "has_sig": false, "md5_digest": "4cfabd9125631f0e3f67c250a1a1f983", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11208, "upload_time": "2019-01-10T21:21:36", "url": "https://files.pythonhosted.org/packages/d4/33/a88160439678cbcc0875e2d462cd8b860cdf313fb4e18fbe588aaab4f5fb/census-0.8.11.tar.gz" } ], "0.8.12": [ { "comment_text": "", "digests": { "md5": "5a063d59675e65a3bf3c47d9ce503d54", "sha256": "4e430ae45a1a9c42712c10de926049badc4ad46fed20e658a60177737c32bda0" }, "downloads": -1, "filename": "census-0.8.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a063d59675e65a3bf3c47d9ce503d54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10319, "upload_time": "2019-01-17T01:44:06", "url": "https://files.pythonhosted.org/packages/8f/da/be88aa51946f9e142bbbc3f6a4afeefb33f5c9b036a249f9fdd5a1fa18e5/census-0.8.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "192bc49477ee7d21138912e208c05bcc", "sha256": "8495a5700c5bd6a00bd456fb63a7cc3c98bb212ec6b9d0e78561d9fc8ebaa674" }, "downloads": -1, "filename": "census-0.8.12.tar.gz", "has_sig": false, "md5_digest": "192bc49477ee7d21138912e208c05bcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11352, "upload_time": "2019-01-17T01:44:08", "url": "https://files.pythonhosted.org/packages/9c/aa/f1ed12425b01c1bd4c02a65def026ba01ffbc4998e08834dc23bb694d37b/census-0.8.12.tar.gz" } ], "0.8.13": [ { "comment_text": "", "digests": { "md5": "32a76c7a0f39aa0475cea13985927515", "sha256": "2e3bdcbb015f2dbb6e67c1207f859fc0a07f82564365880f021d3eee4192dae2" }, "downloads": -1, "filename": "census-0.8.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "32a76c7a0f39aa0475cea13985927515", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10313, "upload_time": "2019-02-09T04:26:18", "url": "https://files.pythonhosted.org/packages/b5/b0/670e35ba347faefa4d39d359c303baf02f99db0a9f344b4a482c817fa7b6/census-0.8.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49d16fea72dd676ca6fb3d30a5314273", "sha256": "ab4f4bb2e7228e688f1de77e693b2e7a10fbab257fd24a616e86fa0cebf6145e" }, "downloads": -1, "filename": "census-0.8.13.tar.gz", "has_sig": false, "md5_digest": "49d16fea72dd676ca6fb3d30a5314273", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11358, "upload_time": "2019-02-09T04:26:20", "url": "https://files.pythonhosted.org/packages/7e/82/5c1a2e6e8ca3730155a3cf4e312ad8885fd4832a3956a19d7845368dc21b/census-0.8.13.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "1b4ec2293c780c87638753c6969bfcb0", "sha256": "0a458905162154f88422346250cdfc949cfcec4a9e914b7ce91196da555ebb16" }, "downloads": -1, "filename": "census-0.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b4ec2293c780c87638753c6969bfcb0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10420, "upload_time": "2017-05-10T21:50:26", "url": "https://files.pythonhosted.org/packages/95/97/4988b88ce0fcc8505e7458abb96c75d6f13bb6c531864a4a4a406fff57f0/census-0.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2a60356a44499dc0630ebc3af186bfc7", "sha256": "c653a016d7a8e9eddd2850a97c24dd1fe3de87e70b32ae4cd58632392f0b8520" }, "downloads": -1, "filename": "census-0.8.2.tar.gz", "has_sig": false, "md5_digest": "2a60356a44499dc0630ebc3af186bfc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9811, "upload_time": "2017-05-10T21:50:26", "url": "https://files.pythonhosted.org/packages/69/d5/44d8c84983881d2ea9fec84b62c775cdf3c70c261e896e158635160f564a/census-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "e4e907c0c88a38c7e790ada0745e2259", "sha256": "fdeb9c5f577be0813a11a420ff25b104d7d282bdf6fea52902d2bf9779dec105" }, "downloads": -1, "filename": "census-0.8.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e4e907c0c88a38c7e790ada0745e2259", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9966, "upload_time": "2017-05-31T21:25:44", "url": "https://files.pythonhosted.org/packages/e8/34/59f9b88caaf2d5c52682e879e4660da90dd47f32802d35d9e381555bd822/census-0.8.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2063773e51771c2daa120859cd9498f8", "sha256": "ea92b9ee443e23cc4657f4d465ba6fd1b7223960fb8229c833ed7cb69f0c69c7" }, "downloads": -1, "filename": "census-0.8.3.tar.gz", "has_sig": false, "md5_digest": "2063773e51771c2daa120859cd9498f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7687, "upload_time": "2017-05-31T21:25:46", "url": "https://files.pythonhosted.org/packages/bd/19/80c0fc7803e00ab7b22f4e499584d1a8e1df87a517f9b1bd2dfe8bed2e25/census-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "50d93d30e5d0cac2df5f8a1766c87615", "sha256": "80bbb840a1b5f241b4ea2dbef376be2e0acd243b61db54e584e6be5d1f1f8fcb" }, "downloads": -1, "filename": "census-0.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "50d93d30e5d0cac2df5f8a1766c87615", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10757, "upload_time": "2017-09-14T15:57:27", "url": "https://files.pythonhosted.org/packages/05/a7/1b8a223c4f5d4df1a02ac0055cabf1391bfc0dc728269d117542fc6c3a9c/census-0.8.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6492df6722a860b7d3d62dc72044c74e", "sha256": "9af77843ef7f5c822ea8ed214616152c160a0aae4244336e4cb90110cc854127" }, "downloads": -1, "filename": "census-0.8.4.tar.gz", "has_sig": false, "md5_digest": "6492df6722a860b7d3d62dc72044c74e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8262, "upload_time": "2017-09-14T15:57:28", "url": "https://files.pythonhosted.org/packages/b8/5b/74e14d5cfacb87f77857423218bc2f794bb1d539184c17f53121d36bad65/census-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "b09d6ae3fa2339abc81a086b4eeb28ce", "sha256": "986d85cb0c891515d8405983e8ff187d3e89a56468ac0ba98e99fdc77bb07892" }, "downloads": -1, "filename": "census-0.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b09d6ae3fa2339abc81a086b4eeb28ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10899, "upload_time": "2017-12-15T16:50:15", "url": "https://files.pythonhosted.org/packages/ee/13/1f02ff5216bbeeb994963eb165bfb36ffa6b26d87e0db95751e067aea00f/census-0.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0a7c0449eae66d9a266f2e86bde27ce", "sha256": "649f4e66b670aa51593a94a57261dd4bce8a2118f9f6a304dd071fdb1237e2f3" }, "downloads": -1, "filename": "census-0.8.5.tar.gz", "has_sig": false, "md5_digest": "f0a7c0449eae66d9a266f2e86bde27ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8383, "upload_time": "2017-12-15T16:50:15", "url": "https://files.pythonhosted.org/packages/29/00/d4e1d8970d1f49769f73bbbbe871b143fe0d3d0016b952575ce8c41ca372/census-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "5eb0b7bee982975a451b13145879bca8", "sha256": "9a6d2e73e1dfda82422155e4481dfcb0d8772a65e607bdaf4945d623cda05528" }, "downloads": -1, "filename": "census-0.8.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5eb0b7bee982975a451b13145879bca8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10949, "upload_time": "2018-02-11T01:54:24", "url": "https://files.pythonhosted.org/packages/bf/28/8ae3ea49748bc61ac7c6174572b5c9ac04b725589db59de6ca038c4ed472/census-0.8.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12c7679b3f831818178484788b9dfdb5", "sha256": "b8670f9cc1b582e05cde45b91427d0a077f1798af70c555b5f83a4c37b62340a" }, "downloads": -1, "filename": "census-0.8.6.tar.gz", "has_sig": false, "md5_digest": "12c7679b3f831818178484788b9dfdb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8391, "upload_time": "2018-02-11T01:54:25", "url": "https://files.pythonhosted.org/packages/0e/68/4abe8ff310be2df690983280520fddabae2bd2108dd71c29527d6580ffdd/census-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "ffb48e430f6635a80201262b55078de9", "sha256": "93524f51af597a602d944b3d2bda2bef8aada6d614a918de43c49c1c78bb03bc" }, "downloads": -1, "filename": "census-0.8.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ffb48e430f6635a80201262b55078de9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11310, "upload_time": "2018-03-20T20:59:20", "url": "https://files.pythonhosted.org/packages/52/af/ad681b4a1b903d96569a4295305ef3bb17d99959a15a4d7cd4f6f65e8f3a/census-0.8.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc7d05c4ab5485a0020a6b1ab3ae657b", "sha256": "0576090106ef7d9e29d2df43e6ab2f07211006f0b0783e79fc4fbc9309b591e5" }, "downloads": -1, "filename": "census-0.8.7.tar.gz", "has_sig": false, "md5_digest": "cc7d05c4ab5485a0020a6b1ab3ae657b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8685, "upload_time": "2018-03-20T20:59:22", "url": "https://files.pythonhosted.org/packages/6d/83/1498588a862b5844b26b734ff5160905368cd208ddb601ef7b887ef9fa28/census-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "e80ac4166971ceaed1413cfdb3741ad3", "sha256": "0b8c915774a1d130930ba3a8c68f8d6a89a0295f8fb2630b927acf2cd6bd241c" }, "downloads": -1, "filename": "census-0.8.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e80ac4166971ceaed1413cfdb3741ad3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9950, "upload_time": "2018-11-29T04:54:52", "url": "https://files.pythonhosted.org/packages/d7/49/aae168aede6e2d111d72e13395c189f65f5e06b98ce5cd9989416f9c5f42/census-0.8.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "225d568b4551bdfb187e6387e0ac6ceb", "sha256": "5ffc5b5d29124c68bb194e3dba367d37b85a9bac595c2a2f28f212da5561e481" }, "downloads": -1, "filename": "census-0.8.8.tar.gz", "has_sig": false, "md5_digest": "225d568b4551bdfb187e6387e0ac6ceb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9328, "upload_time": "2018-11-29T04:54:54", "url": "https://files.pythonhosted.org/packages/a8/01/67aedf07ccf1fa9b4545bc526e6cb984bf46e664b3ea17c2bc55eeaa4245/census-0.8.8.tar.gz" } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "e2adda6bd59eb9a9d570996d230b53aa", "sha256": "07ac5fb812d8d45836c7d3e65ce3dffdf07d204f7513124086adc0eb494bb338" }, "downloads": -1, "filename": "census-0.8.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e2adda6bd59eb9a9d570996d230b53aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9960, "upload_time": "2018-11-29T15:42:31", "url": "https://files.pythonhosted.org/packages/2e/9c/28775fd7748ab10803b77283719dcfd4952db352783163bc54c317795819/census-0.8.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93f695bdc74e86df0fe3dc5becfbaa41", "sha256": "b1dd47fceeffaef579a603ed2f11a89789d81ff093ff7a51d8bf43ccab6f6ecb" }, "downloads": -1, "filename": "census-0.8.9.tar.gz", "has_sig": false, "md5_digest": "93f695bdc74e86df0fe3dc5becfbaa41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9342, "upload_time": "2018-11-29T15:42:32", "url": "https://files.pythonhosted.org/packages/1f/31/73b25a1d8ed69796d94c82ace593d93f4c18eea5267910dfc7a074b8bdbb/census-0.8.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "32a76c7a0f39aa0475cea13985927515", "sha256": "2e3bdcbb015f2dbb6e67c1207f859fc0a07f82564365880f021d3eee4192dae2" }, "downloads": -1, "filename": "census-0.8.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "32a76c7a0f39aa0475cea13985927515", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10313, "upload_time": "2019-02-09T04:26:18", "url": "https://files.pythonhosted.org/packages/b5/b0/670e35ba347faefa4d39d359c303baf02f99db0a9f344b4a482c817fa7b6/census-0.8.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49d16fea72dd676ca6fb3d30a5314273", "sha256": "ab4f4bb2e7228e688f1de77e693b2e7a10fbab257fd24a616e86fa0cebf6145e" }, "downloads": -1, "filename": "census-0.8.13.tar.gz", "has_sig": false, "md5_digest": "49d16fea72dd676ca6fb3d30a5314273", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11358, "upload_time": "2019-02-09T04:26:20", "url": "https://files.pythonhosted.org/packages/7e/82/5c1a2e6e8ca3730155a3cf4e312ad8885fd4832a3956a19d7845368dc21b/census-0.8.13.tar.gz" } ] }