{ "info": { "author": "HouseCanary", "author_email": "techops@housecanary.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "HouseCanary API Python Client\n=============================\n\n.. image:: https://img.shields.io/pypi/pyversions/housecanary.svg\n :target: https://pypi.python.org/pypi/housecanary\n\nThe `HouseCanary `_ API Python Client provides an easy interface to call the HouseCanary API.\n\n\nAPI documentation\n-----------------\n\nFull documentation is available at https://api-docs.housecanary.com\n\nInstallation\n------------\n\nTo install:\n\n::\n\n pip install housecanary\n\nBasic Usage\n-----------\n\n.. code:: python\n\n import housecanary\n client = housecanary.ApiClient(\"my_api_key\", \"my_api_secret\")\n result = client.property.value((\"10216 N Willow Ave\", \"64157\"))\n\n # result is an instance of housecanary.response.Response\n print result.json()\n\nAuthentication\n--------------\n\nWhen you create an instance of an ApiClient, you need to give it your\nAPI key and secret. You can manage these in your settings page at\nhttps://valuereport.housecanary.com/#/settings/api-settings.\n\nYou can pass these values to the ApiClient constructor:\n\n.. code:: python\n\n client = housecanary.ApiClient(\"my_api_key\", \"my_api_secret\")\n\nAlternatively, instead of passing in your key and secret to the\nconstructor, you can store them in the following environment variables:\n\n- HC\\_API\\_KEY\n- HC\\_API\\_SECRET\n\nCreating an instance of ApiClient with no arguments will read your key\nand secret from those environment variables:\n\n.. code:: python\n\n client = housecanary.ApiClient()\n\nUsage Details\n-------------\n\nEndpoint methods\n~~~~~~~~~~~~~~~~\n\nThe ApiClient class provides a few wrappers which contain\nvarious methods for calling the different API endpoints.\n\nThe property wrapper is used for calling the Analytics API Property endpoints as well\nas the Value Report and Rental Report endpoints.\n\nThe block wrapper is used for calling the Analytics API Block endpoints.\n\nThe zip wrapper is used for calling the Analytics API Zip endpoints.\n\nThe msa wrapper is used for calling the Analytics API MSA endpoints.\n\n\nProperty Endpoints\n~~~~~~~~~~~~~~~~~~\n\nAnalytics API Property Endpoints:\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n- **block_histogram_baths**\n- **block_histogram_beds**\n- **block_histogram_building_area**\n- **block_histogram_value**\n- **block_histogram_value_sqft**\n- **block_rental_value_distribution**\n- **block_value_distribution**\n- **block_value_ts**\n- **block_value_ts_historical**\n- **block_value_ts_forecast**\n- **census**\n- **details**\n- **flood**\n- **ltv**\n- **ltv_details**\n- **mortgage_lien**\n- **msa_details**\n- **msa_hpi_ts**\n- **msa_hpi_ts_forecast**\n- **msa_hpi_ts_historical**\n- **nod**\n- **owner_occupied**\n- **rental_value**\n- **rental_value_within_block**\n- **sales_history**\n- **school**\n- **value**\n- **value_forecast**\n- **value_within_block**\n- **zip_details**\n- **zip_hpi_forecast**\n- **zip_hpi_historical**\n- **zip_hpi_ts**\n- **zip_hpi_ts_forecast**\n- **zip_hpi_ts_historical**\n- **zip_volatility**\n- **component_mget**\n\nValue Report API Endpoint:\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n- **value_report**\n\nRental Report API Endpoint:\n^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n- **rental_report**\n\n\nArgs:\n^^^^^ \n\nAll of the Analytics API property endpoint methods take an\n``data`` argument. ``data`` can be in the following forms:\n\nA dict like:\n\n.. code:: python\n\n {\"address\": \"82 County Line Rd\", \"zipcode\": \"72173\", \"meta\": \"someID\"}\n\nOr\n\n.. code:: python\n\n {\"address\": \"82 County Line Rd\", \"city\": \"San Francisco\", \"state\": \"CA\", \"meta\": \"someID\"}\n\nOr\n\n.. code:: python\n\n {\"slug\": \"123-Example-St-San-Francisco-CA-94105\"}\n\nA list of dicts as specified above:\n\n.. code:: python\n\n [{\"address\": \"82 County Line Rd\", \"zipcode\": \"72173\", \"meta\": \"someID\"},\n {\"address\": \"43 Valmonte Plaza\", \"zipcode\": \"90274\", \"meta\": \"someID2\"}]\n\nA single string representing a slug:\n\n.. code:: python\n \n \"123-Example-St-San-Francisco-CA-94105\"\n\nA tuple in the form of (address, zipcode, meta) like:\n\n.. code:: python\n\n (\"82 County Line Rd\", \"72173\", \"someID\")\n\nA list of (address, zipcode, meta) tuples like:\n\n.. code:: python\n\n [(\"82 County Line Rd\", \"72173\", \"someID\"),\n (\"43 Valmonte Plaza\", \"90274\", \"someID2\")]\n\nUsing a tuple only supports address, zipcode and meta. To specify city, state, unit or slug,\nplease use a dict.\n\nThe \"meta\" field is always optional.\n\nThe available keys in the dict are:\n - address (required if no slug)\n - slug (required if no address)\n - zipcode (optional)\n - unit (optional)\n - city (optional)\n - state (optional)\n - meta (optional)\n - client_value (optional, for ``value_within_block`` and ``rental_value_within_block``)\n - client_value_sqft (optional, for ``value_within_block`` and ``rental_value_within_block``)\n\nAll of the property endpoint methods return a PropertyResponse object\n(or ValueReportResponse or RentalReportResponse) or\nthe output of a custom OutputGenerator if one was specified in the constructor.\n\n**Examples:**\n \n\n.. code:: python\n\n client = housecanary.ApiClient()\n result = client.property.value([(\"10216 N Willow Ave\", \"64157\"), (\"82 County Line Rd\", \"72173\")])\n\n result = client.property.value({\"address\": \"10216 N Willow Ave\", \"city\": \"San Francisco\", \"state\": \"CA\"})\n\n result = client.property.value(\"123-Example-St-San-Francisco-CA-94105\")\n\n\nComponent_mget endpoint\n^^^^^^^^^^^^^^^^^^^^^^^\n\nYou may want to retrieve data from multiple Analytics API endpoints in one request.\nIn this case, you can use the ``component_mget`` method.\nThe ``component_mget`` method takes an ``address_data`` argument just like the other endpoint methods.\nPass in a list of Analytics API property endpoint names as the second argument.\nNote that ``value_report`` and ``rental_report`` cannot be included.\n\n**Example:**\n \n\n.. code:: python\n\n client = housecanary.ApiClient()\n result = client.property.component_mget((\"10216 N Willow Ave\", \"64157\"), [\"property/school\", \"property/census\", \"property/details\"])\n\n\nValue Report:\n^^^^^^^^^^^^^\n\nThe ``value_report`` method behaves differently than the other endpoint\nmethods. It only supports one address at a time, and it takes some\nextra, optional parameters:\n\nArgs: \n - *address* (str) \n - *zipcode* (str)\n\nKwargs: \n - *report\\_type* - \"full\" or \"summary\". Optional. Default is \"full\"\n - *format\\_type* - \"json\", \"pdf\", \"xlsx\" or \"all\". Optional. Default is \"json\"\n\n**Example:**\n \n\n.. code:: python\n\n client = housecanary.ApiClient()\n # get Value Report in JSON format with \"summary\" report_type.\n result = client.property.value_report(\"10216 N Willow Ave\", \"64157\", \"summary\", \"json\")\n # print the JSON output\n print result.json()\n\n # get Value Report in PDF format with \"full\" report_type.\n result = client.property.value_report(\"10216 N Willow Ave\", \"64157\", format_type=\"pdf\")\n # result is binary data of the PDF.\n\nRental Report:\n^^^^^^^^^^^^^^\n\nThe ``rental_report`` method is for calling the Rental Report API. It only supports one address at a time.\n\nArgs:\n - *address* (str)\n - *zipcode* (str)\n\nKwargs: \n - *format\\_type* - \"json\", \"xlsx\" or \"all\". Optional. Default is \"json\"\n\nLearn more about the various endpoints in the `API docs. `_\n\n\nBlock Endpoints\n~~~~~~~~~~~~~~~\n\nAnalytics API Block Endpoints:\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n- **histogram_baths**\n- **histogram_beds**\n- **histogram_building_area**\n- **histogram_value**\n- **histogram_value_sqft**\n- **rental_value_distribution**\n- **value_distribution**\n- **value_ts**\n- **value_ts_forecast**\n- **value_ts_historical**\n- **component_mget**\n\nArgs:\n^^^^^\n\nAll of the Analytics API block endpoints take a ``block_data`` argument.\n``block_data`` can be in the following forms:\n\nA dict with a ``block_id`` like:\n\n.. code:: python\n\n {\"block_id\": \"060750615003005\", \"meta\": \"someId\"}\n\nFor histogram endpoints you can include the ``num_bins`` key:\n\n.. code:: python\n\n {\"block_id\": \"060750615003005\", \"num_bins\": 5, \"meta\": \"someId\"}\n\nFor time series and distribution endpoints you can include the ``property_type`` key:\n\n.. code:: python\n\n {\"block_id\": \"060750615003005\", \"property_type\": \"SFD\", \"meta\": \"someId\"}\n\nA list of dicts as specified above:\n\n.. code:: python\n\n [{\"block_id\": \"012345678901234\", \"meta\": \"someId\"}, {\"block_id\": \"012345678901234\", \"meta\": \"someId2}]\n\nA single string representing a ``block_id``:\n\n.. code:: python\n\n \"012345678901234\"\n\nA list of ``block_id`` strings:\n\n.. code:: python\n\n [\"012345678901234\", \"060750615003005\"]\n\nThe \"meta\" field is always optional.\n\nSee https://api-docs.housecanary.com/#analytics-api-block-level for more details\non the available parameters such as ``num_bins`` and ``property_type``.\n\nAll of the block endpoint methods return a BlockResponse,\nor the output of a custom OutputGenerator if one was specified in the constructor.\n\n\n**Examples:**\n \n.. code:: python\n\n client = housecanary.ApiClient()\n result = client.block.histogram_baths(\"060750615003005\")\n\n result = client.block.histogram_baths({\"block_id\": \"060750615003005\", \"num_bins\": 5})\n\n result = client.block.value_ts({\"block_id\": \"060750615003005\", \"property_type\": \"SFD\"})\n\n result = client.block.value_ts([{\"block_id\": \"060750615003005\", \"property_type\": \"SFD\"}, {\"block_id\": \"012345678901234\", \"property_type\": \"SFD\"}])\n\n result = client.block.value_distribution([\"012345678901234\", \"060750615003005\"])\n\n\nZip Endpoints\n~~~~~~~~~~~~~~~\n\nAnalytics API Zip Endpoints:\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n- **details**\n- **hpi_forecast**\n- **hpi_historical**\n- **hpi_ts**\n- **hpi_ts_forecast**\n- **hpi_ts_historical**\n- **volatility**\n- **component_mget**\n\nArgs:\n^^^^^\n\nAll of the Analytics API zip endpoints take a ``zip_data`` argument.\n``zip_data`` can be in the following forms:\n\nA dict with a ``zipcode`` like:\n\n.. code:: python\n\n {\"zipcode\": \"90274\", \"meta\": \"someId\"}\n\nA list of dicts as specified above:\n\n.. code:: python\n\n [{\"zipcode\": \"90274\", \"meta\": \"someId\"}, {\"zipcode\": \"01960\", \"meta\": \"someId2}]\n\nA single string representing a ``zipcode``:\n\n.. code:: python\n\n \"90274\"\n\nA list of ``zipcode`` strings:\n\n.. code:: python\n\n [\"90274\", \"01960\"]\n\nThe \"meta\" field is always optional.\n\nAll of the zip endpoint methods return a ZipCodeResponse,\nor the output of a custom OutputGenerator if one was specified in the constructor.\n\n\n**Examples:**\n \n.. code:: python\n\n client = housecanary.ApiClient()\n result = client.zip.details(\"90274\")\n\n result = client.zip.details({\"zipcode\": \"90274\", \"meta\": \"someId\"})\n\n result = client.zip.details([{\"zipcode\": \"90274\", \"meta\": \"someId\"}, {\"zipcode\": \"01960\", \"meta\": \"someId2\"}])\n\n result = client.zip.details([\"90274\", \"01960\"])\n\n\nMSA Endpoints\n~~~~~~~~~~~~~~~\n\nAnalytics API MSA Endpoints:\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n- **details**\n- **hpi_ts**\n- **hpi_ts_forecast**\n- **hpi_ts_historical**\n- **component_mget**\n\nArgs:\n^^^^^\n\nAll of the Analytics API MSA endpoints take an ``msa_data`` argument.\n``msa_data`` can be in the following forms:\n\nA dict with an ``msa`` like:\n\n.. code:: python\n\n {\"msa\": \"41860\", \"meta\": \"someId\"}\n\nA list of dicts as specified above:\n\n.. code:: python\n\n [{\"msa\": \"41860\", \"meta\": \"someId\"}, {\"msa\": \"40928\", \"meta\": \"someId2}]\n\nA single string representing a ``msa``:\n\n.. code:: python\n\n \"41860\"\n\nA list of ``msa`` strings:\n\n.. code:: python\n\n [\"41860\", \"40928\"]\n\nThe \"meta\" field is always optional.\n\nAll of the msa endpoint methods return an MsaResponse,\nor the output of a custom OutputGenerator if one was specified in the constructor.\n\n\n**Examples:**\n \n.. code:: python\n\n client = housecanary.ApiClient()\n result = client.msa.details(\"41860\")\n\n result = client.msa.details({\"msa\": \"90274\", \"meta\": \"someId\"})\n\n result = client.msa.details([{\"msa\": \"41860\", \"meta\": \"someId\"}, {\"msa\": \"40928\", \"meta\": \"someId2\"}])\n\n result = client.msa.details([\"41860\", \"40928\"])\n\n\nResponse Objects\n~~~~~~~~~~~~~~~~\n\nResponse\n^^^^^^^^\n\nResponse is a base class for encapsulating an HTTP response from the\nHouseCanary API.\n\n**Properties:**\n \n\n- **endpoint\\_name** - Gets the endpoint name of the original request\n- **response** - Gets the underlying response object.\n\n**Methods:**\n\n\n- **json()** - Gets the body of the response from the API as json.\n- **has\\_object\\_error()** - Returns true if any requested objects had\n a business logic error, otherwise returns false.\n- **get\\_object\\_errors()** - Gets a list of business error message\n strings for each of the requested objects that had a business error.\n If there was no error, returns an empty list.\n- **objects()** - Overridden in subclasses.\n- **rate_limits** - Returns a list of rate limit information\n\nPropertyResponse\n^^^^^^^^^^^^^^^^\n\nA subclass of Response, this is returned for all property endpoints\nexcept for ``value_report`` and ``rental_report``.\n\n**Methods:**\n \n\n- **objects()** - Gets a list of Property objects for the requested\n properties, each containing the object's returned json data from the\n API.\n- **properties()** - An alias for the objects() method.\n\nBlockResponse\n^^^^^^^^^^^^^^^^\n\nA subclass of Response, this is returned for all block endpoints.\n\n**Methods:**\n \n\n- **objects()** - Gets a list of Block objects for the requested\n blocks, each containing the object's returned json data from the\n API.\n- **blocks()** - An alias for the objects() method.\n\nZipCodeResponse\n^^^^^^^^^^^^^^^^\n\nA subclass of Response, this is returned for all zip endpoints.\n\n**Methods:**\n \n\n- **objects()** - Gets a list of ZipCode objects for the requested\n zipcodes, each containing the object's returned json data from the\n API.\n- **zipcodes()** - An alias for the objects() method.\n\nMsaResponse\n^^^^^^^^^^^^^^^^\n\nA subclass of Response, this is returned for all msa endpoints.\n\n**Methods:**\n \n\n- **objects()** - Gets a list of Msa objects for the requested\n msas, each containing the object's returned json data from the\n API.\n- **msas()** - An alias for the objects() method.\n\nHouseCanaryObject\n^^^^^^^^^^^^^^^^^\n\nBase class for various types of objects returned from the HouseCanary\nAPI. Currently, only the Property subclass is implemented.\n\n**Properties:**\n \n\n- **component\\_results** - a list of ComponentResult objects that\n contain data and error information for each endpoint requested for\n this HouseCanaryObject.\n\n**Methods:**\n \n\n- **has\\_error()** - Returns a boolean of whether there was a business\n logic error fetching data for any components for this object.\n- **get\\_errors()** - If there was a business error fetching data for\n any components for this object, returns the error messages.\n\nProperty\n^^^^^^^^\n\nA subclass of HouseCanaryObject, the Property represents a single\naddress and it's returned data.\n\n**Properties:**\n \n\n- **address**\n- **zipcode**\n- **zipcode\\_plus4**\n- **address\\_full**\n- **city**\n- **country\\_fips**\n- **lat**\n- **lng**\n- **state**\n- **unit**\n- **meta**\n\n**Example:**\n \n\n.. code:: python\n\n result = client.property.value((\"123 Main St\", \"01234\", \"meta information\"))\n p = result.properties()[0]\n print p.address\n # \"123 Main St\"\n print p.zipcode\n # \"01234\"\n print p.meta\n # \"meta information\"\n value_result = p.component_results[0]\n print value_result.component_name\n # 'property/value'\n print value_result.api_code\n # 0\n print value_result.api_code_description\n # 'ok'\n print value_result.json_data\n # {u'value': {u'price_upr': 1575138.0, u'price_lwr': 1326125.0, u'price_mean': 1450632.0, u'fsd': 0.086}}\n print p.has_error()\n # False\n print p.get_errors()\n # []\n\n\nBlock\n^^^^^\n\nA subclass of HouseCanaryObject, the Block represents a single\nblock and it's returned data.\n\n**Properties:**\n \n\n- **block_id**\n- **property_type**\n- **meta**\n\n**Example:**\n \n\n.. code:: python\n\n result = client.block.value_ts(\"060750615003005\")\n b = result.blocks()[0]\n print b.block_id\n # \"060750615003005\"\n print b.meta\n # \"meta information\"\n value_result = b.component_results[0]\n print value_result.component_name\n # 'block/value_ts'\n print value_result.api_code\n # 0\n print value_result.api_code_description\n # 'ok'\n print value_result.json_data\n # [...data...]\n print b.has_error()\n # False\n print b.get_errors()\n # []\n\n\nZipCode\n^^^^^^^\n\nA subclass of HouseCanaryObject, the ZipCode represents a single\nzipcode and it's returned data.\n\n**Properties:**\n \n\n- **zipcode**\n- **meta**\n\n**Example:**\n \n\n.. code:: python\n\n result = client.zip.details(\"90274\")\n z = result.zipcodes()[0]\n print z.zipcode\n # \"90274\"\n print z.meta\n # \"meta information\"\n details_result = z.component_results[0]\n print details_result.component_name\n # 'zip/details'\n print details_result.api_code\n # 0\n print details_result.api_code_description\n # 'ok'\n print details_result.json_data\n # [...data...]\n print z.has_error()\n # False\n print z.get_errors()\n # []\n\n\nMsa\n^^^^^^^\n\nA subclass of HouseCanaryObject, the Msa represents a single\nMetropolitan Statistical Area and it's returned data.\n\n**Properties:**\n \n\n- **msa**\n- **meta**\n\n**Example:**\n \n\n.. code:: python\n\n result = client.msa.details(\"41860\")\n m = result.msas()[0]\n print m.msa\n # \"41860\"\n print m.meta\n # \"meta information\"\n details_result = m.component_results[0]\n print details_result.component_name\n # 'msa/details'\n print details_result.api_code\n # 0\n print details_result.api_code_description\n # 'ok'\n print details_result.json_data\n # [...data...]\n print m.has_error()\n # False\n print m.get_errors()\n # []\n\n\nValueReportResponse\n^^^^^^^^^^^^^^^^^^^\n\nA subclass of Response, this is the object returned for the\n``value_report`` endpoint when \"json\" format\\_type is used. It simply\nreturns the JSON data of the Value Report.\n\n**Example:**\n \n\n.. code:: python\n\n result = client.property.value_report(\"123 Main St\", \"01234\")\n print result.json()\n\nRentalReportResponse\n^^^^^^^^^^^^^^^^^^^^\n\nA subclass of Response, this is the object returned for the\n``rental_report`` endpoint when \"json\" format\\_type is used. It simply\nreturns the JSON data of the Rental Report.\n\n**Example:**\n \n\n.. code:: python\n\n result = client.property.rental_report(\"123 Main St\", \"01234\")\n print result.json()\n\nCommand Line Tools\n---------------------------\nWhen you install this package, a couple command line tools are included and installed on your PATH.\n\n- `HouseCanary Analytics API Export `_\n- `HouseCanary API Excel Concat `_\n\nRunning Tests\n---------------------------\n\nTo run the unit test suite:\n\n::\n\n python setup.py nosetests --with-coverage --cover-package=housecanary\n\nDuring unit tests, all API requests are mocked.\nYou can run the unit tests with real API requests by doing the following:\n\n\n- Update `URL_PREFIX` in `constants.py` to point to a test or dev environment\n- Obtain an account for that environment that has permissions to all API components\n- Obtain an API Key and Secret and put them in `HC_API_KEY` and `HC_API_SECRET` environment variables\n- Run the test suite as: \n\n::\n\n HC_API_CALLS=true python setup.py nosetests\n\n**Note:** This setting will be ignored and API requests will be mocked if `URL_PREFIX` is pointing to Production.\n\nLicense\n-------\n\nThis API Client Library is made available under the MIT License:\n\nThe MIT License (MIT)\n\nCopyright (c) 2017 HouseCanary, Inc\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFor the avoidance of doubt, the above license does not apply to\nHouseCanary's proprietary software code or APIs, or to any data,\nanalytics or reports made available by HouseCanary from time to time,\nall of which may be licensed pursuant to a separate written agreement", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/housecanary/hc-api-python", "keywords": null, "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "housecanary", "package_url": "https://pypi.org/project/housecanary/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/housecanary/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/housecanary/hc-api-python" }, "release_url": "https://pypi.org/project/housecanary/0.7.1/", "requires_dist": null, "requires_python": null, "summary": "Client Wrapper for the HouseCanary API", "version": "0.7.1" }, "last_serial": 2834132, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "75673da881212614d40cf4d4831675d3", "sha256": "b76f0871ca53f1613cef73be49b47d632549589accc9e4f2ccefe13185cd33f1" }, "downloads": -1, "filename": "housecanary-0.1.tar.gz", "has_sig": false, "md5_digest": "75673da881212614d40cf4d4831675d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12448, "upload_time": "2016-06-20T16:56:38", "url": "https://files.pythonhosted.org/packages/7b/47/36d74b6ba7f5eb14c8001d6d589fd232003add94b5620710b7632551c323/housecanary-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "76e411868bf9dd1143181c9467271545", "sha256": "e31a57d0313e53975b8e2e6eb4d8021eaf0f6b68cb3c5500fb597b36b142bd71" }, "downloads": -1, "filename": "housecanary-0.2.tar.gz", "has_sig": false, "md5_digest": "76e411868bf9dd1143181c9467271545", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12539, "upload_time": "2016-07-19T20:00:22", "url": "https://files.pythonhosted.org/packages/ba/65/5d70d26ac3309400902ef9fef127f395d14ae64b5fea1c3cd04e855a1a69/housecanary-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "2c9adf3eecd124f0f2a2a8f4d651289d", "sha256": "cae161d272c95ed3da16844fff7235888ffb4a6188980a6381c99865de0a8fba" }, "downloads": -1, "filename": "housecanary-0.3.tar.gz", "has_sig": false, "md5_digest": "2c9adf3eecd124f0f2a2a8f4d651289d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12443, "upload_time": "2016-07-19T20:56:37", "url": "https://files.pythonhosted.org/packages/2b/45/7cde269b7ea0773f610ff2e464bf66ad031b9182d0b4a9dc48136261df87/housecanary-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "1fa02934d4efb88325bd39636168687e", "sha256": "5830f1f292d78e6fa5a239c4a93de26cebb84831c69cabb21a13d2b12c76c50b" }, "downloads": -1, "filename": "housecanary-0.4.tar.gz", "has_sig": false, "md5_digest": "1fa02934d4efb88325bd39636168687e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12522, "upload_time": "2016-07-20T18:54:52", "url": "https://files.pythonhosted.org/packages/8b/e8/99df469b9c1c17b50522deda13f4ec127b41c8fef1151d6256a1b969ef2c/housecanary-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "c2966cdc54b3beb5cbab58576b86feeb", "sha256": "8beb51e78d1b06e6a0d1aa23fe132c56c04984c55844b0708b9c9edc2e3ef257" }, "downloads": -1, "filename": "housecanary-0.4.1.tar.gz", "has_sig": false, "md5_digest": "c2966cdc54b3beb5cbab58576b86feeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12530, "upload_time": "2016-07-25T17:51:03", "url": "https://files.pythonhosted.org/packages/59/4f/7d08e7dfd41d9941b81248cefeaaf43aded221e63fc9ed84d39fbee5f0f6/housecanary-0.4.1.tar.gz" } ], "0.4.1.1": [ { "comment_text": "", "digests": { "md5": "b4a9851e9b60b5aecbdce13259eb195b", "sha256": "60304f034578349c5a891fdc4056854ca2a630fb6c8c27d09c5c98a17313ff35" }, "downloads": -1, "filename": "housecanary-0.4.1.1.tar.gz", "has_sig": false, "md5_digest": "b4a9851e9b60b5aecbdce13259eb195b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12543, "upload_time": "2016-07-25T21:52:49", "url": "https://files.pythonhosted.org/packages/7b/82/b10bf9d2ea0527ec5a23031d332968cbe5357c00f41a86ca091d42e5b7c8/housecanary-0.4.1.1.tar.gz" } ], "0.4.1.2": [ { "comment_text": "", "digests": { "md5": "653ecf6522d0c61e65edef1cf6ea1569", "sha256": "25c70998eafd4b1748b0c2e7f00a60478b5be89b1c2339805fbe0214b80a4bcc" }, "downloads": -1, "filename": "housecanary-0.4.1.2.tar.gz", "has_sig": false, "md5_digest": "653ecf6522d0c61e65edef1cf6ea1569", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12563, "upload_time": "2016-08-04T10:54:50", "url": "https://files.pythonhosted.org/packages/ec/d9/f6dc62d5b1ddcfec9743f05df12b94a8a0c7730d173137a2af89c68b55fd/housecanary-0.4.1.2.tar.gz" } ], "0.4.1.3": [ { "comment_text": "", "digests": { "md5": "bdf1d38bfa13ec4ce26de3e2a358fa47", "sha256": "bbe9840abe5f91bd0268bea0b25e731764dfc8649d07e4929039cc43a1adfcf8" }, "downloads": -1, "filename": "housecanary-0.4.1.3.tar.gz", "has_sig": false, "md5_digest": "bdf1d38bfa13ec4ce26de3e2a358fa47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12549, "upload_time": "2016-08-04T11:01:12", "url": "https://files.pythonhosted.org/packages/5b/8b/d763f57f12e2c4390441a9a45242b72150af5dbfdab736639cf8d5c57f75/housecanary-0.4.1.3.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "18d73ada438494a45b51919558f2ca12", "sha256": "966d7bdf532a6afa57b5fe10391229c28b34b8e3e8f15ee364dbccb76ca29e36" }, "downloads": -1, "filename": "housecanary-0.5.tar.gz", "has_sig": false, "md5_digest": "18d73ada438494a45b51919558f2ca12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15514, "upload_time": "2016-09-16T18:39:29", "url": "https://files.pythonhosted.org/packages/d6/14/0f04046c7a24bc4db0883c945c216aad75a5bdc5c930f4041b02e093faed/housecanary-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "238639ef996c82a060c35c7eb73b4019", "sha256": "9f9a50573784a41ce690f8d23f50cfe1c6e48f2a7ab3d9f7123d811fe6b666a4" }, "downloads": -1, "filename": "housecanary-0.5.1.tar.gz", "has_sig": false, "md5_digest": "238639ef996c82a060c35c7eb73b4019", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18879, "upload_time": "2016-09-16T18:52:47", "url": "https://files.pythonhosted.org/packages/ca/1e/3ba43604ee0dba59669ecd6f7b786eb56e90ef9b847eb8a0f889ac1805c8/housecanary-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "07b98178bed8d9aea38101014dc7906c", "sha256": "df79f4a5fca62f4ce901494336bae30eab4cb116cb3db3946cadef43fe2c9a9c" }, "downloads": -1, "filename": "housecanary-0.5.2.tar.gz", "has_sig": false, "md5_digest": "07b98178bed8d9aea38101014dc7906c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18947, "upload_time": "2016-09-30T13:29:22", "url": "https://files.pythonhosted.org/packages/bf/56/dd68fe87f366c2b6577ff2aad4a002cbfa8f14467a5a81c0087affdad4bc/housecanary-0.5.2.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "8591477c0922c33b65130a25a9d11b10", "sha256": "2560c9d53b0fec543c8668d12173b593f8a586d5b9d26822cda87ace52c7e3e7" }, "downloads": -1, "filename": "housecanary-0.6.tar.gz", "has_sig": false, "md5_digest": "8591477c0922c33b65130a25a9d11b10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19087, "upload_time": "2016-12-16T15:43:07", "url": "https://files.pythonhosted.org/packages/48/1d/b7e1b540e5e0622b7a0658f749fee6dc715f55e6be1f1b98f33b8e950094/housecanary-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "984a15231001f9852b30299f7fb8db09", "sha256": "2815bc24ee774f4af0507946e8fed568004681e439870af2b30ae67cebd6a099" }, "downloads": -1, "filename": "housecanary-0.6.1.tar.gz", "has_sig": false, "md5_digest": "984a15231001f9852b30299f7fb8db09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19109, "upload_time": "2016-12-16T15:45:08", "url": "https://files.pythonhosted.org/packages/19/d1/be5f97840309d4e0d5d8917d5cd6b9a94d8ab385ff73453160a0abe3368c/housecanary-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "6fefab7a0871413bcca11650dd3910e1", "sha256": "6d6f3f6f8cfbf104e829f0ceaafffd9829828cf3cdcd47f85d4782fa3e20a122" }, "downloads": -1, "filename": "housecanary-0.6.2.tar.gz", "has_sig": false, "md5_digest": "6fefab7a0871413bcca11650dd3910e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18929, "upload_time": "2017-01-11T18:23:30", "url": "https://files.pythonhosted.org/packages/4e/a2/0c38a2c2f1bc39a6107ba22b0ce6bf56dc6565ffb1459a73845990d56434/housecanary-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "e98c8a815f2fdf04b8fc6847ee4f751d", "sha256": "70f295ee5771d20c58808ddb3b37ea04a8d6db0f2d5c566bf482725f72717243" }, "downloads": -1, "filename": "housecanary-0.6.3.tar.gz", "has_sig": false, "md5_digest": "e98c8a815f2fdf04b8fc6847ee4f751d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18965, "upload_time": "2017-01-12T20:10:53", "url": "https://files.pythonhosted.org/packages/ae/07/3bce2ac09eb49b0df2620db7b60817b9e8c25842ea4dc968539b7649ccb0/housecanary-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "fda3f89c4770181cd4dcd3cce38f6c5f", "sha256": "b92435bcc1236824b0e5996a4c195c1891d0e7e0006ec3883d0a49276e2a7ec3" }, "downloads": -1, "filename": "housecanary-0.6.4.tar.gz", "has_sig": false, "md5_digest": "fda3f89c4770181cd4dcd3cce38f6c5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19871, "upload_time": "2017-01-20T18:16:13", "url": "https://files.pythonhosted.org/packages/4b/39/b65014c556fe70a8cd8f4ed44c07803238afb5c56de07e7accc002ff5e32/housecanary-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "991e783e8a31eeb72d77575d61c49e08", "sha256": "160e09e6ae1a2458a1ed4c53723979ba20920e64873bd36b473f6af7995e5c8e" }, "downloads": -1, "filename": "housecanary-0.6.5.tar.gz", "has_sig": false, "md5_digest": "991e783e8a31eeb72d77575d61c49e08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19906, "upload_time": "2017-01-26T19:17:06", "url": "https://files.pythonhosted.org/packages/cf/82/d87aa81d06e587f58d51d709e20fbb70485089303b2c7517ec1c55563021/housecanary-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "dca8c7127a3a933f1b6041e3b63842ad", "sha256": "2bee719bb8aec9b6072aed32ef2e896ca405f603214f65b07968907e99639244" }, "downloads": -1, "filename": "housecanary-0.6.6.tar.gz", "has_sig": false, "md5_digest": "dca8c7127a3a933f1b6041e3b63842ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21865, "upload_time": "2017-03-27T20:54:55", "url": "https://files.pythonhosted.org/packages/bc/13/34e62b938d37057ef2acee80b9d9c267a76928e8f2be11d51f2d8a2eb370/housecanary-0.6.6.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "fb75782a3007edd56577e772946b1e18", "sha256": "259376d332f06e6af8ee55cfa20eb5076b9cf0567d68506643c3ccd0a573018e" }, "downloads": -1, "filename": "housecanary-0.7.0.tar.gz", "has_sig": false, "md5_digest": "fb75782a3007edd56577e772946b1e18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32548, "upload_time": "2017-03-30T23:06:22", "url": "https://files.pythonhosted.org/packages/58/b6/81af0a19f70220475a38fa1a36f20d45a8b34a902b7e9b0291392c223c30/housecanary-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "e3d823714bb98ac5f469da45b2f7e3ac", "sha256": "ce999b1accc07294305b9e975b0b2e80c6eef6b36ef90a239fca6bdde2ae5e44" }, "downloads": -1, "filename": "housecanary-0.7.1.tar.gz", "has_sig": false, "md5_digest": "e3d823714bb98ac5f469da45b2f7e3ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33601, "upload_time": "2017-04-27T10:52:56", "url": "https://files.pythonhosted.org/packages/a8/ef/f7dd566195153678e64725ea1a69d1ac91fa664d6eacfdee2462b574253a/housecanary-0.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e3d823714bb98ac5f469da45b2f7e3ac", "sha256": "ce999b1accc07294305b9e975b0b2e80c6eef6b36ef90a239fca6bdde2ae5e44" }, "downloads": -1, "filename": "housecanary-0.7.1.tar.gz", "has_sig": false, "md5_digest": "e3d823714bb98ac5f469da45b2f7e3ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33601, "upload_time": "2017-04-27T10:52:56", "url": "https://files.pythonhosted.org/packages/a8/ef/f7dd566195153678e64725ea1a69d1ac91fa664d6eacfdee2462b574253a/housecanary-0.7.1.tar.gz" } ] }