Skip to main content

Unofficial Python client for the MarketSurge stock research API

Project description

tickerscope

CI PyPI Python License

Unofficial async Python client for the MarketSurge stock research API. Wraps the GraphQL endpoints with typed dataclass models, cookie-based auth, and optional caching.

[!IMPORTANT] This is an unofficial library. You need an active MarketSurge subscription and must be logged in via your browser for authentication to work.

Features

  • Sync and async clients (TickerScopeClient / AsyncTickerScopeClient)
  • Frozen dataclass models with JSON serialization via mashumaro
  • Automatic JWT auth from browser cookies (Firefox/Chrome) via rookiepy
  • Optional response caching with aiocache
  • Token expiry detection and structured error hierarchy

Installation

pip install tickerscope

With optional caching support:

pip install tickerscope[cache]

Authentication

tickerscope authenticates by extracting cookies from your browser. Log into MarketSurge in Firefox or Chrome first, then:

from tickerscope import TickerScopeClient

# Reads cookies from Firefox by default
client = TickerScopeClient()

# Or specify Chrome
client = TickerScopeClient(browser="chrome")

You can also pass a JWT directly or set the TICKERSCOPE_JWT environment variable:

client = TickerScopeClient(jwt="your-jwt-token")

Usage

Sync client

from tickerscope import TickerScopeClient

with TickerScopeClient() as client:
    stock = client.get_stock("AAPL")
    print(stock.ratings.composite)
    print(stock.pricing.price)

    chart = client.get_chart_data(
        "AAPL",
        start_date="2025-01-01",
        end_date="2025-03-01",
    )
    for point in chart.time_series.data_points[:5]:
        print(point.close, point.volume)

Async client

import asyncio
from tickerscope import AsyncTickerScopeClient

async def main():
    async with AsyncTickerScopeClient(cache_ttl=300) as client:
        stock = await client.get_stock("NVDA")
        print(stock.company.name, stock.ratings.composite)

        fundamentals = await client.get_fundamentals("NVDA")
        for period in fundamentals.reported_earnings:
            print(period.period_label, period.value)

asyncio.run(main())

Async client (fully async construction)

Use the create() factory for fully async initialization, including the auth HTTP request:

async def main():
    client = await AsyncTickerScopeClient.create(cache_ttl=300)
    try:
        stock = await client.get_stock("TSLA")
        print(stock.ratings)
    finally:
        await client.aclose()

Available methods

Method Returns Description
get_stock(symbol) StockData Ratings, pricing, financials, patterns
get_chart_data(symbol, ...) ChartData OHLCV time series and quotes
get_fundamentals(symbol) FundamentalData Earnings/sales reported and estimates
get_ownership(symbol) OwnershipData Institutional fund ownership
get_watchlist(list_id) list[WatchlistEntry] Watchlist entries by list ID
get_watchlist_names() list[WatchlistSummary] All watchlist names
get_watchlist_items(id) WatchlistDetail Watchlist items by watchlist ID
get_watchlist_by_name(name) WatchlistDetail Look up watchlist by name
get_screens() list[Screen] Saved stock screens
get_screen_by_name(name) Screen Look up screen by name
run_screen(name, params) ScreenResult Execute a stock screen
get_active_alerts() AlertSubscriptionList Active alert subscriptions
get_triggered_alerts() TriggeredAlertList Recently triggered alerts
get_layouts() list[Layout] Saved chart layouts
get_chart_markups(symbol) ChartMarkupList Chart annotations/markups

Most async methods accept use_cache=True (default) when caching is enabled via cache_ttl.

Error handling

All exceptions inherit from TickerScopeError and include a to_dict() method for structured error reporting:

from tickerscope import (
    TickerScopeError,
    AuthenticationError,
    CookieExtractionError,
    TokenExpiredError,
    APIError,
    SymbolNotFoundError,
)

try:
    stock = client.get_stock("INVALID")
except SymbolNotFoundError as exc:
    print(exc.symbol)
    print(exc.to_dict())
except TokenExpiredError:
    # Re-authenticate and retry
    ...

Development

Requires uv for dependency management:

uv sync --all-extras --dev

make lint        # ruff check
make typecheck   # ty check
make radon       # cyclomatic complexity gate (A/B only)
make test        # pytest with coverage
make ci          # all of the above

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

tickerscope-0.1.0.tar.gz (29.1 kB view details)

Uploaded Source

Built Distribution

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

tickerscope-0.1.0-py3-none-any.whl (37.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for tickerscope-0.1.0.tar.gz
Algorithm Hash digest
SHA256 01e09b4815de8b47d882f63bcd0502a80cf0aee0d45e3b137981b8025adc5461
MD5 2558cb07233503bd4ac3538141edacd2
BLAKE2b-256 5d3eda976d4a521ac905fb847af09de4b1fd1832cd6024a6cc2597dc4f1088ef

See more details on using hashes here.

Provenance

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

Publisher: release.yml on major/tickerscope

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

File details

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

File metadata

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

File hashes

Hashes for tickerscope-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cee773925c0b5b416d0784a7c8a3db659c688630868459fed70810914c87948c
MD5 74ba9016fadf924eb1204bcc6380bdb0
BLAKE2b-256 b4c2a1cae3bb42475bfd6f98978019a4cbf72b9d4f6644e10a8e71d2ac23936c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on major/tickerscope

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