Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nickderobertis/capiq-excel-downloader-py

Capital IQ Data Downloader using Python to drive Excel Plugin
https://github.com/nickderobertis/capiq-excel-downloader-py

Last synced: 2 months ago
JSON representation

Capital IQ Data Downloader using Python to drive Excel Plugin

Awesome Lists containing this project

README

        

# capiq_excel

## Overview

Use this tool to drive Excel using the Capital IQ plugin to
download Capital IQ data. It's as easy as:

```python
from capiq_excel import download_data

download_data(
['MSFT', 'AAPL'], # Any id type. Ticker, name, CUSIP, ISIN, etc.
['IQ_TOTAL_REV', 'IQ_COST_REV'], # Variable names from Capital IQ
freq='Q',
num_periods=6
)
```

## Links

For more information, see the
[documentation here.](https://nickderobertis.github.io/capiq-excel-downloader-py/)