Metadata-Version: 2.4
Name: mostlyrightmd
Version: 2.1.0
Summary: The full mostlyright SDK in one install — meta-distribution that pulls the core + every domain (weather, markets, economy, finance). `pip install mostlyrightmd` then `import mostlyright as mr`. Power users can install a single domain wheel instead.
Project-URL: Homepage, https://mostlyright.md
Project-URL: Documentation, https://mostlyright.md/docs/sdk/
Project-URL: Repository, https://github.com/mostlyrightmd/mostlyright-sdk
Project-URL: Issues, https://github.com/mostlyrightmd/mostlyright-sdk/issues
Project-URL: Changelog, https://github.com/mostlyrightmd/mostlyright-sdk/blob/main/CHANGELOG.md
Author-email: Robert Tarabcak <tarabcakr@gmail.com>
License-Expression: MIT
Keywords: ai-agents,backtesting,earnings,economic-data,economy,kalshi,local-first,machine-learning,ml-training,polymarket,prediction-markets,quant-research,quantitative-finance,schema-versioned,time-series,weather,weather-data
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: mostlyrightmd-core==2.1.0
Requires-Dist: mostlyrightmd-economy==2.1.0
Requires-Dist: mostlyrightmd-finance==2.1.0
Requires-Dist: mostlyrightmd-markets==2.1.0
Requires-Dist: mostlyrightmd-weather==2.1.0
Description-Content-Type: text/markdown

# mostlyrightmd

**The full mostlyright SDK in one install.**

`mostlyrightmd` is the meta-distribution: it pulls the core plus every domain
package — weather, markets, economy, and finance — so a single command gives you the
complete SDK.

```bash
pip install mostlyrightmd
```

```python
import mostlyright as mr

mr.weather   # live METAR / ASOS archive / GHCNh / NWS CLI
mr.markets   # Kalshi + Polymarket resolvers + settlement
mr.economy      # CPI / PPI / payrolls / GDP with first-print vintages
mr.finance   # earnings-call transcripts + earnings-mention resolution
```

> The PyPI package name is `mostlyrightmd`; the Python import name is
> `mostlyright`. `import mostlyrightmd` raises a teaching `ImportError` pointing at
> `import mostlyright as mr` — there is no silent alias.

## Power users: install one domain

Every domain ships as its own wheel and brings the core transitively, so you can
install just what you need:

```bash
pip install mostlyrightmd-core       # types + temporal safety + align()/spine()
pip install mostlyrightmd-weather    # weather data sources
pip install mostlyrightmd-markets    # prediction-market resolvers + settlement
pip install mostlyrightmd-economy       # economic indicators + vintages
pip install mostlyrightmd-finance    # earnings-call transcripts + resolution
```

All domain wheels share the `mostlyright.*` Python namespace (PEP 420) and bump in
lockstep on a single version.

## Documentation

Quickstart, concepts, and the full API reference live at
<https://mostlyright.md/docs/sdk/>.
