Skip to main content

Official Python SDK for the G-Prophet AI Stock Prediction API

Project description

G-Prophet Python SDK

Official Python client for the G-Prophet AI Stock Prediction API.

Installation

pip install gprophet

To also use the MCP Server (for AI agents like Claude, Kiro, etc.):

pip install gprophet[mcp]

Quick Start

from gprophet import GProphet

client = GProphet(api_key="gp_sk_your_key_here")

# Check balance
print(client.balance())

# Get a stock quote
quote = client.quote("AAPL", market="US")
print(f"AAPL: ${quote['price']}")

# AI prediction
pred = client.predict("AAPL", market="US", days=7)
print(f"Predicted: ${pred['predicted_price']} ({pred['direction']})")

# Technical analysis
tech = client.technical("AAPL", market="US")
print(f"Signal: {tech['overall_signal']}")

# Batch quotes
quotes = client.batch_quote(["AAPL", "GOOGL", "MSFT"], market="US")
for q in quotes["results"]:
    if q["success"]:
        print(f"{q['symbol']}: ${q['price']}")

# AI stock analysis (async with auto-polling)
analysis = client.analyze_stock("AAPL", market="US", wait=True)
print(analysis["analysis"]["summary"])

MCP Server (for AI Agents)

After installing with pip install gprophet[mcp], a gprophet-mcp command is available.

See MCP Server documentation for setup details.

API Reference

System

  • client.health() — Health check
  • client.info() — API metadata, pricing, supported markets

Account

  • client.balance() — Points balance and quota info
  • client.usage(days=7) — Usage statistics

Predictions

  • client.predict(symbol, market, days, algorithm) — AI price prediction
  • client.compare(symbol, market, days, algorithms) — Multi-algorithm comparison

Market Data

  • client.quote(symbol, market) — Real-time quote
  • client.batch_quote(symbols, market) — Batch quotes
  • client.history(symbol, market, period) — Historical OHLCV
  • client.search(keyword, market, limit) — Search symbols

Technical Analysis

  • client.technical(symbol, market, indicators) — Technical indicators & signals

Sentiment

  • client.fear_greed(days) — Crypto Fear & Greed Index
  • client.market_overview(market) — Market overview

Analysis

  • client.analyze_stock(symbol, market, locale, wait) — AI stock analysis (58 pts)
  • client.analyze_comprehensive(symbol, market, locale, wait) — Multi-agent analysis (150 pts)
  • client.task_status(task_id) — Check async task status

Error Handling

from gprophet import GProphet
from gprophet.client import GProphetError, RateLimitError, InsufficientPointsError

client = GProphet(api_key="gp_sk_...")

try:
    result = client.predict("AAPL", market="US")
except RateLimitError as e:
    print(f"Rate limited, retry after {e.retry_after}s")
except InsufficientPointsError as e:
    print(f"Need {e.required} points, have {e.available}")
except GProphetError as e:
    print(f"API error [{e.code}]: {e.message}")

Configuration

client = GProphet(
    api_key="gp_sk_...",
    base_url="https://www.gprophet.com/api/external/v1",  # Custom base URL
    timeout=60,       # Request timeout (seconds)
    max_retries=3,    # Auto-retry on rate limit
)

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

gprophet-0.1.3.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

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

gprophet-0.1.3-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file gprophet-0.1.3.tar.gz.

File metadata

  • Download URL: gprophet-0.1.3.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for gprophet-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e13932963301587bcc6993730ac4d00d7c697f6b1d4d735364e829bd63e57abe
MD5 b9c0331a529afaed888e40e96700ef10
BLAKE2b-256 a61b077d8571d789f01e583ab4e759c3f4c3c5cf5fa6e77086baa7607b8adac0

See more details on using hashes here.

File details

Details for the file gprophet-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: gprophet-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for gprophet-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3baf46e0794bdfe7cc9ac0a822f5b9fa9c23edbfb624fd189dcf71984a533456
MD5 408bbfd8264570346950ada2304f0f4e
BLAKE2b-256 0a522509816bb10fb54ec5694ac1c4393567a605c9796b296fe0755be77dd2ab

See more details on using hashes here.

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