yardi-sdk


Nameyardi-sdk JSON
Version 0.1.7 PyPI version JSON
download
home_pageNone
SummaryYardi SDK for Python
upload_time2024-12-12 20:07:32
maintainerNone
docs_urlNone
authorNone
requires_python>=3.12
licenseNone
keywords api management property real estate sdk yardi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Yardi SDK for Python

[![PyPI](https://img.shields.io/pypi/v/yardi-sdk?color=blue&label=pypi)](https://pypi.org/project/yardi-sdk/)
[![Downloads](https://img.shields.io/pepy/dt/yardi-sdk?color=purple&label=downloads)](https://pypistats.org/packages/yardi-sdk)
[![License](https://img.shields.io/badge/License-MIT-green.svg?color=dark-green&label=license)](https://opensource.org/blog/license/mit)

## About
This package provides an unofficial SDK for using Yardi APIs, making it extremely simple to call Yardi API endpoints. Yardi uses SOAP APIs requiring XML envelopes and documents, which may be unfamiliar for many developers. This package exposes a `Client` object as well as endpoint classes to allow for easy calling of Yardi APIs, complete with IntelliSense and tab completion.

Yardi vendors and third-party integrators, please read the [Vendors](#vendors) section below.

## Installation
```shell
$ pip install yardi-sdk
```

## Usage
Run `env.sh` to create an `.env` file and then fill in your Yardi credentials.

```shell
$ chmod +x env.sh
$ ./env.sh
```

Your `WSDL_URL` might look something like `https://www.yardiasp13.com/<CLIENT_URL>/webservices/ItfResidentTransactions20.asmx?WSDL`. Ask your Yardi representative about your `<CLIENT_URL>` or check in Voyager under Administration > About > URL. The `ItfResidentTransactions20` part will be different for each interface; this one is for Billing and Payments.

```python
import yardi_sdk


# Initialise client instance using .env variables by default
client = yardi_sdk.Client()

# Create endpoint object using .env variables for credential parameters and manually passing in other parameters
endpoint = yardi_sdk.endpoints.GetResidentTransactions_ByChargeDate_Login(
    YardiPropertyId="123",
    FromDate="2024-12-01",
    ToDate="2024-12-31"
)

# Call endpoint using client
response = client.call(endpoint)

# Pretty-print response to terminal or file
response.dump("file.xml")

# Inspect response structure in terminal or file
response.inspect("structure.txt")
```

## Endpoints
The SDK provides classes for all endpoints listed under the Billing & Payments, Vendor Invoicing, and Common Data Yardi interfaces. Each class has type-hinted instance variables matching the endpoint's parameters, allowing for rapid development using IntelliSense and tab completion. Yardi endpoints require credentials as part of the request, and then some endpoint-specific parameters which may be required or optional.

<figure>
    <img src="https://raw.githubusercontent.com/yhavin/yardi-sdk/main/assets/hover2.png" alt="IntelliSense demo" width="1000">
    <figcaption style="text-align: center;"><small>IntelliSense for each endpoint's parameters.</small></figcaption>
</figure>

### WSDL and interfaces
Yardi's API systems are defined using WSDL (Web Services Description Language), which functions as the "documentation" for the endpoints. Each interface (such as Billing and Payments or Common Data) has its own WSDL URL, and when accessed you will find an XML document with all the endpoints available. The endpoints in the SDK are auto-generated from these WSDLs, and the `Client` object connects to a WSDL in order to actually call the endpoint. Under the hood, the [`zeep`](https://github.com/mvantellingen/python-zeep) package is used to handle connections to the SOAP interface.

This means that you need a different client instance for each interface with which you want to interact. If you are working with multiple interfaces, then you will need multiple WSDL variables, so you can extend the `.env` file and load those variables into the respective clients.

Interface entities and interface licenses are passed into each endpoint, so if you are working with multiple interfaces, you will also want to extend the `.env` file and load these variables into the respective endpoint objects.

## API
### `Client`
The `Client` class handles the SOAP connection to Yardi, using your WSDL URL, Yardi interface username, and Yardi interface password.

#### `Client.call(self, endpoint, raw_output=False)`
Calls an endpoint using a given endpoint object and returns a `Response` object. By default, the response is cleaned from namespaces to make navigation easier, but this can be turned off using `raw_output=True`.

### `Response`
The `Response` class has convenient methods for using the XML reponse from the endpoint. Of course, you can use the `xml` or `lxml` packages to deal with the response as you see fit.

#### `Response.dump(self, path=None)`
Pretty-prints the XML response to the terminal or a file.

#### `Response.inspect(self, path=None)`
Prints a high-level tree structure of the XML response to the terminal or a file, so that you can understand the elements and hierarchies. Elements that are returned in lists, such as Charges or Transactions, are truncated to just show one element with a `[List]` marker. A sample value from the actual response will be shown in the structure so that you know what type of values are returned (redacted below).

<figure>
    <img src="https://raw.githubusercontent.com/yhavin/yardi-sdk/main/assets/inspect.png" alt="XML response structure" width="800">
    <figcaption style="text-align: center;"><small>Sample XML response structure.</small></figcaption>
</figure>

### `endpoints`
You can import all endpoint classes from `yardi_sdk.endpoints` and view parameter names and types in order to use them. An endpoint instance is passed to `Client.call()`.

## Vendors
If you are a [Yardi interface vendor](https://www.yardi.com/services/interfaces/standard-interface-options/), you are likely calling APIs across several Yardi accounts, since you have many Yardi customers. Thus, a single `.env` file with one Yardi username and password would not be sufficient. In your case, it is recommended to retrieve Yardi credentials of your customers (from wherever you keep them) and pass them into respective `Client` instances, one client for each customer. This is no worse than having to use a different `requests.HTTPBasicAuth` instance for each customer if you were to build the XML request documents manually (i.e., without an SDK).

## Further documentation
Consult with your Yardi representative to get further documentation on the interface endpoints, as the WSDLs do not give endpoint descriptions and detailed explanations for each parameter.
            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "yardi-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.12",
    "maintainer_email": null,
    "keywords": "api, management, property, real estate, sdk, yardi",
    "author": null,
    "author_email": "yhavin <y.havin@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/3e/af/a903c979cfb3c672a4b66e93fcf7159352b2247fa8b62e8264bdd680e962/yardi_sdk-0.1.7.tar.gz",
    "platform": null,
    "description": "# Yardi SDK for Python\n\n[![PyPI](https://img.shields.io/pypi/v/yardi-sdk?color=blue&label=pypi)](https://pypi.org/project/yardi-sdk/)\n[![Downloads](https://img.shields.io/pepy/dt/yardi-sdk?color=purple&label=downloads)](https://pypistats.org/packages/yardi-sdk)\n[![License](https://img.shields.io/badge/License-MIT-green.svg?color=dark-green&label=license)](https://opensource.org/blog/license/mit)\n\n## About\nThis package provides an unofficial SDK for using Yardi APIs, making it extremely simple to call Yardi API endpoints. Yardi uses SOAP APIs requiring XML envelopes and documents, which may be unfamiliar for many developers. This package exposes a `Client` object as well as endpoint classes to allow for easy calling of Yardi APIs, complete with IntelliSense and tab completion.\n\nYardi vendors and third-party integrators, please read the [Vendors](#vendors) section below.\n\n## Installation\n```shell\n$ pip install yardi-sdk\n```\n\n## Usage\nRun `env.sh` to create an `.env` file and then fill in your Yardi credentials.\n\n```shell\n$ chmod +x env.sh\n$ ./env.sh\n```\n\nYour `WSDL_URL` might look something like `https://www.yardiasp13.com/<CLIENT_URL>/webservices/ItfResidentTransactions20.asmx?WSDL`. Ask your Yardi representative about your `<CLIENT_URL>` or check in Voyager under Administration > About > URL. The `ItfResidentTransactions20` part will be different for each interface; this one is for Billing and Payments.\n\n```python\nimport yardi_sdk\n\n\n# Initialise client instance using .env variables by default\nclient = yardi_sdk.Client()\n\n# Create endpoint object using .env variables for credential parameters and manually passing in other parameters\nendpoint = yardi_sdk.endpoints.GetResidentTransactions_ByChargeDate_Login(\n    YardiPropertyId=\"123\",\n    FromDate=\"2024-12-01\",\n    ToDate=\"2024-12-31\"\n)\n\n# Call endpoint using client\nresponse = client.call(endpoint)\n\n# Pretty-print response to terminal or file\nresponse.dump(\"file.xml\")\n\n# Inspect response structure in terminal or file\nresponse.inspect(\"structure.txt\")\n```\n\n## Endpoints\nThe SDK provides classes for all endpoints listed under the Billing & Payments, Vendor Invoicing, and Common Data Yardi interfaces. Each class has type-hinted instance variables matching the endpoint's parameters, allowing for rapid development using IntelliSense and tab completion. Yardi endpoints require credentials as part of the request, and then some endpoint-specific parameters which may be required or optional.\n\n<figure>\n    <img src=\"https://raw.githubusercontent.com/yhavin/yardi-sdk/main/assets/hover2.png\" alt=\"IntelliSense demo\" width=\"1000\">\n    <figcaption style=\"text-align: center;\"><small>IntelliSense for each endpoint's parameters.</small></figcaption>\n</figure>\n\n### WSDL and interfaces\nYardi's API systems are defined using WSDL (Web Services Description Language), which functions as the \"documentation\" for the endpoints. Each interface (such as Billing and Payments or Common Data) has its own WSDL URL, and when accessed you will find an XML document with all the endpoints available. The endpoints in the SDK are auto-generated from these WSDLs, and the `Client` object connects to a WSDL in order to actually call the endpoint. Under the hood, the [`zeep`](https://github.com/mvantellingen/python-zeep) package is used to handle connections to the SOAP interface.\n\nThis means that you need a different client instance for each interface with which you want to interact. If you are working with multiple interfaces, then you will need multiple WSDL variables, so you can extend the `.env` file and load those variables into the respective clients.\n\nInterface entities and interface licenses are passed into each endpoint, so if you are working with multiple interfaces, you will also want to extend the `.env` file and load these variables into the respective endpoint objects.\n\n## API\n### `Client`\nThe `Client` class handles the SOAP connection to Yardi, using your WSDL URL, Yardi interface username, and Yardi interface password.\n\n#### `Client.call(self, endpoint, raw_output=False)`\nCalls an endpoint using a given endpoint object and returns a `Response` object. By default, the response is cleaned from namespaces to make navigation easier, but this can be turned off using `raw_output=True`.\n\n### `Response`\nThe `Response` class has convenient methods for using the XML reponse from the endpoint. Of course, you can use the `xml` or `lxml` packages to deal with the response as you see fit.\n\n#### `Response.dump(self, path=None)`\nPretty-prints the XML response to the terminal or a file.\n\n#### `Response.inspect(self, path=None)`\nPrints a high-level tree structure of the XML response to the terminal or a file, so that you can understand the elements and hierarchies. Elements that are returned in lists, such as Charges or Transactions, are truncated to just show one element with a `[List]` marker. A sample value from the actual response will be shown in the structure so that you know what type of values are returned (redacted below).\n\n<figure>\n    <img src=\"https://raw.githubusercontent.com/yhavin/yardi-sdk/main/assets/inspect.png\" alt=\"XML response structure\" width=\"800\">\n    <figcaption style=\"text-align: center;\"><small>Sample XML response structure.</small></figcaption>\n</figure>\n\n### `endpoints`\nYou can import all endpoint classes from `yardi_sdk.endpoints` and view parameter names and types in order to use them. An endpoint instance is passed to `Client.call()`.\n\n## Vendors\nIf you are a [Yardi interface vendor](https://www.yardi.com/services/interfaces/standard-interface-options/), you are likely calling APIs across several Yardi accounts, since you have many Yardi customers. Thus, a single `.env` file with one Yardi username and password would not be sufficient. In your case, it is recommended to retrieve Yardi credentials of your customers (from wherever you keep them) and pass them into respective `Client` instances, one client for each customer. This is no worse than having to use a different `requests.HTTPBasicAuth` instance for each customer if you were to build the XML request documents manually (i.e., without an SDK).\n\n## Further documentation\nConsult with your Yardi representative to get further documentation on the interface endpoints, as the WSDLs do not give endpoint descriptions and detailed explanations for each parameter.",
    "bugtrack_url": null,
    "license": null,
    "summary": "Yardi SDK for Python",
    "version": "0.1.7",
    "project_urls": {
        "Repository": "https://github.com/yhavin/yardi-sdk"
    },
    "split_keywords": [
        "api",
        " management",
        " property",
        " real estate",
        " sdk",
        " yardi"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85d255ddf994afa20d63514547a7d32aabb655ed83e859b54c9276e59ae7002f",
                "md5": "d945803ef0bb723921fcce27c96f7948",
                "sha256": "e2f8ea661a177d9e5b19d7ff67d940ee67f43cb8cf5c2c5dcfa73e82e37334b2"
            },
            "downloads": -1,
            "filename": "yardi_sdk-0.1.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d945803ef0bb723921fcce27c96f7948",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.12",
            "size": 12648,
            "upload_time": "2024-12-12T20:07:30",
            "upload_time_iso_8601": "2024-12-12T20:07:30.275780Z",
            "url": "https://files.pythonhosted.org/packages/85/d2/55ddf994afa20d63514547a7d32aabb655ed83e859b54c9276e59ae7002f/yardi_sdk-0.1.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3eafa903c979cfb3c672a4b66e93fcf7159352b2247fa8b62e8264bdd680e962",
                "md5": "d4eca4cdbcd352cf44b3ea6c1c68acc5",
                "sha256": "7cf97a1aa4ec3466720626d2bdadbf8bae991bba792da0d855a4296723b84e5c"
            },
            "downloads": -1,
            "filename": "yardi_sdk-0.1.7.tar.gz",
            "has_sig": false,
            "md5_digest": "d4eca4cdbcd352cf44b3ea6c1c68acc5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.12",
            "size": 306099,
            "upload_time": "2024-12-12T20:07:32",
            "upload_time_iso_8601": "2024-12-12T20:07:32.700871Z",
            "url": "https://files.pythonhosted.org/packages/3e/af/a903c979cfb3c672a4b66e93fcf7159352b2247fa8b62e8264bdd680e962/yardi_sdk-0.1.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-12 20:07:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yhavin",
    "github_project": "yardi-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "yardi-sdk"
}
        
Elapsed time: 0.43402s