Registry / http-networking / rentdynamics

rentdynamics

JSON →
library1.1.1pypypi✓ verified 82d ago

Official Python client library for the Rent Dynamics API (v1.1.1). Provides async methods for property management operations. Currently in active development with monthly releases.

pip install rentdynamics
INSTALL
IMPORT
SIG · RENTDYNAMICS
R
rentdynamics
http-networkingpythonv1.1.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

RentDynamicsClient
import rentdynamics
from rentdynamics import RentDynamicsClient

Initialize client with API key from environment variable and fetch properties.

import asyncio from rentdynamics import RentDynamicsClient async def main(): client = RentDynamicsClient(api_key=os.environ.get('RENTDYNAMICS_API_KEY', '')) properties = await client.properties.list() print(properties) asyncio.run(main())
Debug
Known issues
breakingRentDynamicsClient now requires the api_key parameter (was optional in v0.x).
fix
Pass api_key explicitly or set RENTDYNAMICS_API_KEY environment variable.
affects: >=1.0.0
gotchaAll methods are async; calling them without await results in a coroutine object, not actual data.
fix
Always await the method call: await client.properties.list()
affects: all
Upgrade
Version history
1.1.1latest on PyPI · released Mar 5, 2026
Audit
Dependencies
httpxrequiredHTTP client used for API calls
pydanticrequiredData validation and settings
Agent activity
9 hits · last 30 days
node
8
Resources
rentdynamics — pip install rentdynamics · libregistry