{ "info": { "author": "Sanhe Hu", "author_email": "husanhe@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": ".. image:: https://readthedocs.org/projects/uszipcode/badge/?version=latest\n :target: https://uszipcode.readthedocs.io/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://travis-ci.org/MacHu-GWU/uszipcode-project.svg?branch=master\n :target: https://travis-ci.org/MacHu-GWU/uszipcode-project?branch=master\n\n.. image:: https://codecov.io/gh/MacHu-GWU/uszipcode-project/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/MacHu-GWU/uszipcode-project\n\n.. image:: https://img.shields.io/pypi/v/uszipcode.svg\n :target: https://pypi.python.org/pypi/uszipcode\n\n.. image:: https://img.shields.io/pypi/l/uszipcode.svg\n :target: https://pypi.python.org/pypi/uszipcode\n\n.. image:: https://img.shields.io/pypi/pyversions/uszipcode.svg\n :target: https://pypi.python.org/pypi/uszipcode\n\n.. image:: https://img.shields.io/pypi/dm/uszipcode\n :target: https://pypi.python.org/pypi/uszipcode\n\n.. image:: https://img.shields.io/badge/STAR_Me_on_GitHub!--None.svg?style=social\n :target: https://github.com/MacHu-GWU/uszipcode-project\n\n------\n\n\n.. image:: https://img.shields.io/badge/Link-Document-blue.svg\n :target: https://uszipcode.readthedocs.io/index.html\n\n.. image:: https://img.shields.io/badge/Link-API-blue.svg\n :target: https://uszipcode.readthedocs.io/py-modindex.html\n\n.. image:: https://img.shields.io/badge/Link-Source_Code-blue.svg\n :target: https://github.com/MacHu-GWU/uszipcode-project/tree/master/uszipcode\n\n.. image:: https://img.shields.io/badge/Link-Install-blue.svg\n :target: `install`_\n\n.. image:: https://img.shields.io/badge/Link-GitHub-blue.svg\n :target: https://github.com/MacHu-GWU/uszipcode-project\n\n.. image:: https://img.shields.io/badge/Link-Submit_Issue-blue.svg\n :target: https://github.com/MacHu-GWU/uszipcode-project/issues\n\n.. image:: https://img.shields.io/badge/Link-Request_Feature-blue.svg\n :target: https://github.com/MacHu-GWU/uszipcode-project/issues\n\n.. image:: https://img.shields.io/badge/Link-Download-blue.svg\n :target: https://pypi.org/pypi/uszipcode#files\n\n\nWelcome to ``uszipcode`` Documentation\n==============================================================================\n\n**If you are on www.pypi.org or www.github.com**, this is not the complete document. Here is the `Complete Document `_.\n\n\n``uszipcode`` is the **most powerful and easy to use programmable zipcode database** in Python. It comes with a rich feature and easy-to-use zipcode search engine. And it is easy to customize the search behavior as you wish.\n\n\nData Points\n------------------------------------------------------------------------------\n\nFrom version 0.2.0, ``uszipcode`` use a more up-to-date database, and having a crawler running every week to collection different data points from multiple data source. And **API in 0.2.X NOT COMPATIBLE with 0.1.X**, please read `Document `_ for more information.\n\n**Address, Postal**\n\n- zipcode\n- zipcode_type\n- major_city\n- post_office_city\n- common_city_list\n- county\n- state\n- **area_code_list**\n\n**Geography**\n\n- lat\n- lng\n- timezone\n- radius_in_miles\n- land_area_in_sqmi\n- water_area_in_sqmi\n- bounds_west\n- bounds_east\n- bounds_north\n- bounds_south\n- **border polygon**\n\n**Stats and Demographics**\n\n- population\n- population_density\n- population_by_year\n- population_by_age\n- population_by_gender\n- population_by_race\n- head_of_household_by_age\n- families_vs_singles\n- households_with_kids\n- children_by_age\n\n**Real Estate and Housing**\n\n- housing_units\n- occupied_housing_units\n\n- median_home_value\n- median_household_income\n\n- housing_type\n- year_housing_was_built\n- housing_occupancy\n- vancancy_reason\n- owner_occupied_home_values\n- rental_properties_by_number_of_rooms\n\n- monthly_rent_including_utilities_studio_apt\n- monthly_rent_including_utilities_1_b\n- monthly_rent_including_utilities_2_b\n- monthly_rent_including_utilities_3plus_b\n\n**Employment, Income, Earnings, and Work**\n\n- employment_status\n- average_household_income_over_time\n- household_income\n- annual_individual_earnings\n\n- sources_of_household_income____percent_of_households_receiving_income\n- sources_of_household_income____average_income_per_household_by_income_source\n\n- household_investment_income____percent_of_households_receiving_investment_income\n- household_investment_income____average_income_per_household_by_income_source\n\n- household_retirement_income____percent_of_households_receiving_retirement_incom\n- household_retirement_income____average_income_per_household_by_income_source\n\n- source_of_earnings\n- means_of_transportation_to_work_for_workers_16_and_over\n- travel_time_to_work_in_minutes\n\n**Education**\n\n- educational_attainment_for_population_25_and_over\n- school_enrollment_age_3_to_17\n\n\nExample Usage\n------------------------------------------------------------------------------\n\n**NOTE**:\n\n ``uszipcode`` has two backend database, ``SimpleZipcode`` and ``Zipcode``. ``Zipcode`` has more info, but the database file is 450MB (takes more time to download). ``SimpleZipcode`` doesn't has all data points listed above, but the database file is smaller (9MB). By default ``uszipcode`` use ``SimpleZipcode``. You can use this code to choose to use the rich info ``Zipcode``:\n\n .. code-block:: python\n\n >>> from uszipcode import SearchEngine\n >>> search = SearchEngine(simple_zipcode=False)\n\n From 0.2.4, ``uszipcode`` **allows developer to choose which directory you want to use to download the database file**. By default, it is ``$HOME/.uszipcode``, but you can easily change it.:\n\n .. code-block:: python\n\n >>> search = SearchENgine(db_file_dir=\"/tmp\")\n\n For example, AWS Lambda doesn't allow to download file to $HOME directory, but allows to download to ``/tmp`` folder.\n\n\n**Examples**:\n\n.. code-block:: python\n\n >>> from uszipcode import SearchEngine\n >>> search = SearchEngine(simple_zipcode=True) # set simple_zipcode=False to use rich info database\n >>> zipcode = search.by_zipcode(\"10001\")\n >>> zipcode\n SimpleZipcode(zipcode=u'10001', zipcode_type=u'Standard', major_city=u'New York', post_office_city=u'New York, NY', common_city_list=[u'New York'], county=u'New York County', state=u'NY', lat=40.75, lng=-73.99, timezone=u'Eastern', radius_in_miles=0.9090909090909091, area_code_list=[u'718', u'917', u'347', u'646'], population=21102, population_density=33959.0, land_area_in_sqmi=0.62, water_area_in_sqmi=0.0, housing_units=12476, occupied_housing_units=11031, median_home_value=650200, median_household_income=81671, bounds_west=-74.008621, bounds_east=-73.984076, bounds_north=40.759731, bounds_south=40.743451)\n\n >>> zipcode.values() # to list\n [u'10001', u'Standard', u'New York', u'New York, NY', [u'New York'], u'New York County', u'NY', 40.75, -73.99, u'Eastern', 0.9090909090909091, [u'718', u'917', u'347', u'646'], 21102, 33959.0, 0.62, 0.0, 12476, 11031, 650200, 81671, -74.008621, -73.984076, 40.759731, 40.743451]\n\n >>> zipcode.to_dict() # to dict\n {'housing_units': 12476, 'post_office_city': u'New York, NY', 'bounds_east': -73.984076, 'county': u'New York County', 'population_density': 33959.0, 'radius_in_miles': 0.9090909090909091, 'timezone': u'Eastern', 'lng': -73.99, 'common_city_list': [u'New York'], 'zipcode_type': u'Standard', 'zipcode': u'10001', 'state': u'NY', 'major_city': u'New York', 'population': 21102, 'bounds_west': -74.008621, 'land_area_in_sqmi': 0.62, 'lat': 40.75, 'median_household_income': 81671, 'occupied_housing_units': 11031, 'bounds_north': 40.759731, 'bounds_south': 40.743451, 'area_code_list': [u'718', u'917', u'347', u'646'], 'median_home_value': 650200, 'water_area_in_sqmi': 0.0}\n\n >>> zipcode.to_json() # to json\n {\n \"zipcode\": \"10001\",\n \"zipcode_type\": \"Standard\",\n \"major_city\": \"New York\",\n \"post_office_city\": \"New York, NY\",\n \"common_city_list\": [\n \"New York\"\n ],\n \"county\": \"New York County\",\n \"state\": \"NY\",\n \"lat\": 40.75,\n \"lng\": -73.99,\n \"timezone\": \"Eastern\",\n \"radius_in_miles\": 0.9090909090909091,\n \"area_code_list\": [\n \"718\",\n \"917\",\n \"347\",\n \"646\"\n ],\n \"population\": 21102,\n \"population_density\": 33959.0,\n \"land_area_in_sqmi\": 0.62,\n \"water_area_in_sqmi\": 0.0,\n \"housing_units\": 12476,\n \"occupied_housing_units\": 11031,\n \"median_home_value\": 650200,\n \"median_household_income\": 81671,\n \"bounds_west\": -74.008621,\n \"bounds_east\": -73.984076,\n \"bounds_north\": 40.759731,\n \"bounds_south\": 40.743451\n }\n\nRich search methods are provided for getting zipcode in the way you want.\n\n.. code-block:: python\n\n >>> from uszipcode import Zipcode\n # Search zipcode within 30 miles, ordered from closest to farthest\n >>> result = search.by_coordinates(39.122229, -77.133578, radius=30, returns=5)\n >>> len(res) # by default 5 results returned\n 5\n >>> for zipcode in result:\n ... # do whatever you want...\n\n # Find top 10 population zipcode\n >>> result = search.by_population(lower=0, upper=999999999,\n ... sort_by=Zipcode.population, ascending=False, returns=10)\n\n # Find top 10 largest land area zipcode\n >>> res = search.by_landarea(lower=0, upper=999999999, \n ... sort_by=Zipcode.land_area_in_sqmi, ascending=False, returns=10)\n\n\n**Fuzzy city name and state name search** does not require developer **to know the exact spelling of the city or state**. And it is case, space insensitive, having high tolerance to typo. This is very helpful if you need to build a web app with it.\n\n.. code-block:: python\n\n # Looking for Chicago and IL, but entered wrong spelling.\n >>> res = search.by_city_and_state(\"cicago\", \"il\")\n >>> len(res) # 56 zipcodes in Chicago\n 56\n >>> zipcode = res[0]\n >>> zipcode.major_city\n 'Chicago'\n >>> zipcode.state_abbr\n 'IL'\n\nYou can **easily sort your results** by any field, or distance from a coordinates if you query by location.\n\n.. code-block:: python\n\n # Find top 10 population zipcode\n >>> res = search.by_population(lower=0, upper=999999999, \n ... sort_by=Zipcode.population, ascending=False, returns=10)\n >>> for zipcode in res:\n ... # do whatever you want...\n\n\nDeploy Uszipcode as a Web Service\n------------------------------------------------------------------------------\n\nIf you want to build a private uszipcode API server you have two choice:\n\n1. Use a VM like EC2 machine, and deploy a web api server with the machine.\n2. (RECOMMEND) Dump the sqlite database to any relational database like Postgres, MySQL, and inject the database connection info in your application server.\n\nIn the feature release, I will provide an easy way that allow you to deploy uszipcode as a private web api service.\n\nThank you.\n\n\n.. _install:\n\nInstall\n------------------------------------------------------------------------------\n\n``uszipcode`` is released on PyPI, so all you need is:\n\n.. code-block:: console\n\n $ pip install uszipcode\n\nTo upgrade to latest version:\n\n.. code-block:: console\n\n $ pip install --upgrade uszipcode\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://pypi.python.org/pypi/uszipcode/0.2.4#downloads", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/MacHu-GWU/", "keywords": "", "license": "MIT", "maintainer": "Sanhe Hu", "maintainer_email": "husanhe@gmail.com", "name": "uszipcode", "package_url": "https://pypi.org/project/uszipcode/", "platform": "Windows", "project_url": "https://pypi.org/project/uszipcode/", "project_urls": { "Download": "https://pypi.python.org/pypi/uszipcode/0.2.4#downloads", "Homepage": "https://github.com/MacHu-GWU/" }, "release_url": "https://pypi.org/project/uszipcode/0.2.4/", "requires_dist": [ "attrs", "sqlalchemy", "pathlib-mate", "requests", "sphinx (==1.8.1) ; extra == 'docs'", "sphinx-rtd-theme ; extra == 'docs'", "sphinx-jinja ; extra == 'docs'", "sphinx-copybutton ; extra == 'docs'", "docfly (>=0.0.17) ; extra == 'docs'", "rstobj (>=0.0.5) ; extra == 'docs'", "pygments ; extra == 'docs'", "pytest (==3.2.3) ; extra == 'tests'", "pytest-cov (==2.5.1) ; extra == 'tests'", "python-Levenshtein ; extra == 'tests'" ], "requires_python": "", "summary": "USA zipcode programmable database, includes up-to-date census and geometry information.", "version": "0.2.4" }, "last_serial": 5986495, "releases": { "0.0.1": [], "0.0.6": [ { "comment_text": "", "digests": { "md5": "953d59f10dca68700e927cdab4553cc7", "sha256": "e2fc11d01e750988c1d09731938003b07687fb01fc747cfac4cb3b6ec38a56d7" }, "downloads": -1, "filename": "uszipcode-0.0.6.win32.exe", "has_sig": false, "md5_digest": "953d59f10dca68700e927cdab4553cc7", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 4596594, "upload_time": "2015-10-06T23:46:57", "url": "https://files.pythonhosted.org/packages/ed/cf/254563c7c816efd25294aab5eaaa918072ef8505155e510d1f8502904e88/uszipcode-0.0.6.win32.exe" }, { "comment_text": "", "digests": { "md5": "7711bfd86ef12ad75b90c6b88638d665", "sha256": "f829c2997cbd7ff3f06ff6694746574ebab866258ec5917cd646011c77d20866" }, "downloads": -1, "filename": "uszipcode-0.0.6.win-amd64.exe", "has_sig": false, "md5_digest": "7711bfd86ef12ad75b90c6b88638d665", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 4627826, "upload_time": "2015-10-06T23:47:11", "url": "https://files.pythonhosted.org/packages/20/c2/2265dd1e1bd05f96635f9d2abf5c327e60f4a08f6c6ce3b8fc1b5388a61f/uszipcode-0.0.6.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "227dabd77760f9e1f1fc945302387d0a", "sha256": "22fc8d282c934de0beb81f2747a0eadb3a8747059af3884d7b1629f2b4a37eab" }, "downloads": -1, "filename": "uszipcode-0.0.6.zip", "has_sig": false, "md5_digest": "227dabd77760f9e1f1fc945302387d0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4411146, "upload_time": "2015-10-06T23:37:34", "url": "https://files.pythonhosted.org/packages/55/83/a980afd112c42e86242de0b10b746aedb6116a9688a758bf9873bfcc5399/uszipcode-0.0.6.zip" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "2364a39c9467fb8095cd08ef9987e35b", "sha256": "717b699bc68d1cbb4be5db22ff8fa67a3ba6cf507e873a46003c57e7b187ccd6" }, "downloads": -1, "filename": "uszipcode-0.0.7.zip", "has_sig": false, "md5_digest": "2364a39c9467fb8095cd08ef9987e35b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4411801, "upload_time": "2015-11-16T21:39:27", "url": "https://files.pythonhosted.org/packages/f8/ca/d8ec0d177215b012cc3f33b39c25e3e966200ff7d4c387436a35875d5e2e/uszipcode-0.0.7.zip" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "84571c09b2737ea72567a23144d421dc", "sha256": "d66df28ad40116da59bbb8fb21afa615bb85d080e3dc9019e684b33c8bea9386" }, "downloads": -1, "filename": "uszipcode-0.0.8.zip", "has_sig": false, "md5_digest": "84571c09b2737ea72567a23144d421dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4412367, "upload_time": "2016-01-22T16:43:23", "url": "https://files.pythonhosted.org/packages/b4/8a/1abeff16c96b10736c582f7187a6d423c3d206091dcaef17f988e0602ff2/uszipcode-0.0.8.zip" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "fb15d98ee638a7c4337c0d74b337dbe1", "sha256": "cfa0b04c51a4ddf692d1200df97fb08b5bf93170f661ed656160d33e32875d20" }, "downloads": -1, "filename": "uszipcode-0.0.9.zip", "has_sig": false, "md5_digest": "fb15d98ee638a7c4337c0d74b337dbe1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4412367, "upload_time": "2016-02-19T18:55:06", "url": "https://files.pythonhosted.org/packages/a4/96/930e41233a167b57e6a464c542d7af96cc48806209a768c8b6a62c94a368/uszipcode-0.0.9.zip" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "365f994cf5760f492a0b51424a2b7570", "sha256": "3a32541090d92f1aa93d3fe5e52d6fe655f5f2554de3082d462bdd08ec7171e3" }, "downloads": -1, "filename": "uszipcode-0.1.1.zip", "has_sig": false, "md5_digest": "365f994cf5760f492a0b51424a2b7570", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4428410, "upload_time": "2016-05-28T20:56:59", "url": "https://files.pythonhosted.org/packages/72/5a/494ada2a3da163a98514a89069e2f51c97d52388765ae9990777fb1e9408/uszipcode-0.1.1.zip" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "dbf6e1ae96959f1154288e5b4ff9588b", "sha256": "4f863c8e93ded06129ba558084220ed937c6016acb21750e380bcb9a06f39794" }, "downloads": -1, "filename": "uszipcode-0.1.2.zip", "has_sig": false, "md5_digest": "dbf6e1ae96959f1154288e5b4ff9588b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4457648, "upload_time": "2016-07-01T21:06:09", "url": "https://files.pythonhosted.org/packages/14/29/7f2ea9de54cd9389d52d4243f07be0de5cf59472dea3def544945302b46b/uszipcode-0.1.2.zip" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "bb73a3dd4a8543966706bd6681d20ded", "sha256": "3e611feaa72449498c01eb199a9eb5923b896049b7fbda18fcaa901f8f4bc554" }, "downloads": -1, "filename": "uszipcode-0.1.3.zip", "has_sig": false, "md5_digest": "bb73a3dd4a8543966706bd6681d20ded", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4458101, "upload_time": "2016-08-08T20:30:04", "url": "https://files.pythonhosted.org/packages/4f/03/05f350f5f2a8bd5bfc3b508de96ab6fc6ae5a11c4c2440f5734da1114926/uszipcode-0.1.3.zip" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "e7d80ffe9ac4c05f2efedd701dc3fa2b", "sha256": "23e23ce691a8547ddf320ea5ae86956f65c5a50eb91d35110ac3ec311ee59524" }, "downloads": -1, "filename": "uszipcode-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7d80ffe9ac4c05f2efedd701dc3fa2b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 149176, "upload_time": "2018-09-17T15:04:53", "url": "https://files.pythonhosted.org/packages/1f/92/4cdec8e7152a8c551a40ac2f88922fb346a2905952e6e3a3348a2faeef25/uszipcode-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d6e2fbf707073d9f6dcd5c2c0b2fdac", "sha256": "df6cdbc2f51f2a81bf1a6d52d7b2829b5bdf3e548cc6e6733a0c6342552827ba" }, "downloads": -1, "filename": "uszipcode-0.2.0.tar.gz", "has_sig": false, "md5_digest": "7d6e2fbf707073d9f6dcd5c2c0b2fdac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121049, "upload_time": "2018-09-17T15:04:55", "url": "https://files.pythonhosted.org/packages/e7/48/a34ae7021547665187daa9cc6b0eea7859c6fcf98ce53e3f34d08555bbd8/uszipcode-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "999b9e84587473478fc7faa2c6662fb6", "sha256": "70e1d88868714cc00d433b20843c860e2bed4b88ffe04c57bec37d5a86cf99f2" }, "downloads": -1, "filename": "uszipcode-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "999b9e84587473478fc7faa2c6662fb6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 149955, "upload_time": "2018-09-30T03:50:14", "url": "https://files.pythonhosted.org/packages/93/1d/72ea0e4d8c26f80068a2acb41426823b2e7792dfa89ff3349d16ef58bb4e/uszipcode-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6da27ae1a0bc2d6c5fe1cc6dad3e52cb", "sha256": "6f29bdfaa8fca4ce168f60613d0115e30a83aa670005d822b4fb3b92af93ec79" }, "downloads": -1, "filename": "uszipcode-0.2.1.tar.gz", "has_sig": false, "md5_digest": "6da27ae1a0bc2d6c5fe1cc6dad3e52cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121840, "upload_time": "2018-09-30T03:50:15", "url": "https://files.pythonhosted.org/packages/f9/f2/91f4aa2ff0c7c3547054d2a5560c71ce10b142049e83927aaca3fa576781/uszipcode-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "101815205eceeb78313317c9d7f66477", "sha256": "f8e0586b567022a575eb8a22a6720d9095328e7b486aad20d3fad1d355d9bf95" }, "downloads": -1, "filename": "uszipcode-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "101815205eceeb78313317c9d7f66477", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 137265, "upload_time": "2018-10-16T20:02:18", "url": "https://files.pythonhosted.org/packages/34/e1/f828cd05732433d0074a17a2623a8c1281c5dc7fb265fef1d3867692037b/uszipcode-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6332658baa283214ddd222f06f596ad5", "sha256": "a2f444724c62dc9259a5296f4de3bcca7197673e78a5650ff154ef6da5144644" }, "downloads": -1, "filename": "uszipcode-0.2.2.tar.gz", "has_sig": false, "md5_digest": "6332658baa283214ddd222f06f596ad5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108078, "upload_time": "2018-10-16T20:02:20", "url": "https://files.pythonhosted.org/packages/05/45/b9d5b9077b25873b93eb231d0ab6c9ba893a8ffa8d679a47167ab7ff9c6d/uszipcode-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "0e5fcc16e9e821a5d256ad581471404c", "sha256": "41ac4e6dba36cf42148b8ffa40c3cae317b1019fc2894aeb0d5b03acaee4ec15" }, "downloads": -1, "filename": "uszipcode-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0e5fcc16e9e821a5d256ad581471404c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 377954, "upload_time": "2019-10-07T16:31:31", "url": "https://files.pythonhosted.org/packages/22/21/04eaede2d8fd78db7c81f09ccc461c25d0d7dd4a556f08bdc188e30face0/uszipcode-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e433f647b21f7b2a7a440ccbb4911d66", "sha256": "78bc5eef439b704958fe3369c761b181bcf04b30d13cf085099769ea3c64e2af" }, "downloads": -1, "filename": "uszipcode-0.2.3.tar.gz", "has_sig": false, "md5_digest": "e433f647b21f7b2a7a440ccbb4911d66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 229925, "upload_time": "2019-10-07T16:31:34", "url": "https://files.pythonhosted.org/packages/17/e7/182a8ba53f9a86da129b199f895ecd9de431d9f8eb46cba63f2bf21f5459/uszipcode-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "7a3e900f0640222336be0f6cd0d204a5", "sha256": "1b87c114495742727b9c27468fb7eb68fc36a1fe75b0e4437ac1a88826326733" }, "downloads": -1, "filename": "uszipcode-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a3e900f0640222336be0f6cd0d204a5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 378873, "upload_time": "2019-10-16T21:31:45", "url": "https://files.pythonhosted.org/packages/bc/94/1b908c6fe2008f0e913b0b2d97951aa76e00ec1044883c012afb2e477b4a/uszipcode-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "786d614b73284ee599a88a08426bf9ae", "sha256": "0c9f3ff83b6c18ab81942024fc8e7f63bb17ab43d6589d80bebb5112584b98c3" }, "downloads": -1, "filename": "uszipcode-0.2.4.tar.gz", "has_sig": false, "md5_digest": "786d614b73284ee599a88a08426bf9ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 231363, "upload_time": "2019-10-16T21:31:48", "url": "https://files.pythonhosted.org/packages/3d/1e/6039ee0a742a0e61ade9fc48c53d00ccd2fc386f2f6cd9f74dc2e00d3070/uszipcode-0.2.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7a3e900f0640222336be0f6cd0d204a5", "sha256": "1b87c114495742727b9c27468fb7eb68fc36a1fe75b0e4437ac1a88826326733" }, "downloads": -1, "filename": "uszipcode-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a3e900f0640222336be0f6cd0d204a5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 378873, "upload_time": "2019-10-16T21:31:45", "url": "https://files.pythonhosted.org/packages/bc/94/1b908c6fe2008f0e913b0b2d97951aa76e00ec1044883c012afb2e477b4a/uszipcode-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "786d614b73284ee599a88a08426bf9ae", "sha256": "0c9f3ff83b6c18ab81942024fc8e7f63bb17ab43d6589d80bebb5112584b98c3" }, "downloads": -1, "filename": "uszipcode-0.2.4.tar.gz", "has_sig": false, "md5_digest": "786d614b73284ee599a88a08426bf9ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 231363, "upload_time": "2019-10-16T21:31:48", "url": "https://files.pythonhosted.org/packages/3d/1e/6039ee0a742a0e61ade9fc48c53d00ccd2fc386f2f6cd9f74dc2e00d3070/uszipcode-0.2.4.tar.gz" } ] }