Skip to content

v0.1.0 - Initial Public Release πŸŽ‰

Latest

Choose a tag to compare

@darshild1024-cpu darshild1024-cpu released this 18 Dec 01:29
· 9 commits to main since this release

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