Skip to main content

The Propertia SDK helps users integrate easily with the SmartScore services

Project description

Propertia SDK

PyPI version Python support

The Propertia SDK helps users integrate easily with the SmartScore services

Installation

Install Propertia SDK pip

pip install propertia

SDK set up

In order to authenticate with Propertia, you will have to supply the API Key.

from propertia.client import PropertiaClient

with PropertiaClient(api_key="your_api_key") as client:
    ...

Usage

Get Scores

Given coordinates and needs, return the scores

Takes:

  • properties
  • needs

Returns:

  • List of properties sorted by descending scores

Example:

from propertia.client import PropertiaClient

properties = [
    {
        "id": "Property A",
        "latitude": "43.70558",
        "longitude": "-79.530985"
    },
    {
        "id": "Property B",
        "latitude": "43.640971",
        "longitude": "-79.579119"
    },
    {
        "id": "Property C",
        "latitude": "43.704711",
        "longitude": "-79.287965"
    }
]

needs = {
    "food-and-drink": {
        "importance": 5,
        "categories": [
            "fast-food"
        ]
    }
}

with PropertiaClient(api_key="your_api_key") as client:
    scores = client.get_scores(properties, needs)
    # Do something with your scores

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

propertia-0.1.3.tar.gz (5.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page