Skip to main content

The only working Python library for CNN's Fear & Greed Index — powered by CNN's internal API, not scraping.

Project description

CNN

CNN Fear & Greed Index

The only Python library that actually works.

Fetch real-time CNN Fear & Greed Index data with full historical data and all 7 indicators — powered by CNN's internal API, not fragile web scraping.

PyPI Python License: MIT

Installation · Quick Start · CLI · API Reference · Indicators


Why This Library?

Every other CNN Fear & Greed library on PyPI is broken. They rely on HTML scraping that breaks whenever CNN updates their website — and CNN has redesigned it multiple times since 2022.

This library uses CNN's internal data API directly — the same one that powers their official page. That means:

  • It actually works (no scraping, no Selenium, no browser automation)
  • All 7 indicators with individual scores, not just the overall index
  • 1 year of daily history (~251 trading days) in a single API call
  • Fast — one lightweight JSON request, no HTML parsing
  • No API key needed
import fear_greed

fear_greed.get()
# {'score': 14.59, 'rating': 'extreme fear', 'history': {'1w': 22.63, ...}, 'indicators': {...}}

Comparison

Feature fear-greed fear-and-greed fear-greed-index
Works in 2025+ Yes No No
Method Internal API Scraping Scraping
Current score Yes Yes Yes
All 7 indicators Yes No Partial
Historical data 1 year No No
CLI tool Yes No No
Last updated 2026 2022 2022

Installation

pip install fear-greed

Requires Python 3.9+ and requests.


Quick Start

import fear_greed

# Get everything in one call
data = fear_greed.get()
print(data['score'])      # 14.59
print(data['rating'])     # 'extreme fear'
print(data['history'])    # {'1w': 22.63, '1m': 44.41, '3m': 54.89, '6m': 56.77, '1y': 21.69}
print(data['indicators']) # All 7 indicators with scores and ratings

# Just the score
fear_greed.get_score()    # 14.59

# Just the rating
fear_greed.get_rating()   # 'extreme fear'

# Historical data (last 3 months)
fear_greed.get_history(last="3m")
# [{'date': '2026-03-20', 'score': 14.59, 'rating': 'extreme fear'}, ...]

# Date range
fear_greed.get_history(start="2025-06-01", end="2025-12-31")

CLI

# Current score + all indicators + history snapshots
fear-greed

# Historical data
fear-greed history                             # Full year (~251 days)
fear-greed history --last 30                   # Last 30 days
fear-greed history --last 3m                   # Last 3 months
fear-greed history --start 2025-06-01          # From a date
fear-greed history --start 2025-06 --end 2025-12  # Date range

# What each indicator means
fear-greed info

# Compact output (single line JSON)
fear-greed --compact

Example Output

$ fear-greed
{
  "score": 14.59,
  "rating": "extreme fear",
  "timestamp": "2026-03-20T23:59:51+00:00",
  "history": {
    "1w": 22.63,
    "1m": 44.41,
    "3m": 54.89,
    "6m": 56.77,
    "1y": 21.69
  },
  "indicators": {
    "market_momentum_sp500": { "score": 1.2, "rating": "extreme fear" },
    "stock_price_strength":  { "score": 18.0, "rating": "extreme fear" },
    "stock_price_breadth":   { "score": 5.2, "rating": "extreme fear" },
    "put_call_options":      { "score": 3.6, "rating": "extreme fear" },
    "market_volatility_vix": { "score": 40.74, "rating": "fear" },
    "junk_bond_demand":      { "score": 19.4, "rating": "extreme fear" },
    "safe_haven_demand":     { "score": 13.8, "rating": "extreme fear" }
  }
}

API Reference

fear_greed.get() -> dict

Returns the full Fear & Greed snapshot: current score, history comparisons (1w/1m/3m/6m/1y), and all 7 indicator scores.

fear_greed.get_history(last=None, start=None, end=None) -> list

Returns daily historical data as a list of {date, score, rating} dicts, sorted newest-first.

Parameter Type Example Description
last str "30", "7d", "2w", "3m" Recent period
start str "2025-06-01" Start date
end str "2025-12-31" End date

fear_greed.get_score() -> float

Returns the current index score (0–100).

fear_greed.get_rating() -> str

Returns the current rating: "extreme fear", "fear", "neutral", "greed", or "extreme greed".

fear_greed.fetch() -> dict

Returns the raw API response for advanced use.


Indicators

The Fear & Greed Index is calculated from 7 market indicators. Each is scored 0–100.

Indicator Measures Fear Signal Greed Signal
Market Momentum S&P 500 vs 125-day moving average Below average Above average
Stock Price Strength NYSE 52-week highs vs lows More lows More highs
Stock Price Breadth McClellan Volume Summation Index Low/negative volume High rising volume
Put/Call Options 5-day average put/call ratio Ratio > 1 (bearish) Ratio < 1 (bullish)
Market Volatility VIX vs 50-day moving average Rising VIX Falling VIX
Safe Haven Demand 20-day stock vs bond returns Bonds outperform Stocks outperform
Junk Bond Demand Junk vs investment grade yield spread Wider spread Narrower spread

Run fear-greed info for detailed descriptions.


Disclaimer

This project is not affiliated with CNN or Warner Bros. Discovery. Data is fetched from CNN's publicly accessible API. For the official index, visit CNN Fear & Greed Index.

This tool is for educational and research purposes. It is not financial advice.


License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fear_greed-0.1.0.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fear_greed-0.1.0-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file fear_greed-0.1.0.tar.gz.

File metadata

  • Download URL: fear_greed-0.1.0.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fear_greed-0.1.0.tar.gz
Algorithm Hash digest
SHA256 492512bbb1352adeecb1f98164f643e079ddce349c2d3c4dd15ccf9cf2cbe6a1
MD5 89e89d0dc782fe04f42083f9460616c3
BLAKE2b-256 789c13426ef8661f79bdab7d2e569e5c77f0791ef1a295f264beacb0ce009565

See more details on using hashes here.

Provenance

The following attestation bundles were made for fear_greed-0.1.0.tar.gz:

Publisher: publish.yml on tjdwls101010/CNN-Fear-Greed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fear_greed-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: fear_greed-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fear_greed-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e437700e742636b38715b133847eb9b62f46c29d30309bdc38ac0e7f013b135f
MD5 268d7abdfe3dd7ccf3f4d253efb2dbf4
BLAKE2b-256 514cd1b3432b9add5949d0db40681b90efc99b054015d068774a8432d774d91d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fear_greed-0.1.0-py3-none-any.whl:

Publisher: publish.yml on tjdwls101010/CNN-Fear-Greed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page