🏢 Estate — Official Python SDK by Rylse
Estate is the official Python SDK for interacting with the Rylse Engine PropTech and Real Estate API.
Instead of processing heavy geospatial data or managing vast property registries locally, the estate package offloads computational logic and data filtering directly to the Rylse Edge Network (api.rylse.com).
⚡ Installation
Install the package directly from PyPI:
pip install estate
🔑 Authentication
To connect to the Rylse Edge Network, authenticate your client using a Rylse API key.
- Production Key: Your dedicated
rylse_live_...token. - Diagnostic Mode: Use
rylse_test_pingfor network handshake and latency testing without accessing private workloads.
🚀 Quick Start
Diagnostic Test
No production credentials are required for a basic connectivity test:
import estate
client = estate.Client(api_key="rylse_test_ping")
status = client.ping()
print(status)
# Output:
# {
# 'status': 'connected',
# 'mode': 'diagnostic',
# 'latency_ms': 18.4,
# ...
# }
Production Workload
Use your production API key to access real estate workloads:
import estate
client = estate.Client(
api_key="rylse_live_YOUR_TOKEN"
)
result = client.properties.search(
city="Warsaw",
radius_km=10
)
print(result)
📚 Documentation
For complete API documentation, error handling, pipeline configuration, and advanced usage, visit:
Rylse Documentation — docs.rylse.com
📄 License
This project is licensed under the MIT License.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file estate-0.2.0.tar.gz.
File metadata
- Download URL: estate-0.2.0.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
614bece13f21a1addccc53cd07517f6e171abbcdc6b625e7039bd1f1d47b22fb
|
|
| MD5 |
c29adb7607ce3486736f4057e3113b88
|
|
| BLAKE2b-256 |
ad643130c2a1c3c19d8b3a169a8e44e1834dc839605874019eb74333501635e4
|
File details
Details for the file estate-0.2.0-py3-none-any.whl.
File metadata
- Download URL: estate-0.2.0-py3-none-any.whl
- Upload date:
- Size: 3.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffa69b131c84dacfa3d98a5faf596396ff8be1b9b1ae7fd13c7c3de38e1c4ea3
|
|
| MD5 |
d5daad35d77bb4f0671bb0067fe8a627
|
|
| BLAKE2b-256 |
c2b187bbcf4ee09810b5a88f3d2e79af1aded5b0f17678edf77d7d49dce11454
|