Skip to main content
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

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.2.tar.gz (12.2 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.2-py3-none-any.whl (10.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for fear_greed-0.1.2.tar.gz
Algorithm Hash digest
SHA256 2b87ca23d9d863c80956eee898ef5302f1f804c20ed471379b750e369ec4133a
MD5 8478d416f34330e8e0817892f5f74428
BLAKE2b-256 513f5b059bd4a960f68e1c27f7ec590ecd3dce4e9913888eb583a1c8f7bfc302

See more details on using hashes here.

Provenance

The following attestation bundles were made for fear_greed-0.1.2.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.2-py3-none-any.whl.

File metadata

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

File hashes

Hashes for fear_greed-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 578177a0dcdfd57e8c8acad684116ec70f0ff883f1e101a9df8a35c7d0679bc3
MD5 3cbfe7e727e129e4761f2c4d1595bc4c
BLAKE2b-256 fcb56bf84dcb56159d0455bdd99fee2ed7355633ee50045876c2ca8bf5be750b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fear_greed-0.1.2-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.

Release history Release notifications | RSS feed

This release

0.1.2 This release

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

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