Skip to content

Releases: DataSetIQ/datasetiq-python

v0.1.0 - Initial Public Release 🎉

18 Dec 01:29

Choose a tag to compare

DataSetIQ Python Client v0.1.0

The official Python SDK for DataSetIQ — Access 40M+ economic time series with pandas-ready DataFrames!

✨ Features

  • Easy Installation: pip install datasetiq
  • Pandas Integration: Returns clean DataFrames with date index
  • Dual Modes: Anonymous (no key) + Authenticated (full access)
  • Smart Caching: Disk-based with TTL (24h default)
  • Production Ready: Retry logic, exponential backoff, connection pooling
  • Helpful Errors: Marketing messages guide users to solutions

🚀 Quick Start

import datasetiq as iq

# Set API key (get free at datasetiq.com)
iq.set_api_key('your-key-here')

# Fetch data
df = iq.get('fred-cpi', start='2020-01-01')

# Plot
df['value'].plot()

📚 Documentation

🐛 Known Issues

Minor test fixtures need adjustment (3/6 passing). Does not block usage.

💬 Feedback

Please open issues or discussions on GitHub!


Install now: pip install datasetiq