Skip to content

Commit c96fcf2

Browse files
Add readme & requirements
1 parent ce423d1 commit c96fcf2

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

readme.rst

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
================================================
2+
IEX API Introduction Guide - AlgoTrading101 Blog
3+
================================================
4+
5+
This is the code used in `IEX API Introduction Guide <https://algotrading101.com/learn/iex-api/>`_ published on the Algotrading101 Blog
6+
7+
-----------------
8+
Table of Contents
9+
-----------------
10+
11+
* `What is the IEX API? <https://algotrading101.com/learn/iex-api/#what-is-the-iex-api>`_
12+
* `Is the IEX API free? <https://algotrading101.com/learn/iex-api/#is-the-iex-api-free>`_
13+
* `Why should I use the IEX API? <https://algotrading101.com/learn/iex-api/#why-should-i-use-the-iex-api>`_
14+
* `Why shouldn’t I use the IEX API? <https://algotrading101.com/learn/iex-api/#why-should-i-not-use-the-iex-api>`_
15+
* `What are some of the alternatives to the IEX API? <https://algotrading101.com/learn/iex-api/#what-are-alternatives-to-iex-api>`_
16+
* `How do I get started with the IEX API? <https://algotrading101.com/learn/iex-api/#how-do-i-get-started-with-iex-api>`_
17+
* `Is there a Python library for the IEX API? <https://algotrading101.com/learn/iex-api/#is-there-a-python-library-for-iex-api>`_
18+
* `How do I get historical data using the IEX API? <https://algotrading101.com/learn/iex-api/#get-historical-data-using-iex-api>`_
19+
* `What is the IEX API testing sandbox? <https://algotrading101.com/learn/iex-api/#what-is-iex-api-sandbox>`_
20+
* `What are IEX Messages? <https://algotrading101.com/learn/iex-api/#what-are-iex-messages>`_
21+
* `How can I check which companies are reporting earnings today? <https://algotrading101.com/learn/iex-api/#how-can-i-check-todays-earnings>`_
22+
* `How do I get the latest news from the IEX API? <https://algotrading101.com/learn/iex-api/#how-to-get-latest-news-iex-api>`_
23+
* `What is Investor Exchange data? <https://algotrading101.com/learn/iex-api/#what-is-investor-exchange-data>`_
24+
* `Final Thoughts <https://algotrading101.com/learn/iex-api/#final-thoughts>`_
25+
26+
------------
27+
Requirements
28+
------------
29+
30+
* `python <https://www.python.org>`_ >= 2.7, 3.4+
31+
* `requests <https://github.com/psf/requests>`_ (tested to work with >= 2.22.0 )
32+
* `pandas <https://github.com/pandas-dev/pandas>`_ (tested to work with >= 1.0.3 )
33+
34+
-----------
35+
Author Info
36+
-----------
37+
38+
:author: Jignesh Davda
39+
:author page: https://algotrading101.com/learn/author/jdavda/
40+
:published: 2020-05-19

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
requests==2.22.0
2+
pandas==1.0.3

0 commit comments

Comments
 (0)