Metadata-Version: 2.4
Name: landlord
Version: 0.1.0
Summary: Lightweight Python toolkit for real estate investment analysis, ROI, Cap Rate, and cash flow modeling.
Author-email: Rylse Solutions <hello@rylse.com>
License-Expression: MIT
Keywords: real-estate,property-investment,roi-calculator,cap-rate,cash-flow,proptech
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# 🏢 landlord

A lightweight, zero-dependency Python library for real estate investment analysis, yield calculations, and cash flow modeling.

## ⚠️ Disclaimer

This package is provided for educational, informational, and general computational purposes only. It does **not** constitute financial, legal, tax, or investment advice. 

Real estate calculations are based on theoretical models and user-supplied parameters. Past performance and mathematical estimates do not guarantee actual investment outcomes. Always perform your own independent due diligence and consult certified professionals before making financial decisions.

The authors and maintainers assume no liability for any financial decisions, losses, or damages resulting from the use of this software. If you discover calculation errors or discrepancies, please report them via the project issue tracker.

## ⚡ Installation

```bash
pip install landlord
```

## 🚀 Quickstart
```bash
import landlord

deal = landlord.Investment(
    purchase_price=500_000,
    monthly_rent=3_500,
    monthly_operating_expenses=600,
    initial_renovation_cost=30_000,
    down_payment=100_000
)

print(f"Gross Yield: {deal.gross_yield:.2f}%")
print(f"Cap Rate (NOI): {deal.cap_rate:.2f}%")
print(f"Annual NOI: ${deal.net_operating_income:,.2f}")
print(f"Cash-on-Cash Return: {deal.cash_on_cash_return:.2f}%")
```
