Metadata-Version: 2.1
Name: propfirmkey
Version: 1.0.0
Summary: Compare prop trading firms, calculate true costs, and find the best discount codes. Data for 30+ verified prop firms.
Author-email: Kamal Latai <contact@propfirmkey.com>
Project-URL: Homepage, https://propfirmkey.com
Project-URL: Documentation, https://propfirmkey.com/en/blog/what-is-a-prop-firm-complete-guide
Project-URL: Discount Codes, https://propfirmkey.com/en/offers
Project-URL: Compare Firms, https://propfirmkey.com/en/firms
Project-URL: True Cost Calculator, https://propfirmkey.com/en/tools/true-cost-calculator
Project-URL: Coupon Codes, https://propfirmscoupons.com
Project-URL: Repository, https://github.com/propfirmkey
Project-URL: Changelog, https://propfirmkey.com/en/blog
Keywords: prop firm,prop trading,funded trader,forex,futures,trading,FTMO,FundedNext,The5ers,Bulenox,discount code,promo code,challenge,profit split,drawdown,prop firm comparison
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Office/Business :: Financial :: Investment
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# PropFirmKey — Prop Trading Firm Comparison Toolkit

[![PyPI version](https://badge.fury.io/py/propfirmkey.svg)](https://pypi.org/project/propfirmkey/)

**Compare 30+ prop trading firms, calculate true costs, and find the best discount codes — all from your terminal or Python scripts.**

Built by [PropFirmKey.com](https://propfirmkey.com) — the #1 prop firm comparison platform.

## Features

- **Compare Firms** — Side-by-side comparison of 30+ verified prop trading firms
- **True Cost Calculator** — Calculate the real cost including evaluation fees, activation fees, and promo codes
- **Discount Codes** — Verified promo codes with up to 90% OFF
- **Firm Finder** — Find the best firm for your trading style
- **Live Data** — Regularly updated from official firm websites

## Installation

```bash
pip install propfirmkey
```

## Quick Start

### Python API

```python
from propfirmkey import firms, calculate_cost, get_discount

# Get all firms
all_firms = firms.get_all()
for firm in all_firms:
    print(f"{firm['name']}: {firm['rating']}/5, {firm['profit_split']}% split")

# Calculate true cost with promo code
cost = calculate_cost(
    firm="bulenox",
    account_size=50000,
    promo_code="PFK"
)
print(f"Original: ${cost['original_price']}")
print(f"With code PFK: ${cost['discounted_price']} ({cost['discount']}% OFF)")
print(f"You save: ${cost['savings']}")

# Get best discount codes
deals = get_discount.best_deals()
for deal in deals:
    print(f"{deal['firm']}: {deal['code']} — {deal['discount']}% OFF")
```

### CLI Usage

```bash
# List all firms sorted by rating
propfirmkey list --sort rating

# Compare specific firms
propfirmkey compare the5ers ftmo fundednext

# Calculate cost with promo code
propfirmkey cost bulenox 50000 --code PFK

# Find best deals
propfirmkey deals
```

## Top Prop Firm Deals (March 2026)

| Firm | Code | Discount | Profit Split | Min Price |
|------|------|----------|-------------|-----------|
| [Bulenox](https://propfirmkey.com/en/firms/bulenox) | `PFK` | **90% OFF** | 100% | $11.50 |
| [Earn2Trade](https://propfirmkey.com/en/firms/earn2trade) | `PFK` | **50% OFF** | 80% | $75 |
| [FundedNext](https://propfirmkey.com/en/firms/fundednext) | `PFK` | **50% OFF** | 95% | $32.50 |
| [Blue Guardian](https://propfirmkey.com/en/firms/blue-guardian) | `PFK` | **50% OFF** | 90% | $13.50 |
| [TradeDay](https://propfirmkey.com/en/firms/tradeday) | `PFK` | **30% OFF** | 95% | $87.50 |
| [FXIFY](https://propfirmkey.com/en/firms/fxify) | `PFK` | **28% OFF** | 90% | $28 |
| [ThinkCapital](https://propfirmkey.com/en/firms/thinkcapital) | `PFK` | **25% OFF** | 90% | $29 |
| [The5ers](https://propfirmkey.com/en/firms/the5ers) | `PFKEY` | **5% OFF** | 100% | $18 |

> Full comparison with 30+ firms at [propfirmkey.com/en/firms](https://propfirmkey.com/en/firms)

## Firm Data Included

Each firm includes:
- Name, rating, review count (Trustpilot verified)
- Profit split percentage
- Maximum allocation / scaling
- Drawdown type (static, trailing, EOD, balance-based)
- Challenge pricing (all account sizes)
- Trading rules (scalping, news, weekend, EAs, hedging, copy trading)
- Payout frequency and methods
- Active promo codes and discount percentages

## Links

- **Website:** [propfirmkey.com](https://propfirmkey.com)
- **Coupon Codes:** [propfirmscoupons.com](https://propfirmscoupons.com)
- **Compare Firms:** [propfirmkey.com/en/firms](https://propfirmkey.com/en/firms)
- **True Cost Calculator:** [propfirmkey.com/en/tools/true-cost-calculator](https://propfirmkey.com/en/tools/true-cost-calculator)
- **Blog:** [propfirmkey.com/en/blog](https://propfirmkey.com/en/blog)

## Data Sources

All data is sourced from official firm websites, verified against Trustpilot reviews, and updated regularly. Promo codes are tested on checkout pages before publication.

## License

MIT — Use freely in your projects.

## About

Built and maintained by [Kamal Latai](https://propfirmkey.com/en/about) at [PropFirmKey](https://propfirmkey.com) — the world's first prop firm comparison platform with verified data for 30+ firms across 10 languages.
