rezen


Namerezen JSON
Version 2.2.10 PyPI version JSON
download
home_pageNone
SummaryPython wrapper for The Real Brokerage ReZEN API - Transaction Builder, Transactions, Teams, Agents, and Directory management
upload_time2025-08-15 16:41:14
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2025 The Perry Group Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords real-estate api transactions realty rezen the-real-brokerage real-estate-api transaction-management
VCS
bugtrack_url
requirements requests python-dotenv pydantic typing-extensions
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ReZEN Python Client

[![PyPI version](https://badge.fury.io/py/rezen.svg)](https://badge.fury.io/py/rezen)
[![Python support](https://img.shields.io/pypi/pyversions/rezen.svg)](https://pypi.org/project/rezen/)
[![License](https://img.shields.io/github/license/theperrygroup/rezen.svg)](https://github.com/theperrygroup/rezen/blob/main/LICENSE)
[![Coverage](https://img.shields.io/codecov/c/github/theperrygroup/rezen.svg)](https://codecov.io/gh/theperrygroup/rezen)
[![Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://theperrygroup.github.io/rezen)

> **The official Python client for the ReZEN Real Estate API**

Build powerful real estate applications with comprehensive transaction management, agent networking, and team operations. Type-safe, production-ready, and extensively documented.

## ๐Ÿš€ Quick Start

**Install:**
```bash
pip install rezen
```

**Use:**
```python
from rezen import RezenClient

# Initialize client (reads REZEN_API_KEY from environment)
client = RezenClient()

# Search for active teams
teams = client.teams.search_teams(status="ACTIVE")

# Create a transaction
response = client.transaction_builder.create_transaction_builder()
transaction_id = response['id']

# Add property details
client.transaction_builder.update_location_info(transaction_id, {
    "address": "123 Main Street",
    "city": "San Francisco",
    "state": "CA",
    "zipCode": "94102"
})
```

**[๐Ÿ“– Full Documentation](https://theperrygroup.github.io/rezen)** | **[๐Ÿš€ Quick Start Guide](https://theperrygroup.github.io/rezen/getting-started/quickstart/)**

---

## โœจ Key Features

| **Feature** | **Description** |
|-------------|-----------------|
| ๐Ÿ  **Transaction Management** | Complete transaction lifecycle from creation to closing |
| ๐Ÿ‘ฅ **Agent & Team Operations** | Comprehensive search, network analysis, and team management |
| ๐Ÿ”’ **Type-Safe & Robust** | Full type hints, comprehensive error handling, 100% test coverage |
| ๐Ÿ“š **Well Documented** | Extensive docs with real-world examples and troubleshooting |
| โšก **Production Ready** | Battle-tested with retry logic, rate limiting, and connection pooling |

## ๐ŸŽฏ Use Cases

**Real Estate Transaction Processing**
- Property listings and transaction creation
- Participant management (buyers, sellers, agents, service providers)
- Financial operations (commissions, payments, escrow)
- Document management and reporting

**Agent Network Management**
- Agent discovery and search capabilities
- Network analysis with sponsor trees and downlines
- Team management and assignments
- Performance tracking and analytics

**System Integration**
- CRM integrations for customer management
- Accounting systems for financial tracking
- Workflow automation for process optimization

## ๐Ÿ“Š API Coverage

| **API Section** | **Endpoints** | **Status** |
|-----------------|---------------|------------|
| Transaction Builder | 52 endpoints | โœ… Complete |
| Transactions | 49 endpoints | โœ… Complete |
| Agents | 36 endpoints | โœ… Complete |
| Teams | 2 endpoints | โœ… Complete |
| Directory | 16 endpoints | โœ… Complete |
| **Total** | **155 endpoints** | **โœ… Complete** |

## ๐Ÿ› ๏ธ Installation & Setup

### Prerequisites
- Python 3.8 or higher
- ReZEN API key

### Install the Package

**With pip:**
```bash
pip install rezen
```

**With poetry:**
```bash
poetry add rezen
```

### Configure Authentication

**Option 1: Environment Variable (Recommended)**
```bash
export REZEN_API_KEY="your_api_key_here"
```

**Option 2: Direct in Code**
```python
client = RezenClient(api_key="your_api_key_here")
```

**Option 3: .env File**
```bash
# .env
REZEN_API_KEY=your_api_key_here
```

## ๐Ÿ’ก Examples

### Complete Transaction Workflow

```python
from datetime import datetime, timedelta
from rezen import RezenClient

client = RezenClient()

# Create transaction
response = client.transaction_builder.create_transaction_builder()
transaction_id = response['id']

# Add property details
client.transaction_builder.update_location_info(transaction_id, {
    "address": "1234 Elm Street",
    "city": "San Francisco",
    "state": "CA",
    "zipCode": "94102"
})

# Set pricing and timeline
closing_date = (datetime.now() + timedelta(days=45)).strftime("%Y-%m-%d")
client.transaction_builder.update_price_and_date_info(transaction_id, {
    "purchase_price": 850000,
    "closing_date": closing_date
})

# Add participants
client.transaction_builder.add_buyer(transaction_id, {
    "first_name": "Alice",
    "last_name": "Johnson",
    "email": "alice@email.com"
})

# Submit for processing
client.transaction_builder.submit_transaction(transaction_id)
```

### Agent Network Analysis

```python
from rezen import RezenClient

client = RezenClient()

# Find agents in California
agents = client.agents.search_active_agents(
    state_or_province=["CALIFORNIA"],
    page_size=50
)

# Analyze agent networks
for agent in agents[:5]:
    agent_id = agent['id']

    # Get network statistics
    network_stats = client.agents.get_network_size_by_tier(agent_id)
    front_line = client.agents.get_front_line_agents_info(agent_id)

    print(f"Agent {agent['first_name']} {agent['last_name']}:")
    print(f"  Network tiers: {len(network_stats)}")
    print(f"  Front line agents: {len(front_line)}")
```

### Directory Management

```python
from rezen import RezenClient

client = RezenClient()

# Search for vendors
vendors = client.directory.search_vendors(
    page_number=0,
    page_size=20,
    roles=["TITLE_ESCROW", "LENDER"]
)

# Create and link contacts
person_data = {
    "firstName": "Jane",
    "lastName": "Smith",
    "emailAddress": "jane@example.com",
    "phoneNumber": "555-0123"
}

person = client.directory.create_person(person_data)
client.directory.link_person(person['id'], {"vendorId": "vendor-123"})
```

**[๐Ÿ“š More Examples โ†’](https://theperrygroup.github.io/rezen/guides/examples/)**

## ๐Ÿ“– Documentation

| Resource | Description |
|----------|-------------|
| **[๐Ÿ“– Full Documentation](https://theperrygroup.github.io/rezen)** | Complete documentation site |
| **[๐Ÿš€ Quick Start](https://theperrygroup.github.io/rezen/getting-started/quickstart/)** | 5-minute setup guide |
| **[๐Ÿ“‹ API Reference](https://theperrygroup.github.io/rezen/api/)** | Complete API documentation |
| **[๐Ÿ’ก Examples](https://theperrygroup.github.io/rezen/guides/examples/)** | Real-world usage patterns |
| **[๐Ÿ”ง Troubleshooting](https://theperrygroup.github.io/rezen/guides/troubleshooting/)** | Common issues and solutions |

## ๐Ÿ—๏ธ Architecture

The ReZEN Python client follows modern Python best practices:

```
RezenClient
โ”œโ”€โ”€ TransactionBuilderClient  (52 endpoints)
โ”œโ”€โ”€ TransactionsClient        (49 endpoints)
โ”œโ”€โ”€ TeamsClient              (2 endpoints)
โ”œโ”€โ”€ AgentsClient             (36 endpoints)
โ””โ”€โ”€ DirectoryClient          (16 endpoints)
```

**Design Principles:**
- ๐ŸŽฏ **Simple Interface**: Intuitive method names and clear parameters
- ๐Ÿ”’ **Type Safety**: Complete type hints for excellent IDE support
- โšก **Performance**: Efficient session management and connection pooling
- ๐Ÿ›ก๏ธ **Reliability**: Comprehensive error handling and retry mechanisms
- ๐Ÿ“š **Extensible**: Clean architecture for easy customization

## ๐Ÿงช Development

### Setup Development Environment

```bash
# Clone the repository
git clone https://github.com/theperrygroup/rezen.git
cd rezen

# Create virtual environment
python -m venv venv
source venv/bin/activate  # Linux/macOS
# or venv\Scripts\activate  # Windows

# Install dependencies
pip install -r requirements-dev.txt

# Install in development mode
pip install -e .
```

### Run Tests

```bash
# Run all tests
pytest

# Run with coverage
pytest --cov=rezen --cov-report=html

# Run specific test file
pytest tests/test_teams.py -v
```

### Code Quality

```bash
# Format code
black .

# Sort imports
isort .

# Type checking
mypy rezen/

# Linting
flake8 rezen/
```

### Build Documentation

```bash
# Serve documentation locally
mkdocs serve

# Build documentation
mkdocs build
```

## ๐Ÿค Contributing

We welcome contributions! Please see our [Contributing Guide](https://theperrygroup.github.io/rezen/development/contributing/) for details.

**Quick Contribution Steps:**
1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Make your changes with tests
4. Run the test suite (`pytest`)
5. Submit a pull request

## ๐Ÿ“„ License

This project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details.

## ๐Ÿ†˜ Support

### Get Help
- **๐Ÿ“– Documentation**: [theperrygroup.github.io/rezen](https://theperrygroup.github.io/rezen)
- **๐Ÿ’ฌ GitHub Issues**: [Report bugs or request features](https://github.com/theperrygroup/rezen/issues)
- **๐Ÿ“ง Email**: [support@rezen.com](mailto:support@rezen.com)
- **๐ŸŒ Website**: [rezen.com](https://rezen.com)

### Status & Monitoring
- **๐Ÿ” API Status**: [status.rezen.com](https://status.rezen.com)
- **๐Ÿ“ฆ PyPI Package**: [pypi.org/project/rezen](https://pypi.org/project/rezen/)

---

**Ready to build powerful real estate applications?** **[Get Started โ†’](https://theperrygroup.github.io/rezen/getting-started/quickstart/)**

*Built with โค๏ธ by [The Perry Group](https://github.com/theperrygroup)*

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rezen",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "The Perry Group <dev@theperrygroup.com>",
    "keywords": "real-estate, api, transactions, realty, rezen, the-real-brokerage, real-estate-api, transaction-management",
    "author": null,
    "author_email": "The Perry Group <dev@theperrygroup.com>",
    "download_url": "https://files.pythonhosted.org/packages/64/7f/7e9fe25e4d108da1744cb4a39aa29633bfade5a5f93dc50ff8af1fd29529/rezen-2.2.10.tar.gz",
    "platform": null,
    "description": "# ReZEN Python Client\n\n[![PyPI version](https://badge.fury.io/py/rezen.svg)](https://badge.fury.io/py/rezen)\n[![Python support](https://img.shields.io/pypi/pyversions/rezen.svg)](https://pypi.org/project/rezen/)\n[![License](https://img.shields.io/github/license/theperrygroup/rezen.svg)](https://github.com/theperrygroup/rezen/blob/main/LICENSE)\n[![Coverage](https://img.shields.io/codecov/c/github/theperrygroup/rezen.svg)](https://codecov.io/gh/theperrygroup/rezen)\n[![Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://theperrygroup.github.io/rezen)\n\n> **The official Python client for the ReZEN Real Estate API**\n\nBuild powerful real estate applications with comprehensive transaction management, agent networking, and team operations. Type-safe, production-ready, and extensively documented.\n\n## \ud83d\ude80 Quick Start\n\n**Install:**\n```bash\npip install rezen\n```\n\n**Use:**\n```python\nfrom rezen import RezenClient\n\n# Initialize client (reads REZEN_API_KEY from environment)\nclient = RezenClient()\n\n# Search for active teams\nteams = client.teams.search_teams(status=\"ACTIVE\")\n\n# Create a transaction\nresponse = client.transaction_builder.create_transaction_builder()\ntransaction_id = response['id']\n\n# Add property details\nclient.transaction_builder.update_location_info(transaction_id, {\n    \"address\": \"123 Main Street\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipCode\": \"94102\"\n})\n```\n\n**[\ud83d\udcd6 Full Documentation](https://theperrygroup.github.io/rezen)** | **[\ud83d\ude80 Quick Start Guide](https://theperrygroup.github.io/rezen/getting-started/quickstart/)**\n\n---\n\n## \u2728 Key Features\n\n| **Feature** | **Description** |\n|-------------|-----------------|\n| \ud83c\udfe0 **Transaction Management** | Complete transaction lifecycle from creation to closing |\n| \ud83d\udc65 **Agent & Team Operations** | Comprehensive search, network analysis, and team management |\n| \ud83d\udd12 **Type-Safe & Robust** | Full type hints, comprehensive error handling, 100% test coverage |\n| \ud83d\udcda **Well Documented** | Extensive docs with real-world examples and troubleshooting |\n| \u26a1 **Production Ready** | Battle-tested with retry logic, rate limiting, and connection pooling |\n\n## \ud83c\udfaf Use Cases\n\n**Real Estate Transaction Processing**\n- Property listings and transaction creation\n- Participant management (buyers, sellers, agents, service providers)\n- Financial operations (commissions, payments, escrow)\n- Document management and reporting\n\n**Agent Network Management**\n- Agent discovery and search capabilities\n- Network analysis with sponsor trees and downlines\n- Team management and assignments\n- Performance tracking and analytics\n\n**System Integration**\n- CRM integrations for customer management\n- Accounting systems for financial tracking\n- Workflow automation for process optimization\n\n## \ud83d\udcca API Coverage\n\n| **API Section** | **Endpoints** | **Status** |\n|-----------------|---------------|------------|\n| Transaction Builder | 52 endpoints | \u2705 Complete |\n| Transactions | 49 endpoints | \u2705 Complete |\n| Agents | 36 endpoints | \u2705 Complete |\n| Teams | 2 endpoints | \u2705 Complete |\n| Directory | 16 endpoints | \u2705 Complete |\n| **Total** | **155 endpoints** | **\u2705 Complete** |\n\n## \ud83d\udee0\ufe0f Installation & Setup\n\n### Prerequisites\n- Python 3.8 or higher\n- ReZEN API key\n\n### Install the Package\n\n**With pip:**\n```bash\npip install rezen\n```\n\n**With poetry:**\n```bash\npoetry add rezen\n```\n\n### Configure Authentication\n\n**Option 1: Environment Variable (Recommended)**\n```bash\nexport REZEN_API_KEY=\"your_api_key_here\"\n```\n\n**Option 2: Direct in Code**\n```python\nclient = RezenClient(api_key=\"your_api_key_here\")\n```\n\n**Option 3: .env File**\n```bash\n# .env\nREZEN_API_KEY=your_api_key_here\n```\n\n## \ud83d\udca1 Examples\n\n### Complete Transaction Workflow\n\n```python\nfrom datetime import datetime, timedelta\nfrom rezen import RezenClient\n\nclient = RezenClient()\n\n# Create transaction\nresponse = client.transaction_builder.create_transaction_builder()\ntransaction_id = response['id']\n\n# Add property details\nclient.transaction_builder.update_location_info(transaction_id, {\n    \"address\": \"1234 Elm Street\",\n    \"city\": \"San Francisco\",\n    \"state\": \"CA\",\n    \"zipCode\": \"94102\"\n})\n\n# Set pricing and timeline\nclosing_date = (datetime.now() + timedelta(days=45)).strftime(\"%Y-%m-%d\")\nclient.transaction_builder.update_price_and_date_info(transaction_id, {\n    \"purchase_price\": 850000,\n    \"closing_date\": closing_date\n})\n\n# Add participants\nclient.transaction_builder.add_buyer(transaction_id, {\n    \"first_name\": \"Alice\",\n    \"last_name\": \"Johnson\",\n    \"email\": \"alice@email.com\"\n})\n\n# Submit for processing\nclient.transaction_builder.submit_transaction(transaction_id)\n```\n\n### Agent Network Analysis\n\n```python\nfrom rezen import RezenClient\n\nclient = RezenClient()\n\n# Find agents in California\nagents = client.agents.search_active_agents(\n    state_or_province=[\"CALIFORNIA\"],\n    page_size=50\n)\n\n# Analyze agent networks\nfor agent in agents[:5]:\n    agent_id = agent['id']\n\n    # Get network statistics\n    network_stats = client.agents.get_network_size_by_tier(agent_id)\n    front_line = client.agents.get_front_line_agents_info(agent_id)\n\n    print(f\"Agent {agent['first_name']} {agent['last_name']}:\")\n    print(f\"  Network tiers: {len(network_stats)}\")\n    print(f\"  Front line agents: {len(front_line)}\")\n```\n\n### Directory Management\n\n```python\nfrom rezen import RezenClient\n\nclient = RezenClient()\n\n# Search for vendors\nvendors = client.directory.search_vendors(\n    page_number=0,\n    page_size=20,\n    roles=[\"TITLE_ESCROW\", \"LENDER\"]\n)\n\n# Create and link contacts\nperson_data = {\n    \"firstName\": \"Jane\",\n    \"lastName\": \"Smith\",\n    \"emailAddress\": \"jane@example.com\",\n    \"phoneNumber\": \"555-0123\"\n}\n\nperson = client.directory.create_person(person_data)\nclient.directory.link_person(person['id'], {\"vendorId\": \"vendor-123\"})\n```\n\n**[\ud83d\udcda More Examples \u2192](https://theperrygroup.github.io/rezen/guides/examples/)**\n\n## \ud83d\udcd6 Documentation\n\n| Resource | Description |\n|----------|-------------|\n| **[\ud83d\udcd6 Full Documentation](https://theperrygroup.github.io/rezen)** | Complete documentation site |\n| **[\ud83d\ude80 Quick Start](https://theperrygroup.github.io/rezen/getting-started/quickstart/)** | 5-minute setup guide |\n| **[\ud83d\udccb API Reference](https://theperrygroup.github.io/rezen/api/)** | Complete API documentation |\n| **[\ud83d\udca1 Examples](https://theperrygroup.github.io/rezen/guides/examples/)** | Real-world usage patterns |\n| **[\ud83d\udd27 Troubleshooting](https://theperrygroup.github.io/rezen/guides/troubleshooting/)** | Common issues and solutions |\n\n## \ud83c\udfd7\ufe0f Architecture\n\nThe ReZEN Python client follows modern Python best practices:\n\n```\nRezenClient\n\u251c\u2500\u2500 TransactionBuilderClient  (52 endpoints)\n\u251c\u2500\u2500 TransactionsClient        (49 endpoints)\n\u251c\u2500\u2500 TeamsClient              (2 endpoints)\n\u251c\u2500\u2500 AgentsClient             (36 endpoints)\n\u2514\u2500\u2500 DirectoryClient          (16 endpoints)\n```\n\n**Design Principles:**\n- \ud83c\udfaf **Simple Interface**: Intuitive method names and clear parameters\n- \ud83d\udd12 **Type Safety**: Complete type hints for excellent IDE support\n- \u26a1 **Performance**: Efficient session management and connection pooling\n- \ud83d\udee1\ufe0f **Reliability**: Comprehensive error handling and retry mechanisms\n- \ud83d\udcda **Extensible**: Clean architecture for easy customization\n\n## \ud83e\uddea Development\n\n### Setup Development Environment\n\n```bash\n# Clone the repository\ngit clone https://github.com/theperrygroup/rezen.git\ncd rezen\n\n# Create virtual environment\npython -m venv venv\nsource venv/bin/activate  # Linux/macOS\n# or venv\\Scripts\\activate  # Windows\n\n# Install dependencies\npip install -r requirements-dev.txt\n\n# Install in development mode\npip install -e .\n```\n\n### Run Tests\n\n```bash\n# Run all tests\npytest\n\n# Run with coverage\npytest --cov=rezen --cov-report=html\n\n# Run specific test file\npytest tests/test_teams.py -v\n```\n\n### Code Quality\n\n```bash\n# Format code\nblack .\n\n# Sort imports\nisort .\n\n# Type checking\nmypy rezen/\n\n# Linting\nflake8 rezen/\n```\n\n### Build Documentation\n\n```bash\n# Serve documentation locally\nmkdocs serve\n\n# Build documentation\nmkdocs build\n```\n\n## \ud83e\udd1d Contributing\n\nWe welcome contributions! Please see our [Contributing Guide](https://theperrygroup.github.io/rezen/development/contributing/) for details.\n\n**Quick Contribution Steps:**\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Make your changes with tests\n4. Run the test suite (`pytest`)\n5. Submit a pull request\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details.\n\n## \ud83c\udd98 Support\n\n### Get Help\n- **\ud83d\udcd6 Documentation**: [theperrygroup.github.io/rezen](https://theperrygroup.github.io/rezen)\n- **\ud83d\udcac GitHub Issues**: [Report bugs or request features](https://github.com/theperrygroup/rezen/issues)\n- **\ud83d\udce7 Email**: [support@rezen.com](mailto:support@rezen.com)\n- **\ud83c\udf10 Website**: [rezen.com](https://rezen.com)\n\n### Status & Monitoring\n- **\ud83d\udd0d API Status**: [status.rezen.com](https://status.rezen.com)\n- **\ud83d\udce6 PyPI Package**: [pypi.org/project/rezen](https://pypi.org/project/rezen/)\n\n---\n\n**Ready to build powerful real estate applications?** **[Get Started \u2192](https://theperrygroup.github.io/rezen/getting-started/quickstart/)**\n\n*Built with \u2764\ufe0f by [The Perry Group](https://github.com/theperrygroup)*\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2025 The Perry Group\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.\n        ",
    "summary": "Python wrapper for The Real Brokerage ReZEN API - Transaction Builder, Transactions, Teams, Agents, and Directory management",
    "version": "2.2.10",
    "project_urls": {
        "Bug Tracker": "https://github.com/theperrygroup/rezen/issues",
        "Changelog": "https://github.com/theperrygroup/rezen/releases",
        "Documentation": "https://theperrygroup.github.io/rezen/",
        "Homepage": "https://github.com/theperrygroup/rezen",
        "Repository": "https://github.com/theperrygroup/rezen"
    },
    "split_keywords": [
        "real-estate",
        " api",
        " transactions",
        " realty",
        " rezen",
        " the-real-brokerage",
        " real-estate-api",
        " transaction-management"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d536d4705b433634c216b933c8da19b81115103cecef124222f613abb936333",
                "md5": "db512b7fa17ead5e704a5b19daae108d",
                "sha256": "556f1506a6926b375b40f95076d5e3cf21e178682441765551c21c7f1f7cb842"
            },
            "downloads": -1,
            "filename": "rezen-2.2.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "db512b7fa17ead5e704a5b19daae108d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 65964,
            "upload_time": "2025-08-15T16:41:12",
            "upload_time_iso_8601": "2025-08-15T16:41:12.491405Z",
            "url": "https://files.pythonhosted.org/packages/8d/53/6d4705b433634c216b933c8da19b81115103cecef124222f613abb936333/rezen-2.2.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "647f7e9fe25e4d108da1744cb4a39aa29633bfade5a5f93dc50ff8af1fd29529",
                "md5": "69a8654148ae9d58a55c81a58ba0a8ec",
                "sha256": "e42469e4593729c87da698ea77f44eb2e7005b94c07768624f395d364f7f0ef5"
            },
            "downloads": -1,
            "filename": "rezen-2.2.10.tar.gz",
            "has_sig": false,
            "md5_digest": "69a8654148ae9d58a55c81a58ba0a8ec",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 160390,
            "upload_time": "2025-08-15T16:41:14",
            "upload_time_iso_8601": "2025-08-15T16:41:14.027258Z",
            "url": "https://files.pythonhosted.org/packages/64/7f/7e9fe25e4d108da1744cb4a39aa29633bfade5a5f93dc50ff8af1fd29529/rezen-2.2.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-15 16:41:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "theperrygroup",
    "github_project": "rezen",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "requests",
            "specs": [
                [
                    ">=",
                    "2.31.0"
                ]
            ]
        },
        {
            "name": "python-dotenv",
            "specs": [
                [
                    ">=",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "pydantic",
            "specs": [
                [
                    ">=",
                    "2.5.0"
                ]
            ]
        },
        {
            "name": "typing-extensions",
            "specs": [
                [
                    ">=",
                    "4.8.0"
                ]
            ]
        }
    ],
    "lcname": "rezen"
}
        
Elapsed time: 0.45233s