Last updated:
0 purchases
propertysync 0.11.1
PropertySync Python Client
This is a python packagefor working with the PropertySync API.
Installation
pip install propertysync
Usage
import propertysync
# Create a connection to the API
# ---
# *Note:* email and password will be retrieved from Psync environment variables if not
# provided on this line and if available. Those are: PROPERTYSYNC_API_EMAIL, PROPERTYSYNC_API_PASSWORD
api = propertysync.ApiClient('your_email', 'your_password')
# Set the correct document group
api.set_document_group_id("your_document_group_id")
# Get document group info
document_group_info = api.get_document_group_info()
# get all additions
additions = api.get_autocompletes("addition")
# run a search where the address is 123 Main St
search = propertysync.Search()
search.add_address("123 Main St")
search_results = api.run_search(search.get_query())
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.