Skip to content

Commit

Permalink
RLS: 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
addisonlynch committed Dec 12, 2020
1 parent 05f7054 commit 42ab63e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
7 changes: 0 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,6 @@ How This Package is Structured
following IEX Cloud endpoint groups are mapped to their respective
``iexfinance`` modules:

- Account - ``account`` (`iexfinance docs <https://addisonlynch.github.io/iexfinance/stable/account.html>`__ | `IEX Docs <https://iexcloud.io/docs/api/#account>`__)
- Stocks - ``stocks`` (`iexfinance docs <https://addisonlynch.github.io/iexfinance/stable/stocks.html>`__ | `IEX Docs <https://iexcloud.io/api/docs/#stocks>`__)
- Alternative Data - ``altdata`` (`iexfinance docs <https://addisonlynch.github.io/iexfinance/stable/altdata.html>`__ | `IEX Cloud Docs <https://iexcloud.io/docs/api/#alternative-data>`__)
- Reference Data - ``refdata`` (`iexfinance docs <http://addisonlynch.github.io/iexfinance/stable/refdata.html>`__ | `IEX Cloud Docs <https://iexcloud.io/docs/api/#reference-data>`__)
- Investors Exchange Data - ``iexdata`` (`iexfinance docs <http://addisonlynch.github.io/iexfinance/stable/iexdata.html>`__ | `IEX Cloud Docs <https://iexcloud.io/docs/api/#investors-exchange-data>`__)
- API System Metadata - ``apidata`` (`iexfinance docs <http://addisonlynch.github.io/iexfinance/stable/apistatus.html>`__ | `IEX Cloud Docs <https://iexcloud.io/docs/api/#api-system-metadata>`__)

The most commonly-used
endpoints are the `Stocks <https://iexcloud.io/docs/api/#stocks>`__
endpoints, which allow access to various information regarding equities,
Expand Down
9 changes: 0 additions & 9 deletions iexfinance/tests/stocks/test_fundamentals.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ def test_balance_sheet(self):
assert isinstance(data["AAPL"], pd.DataFrame) and not data["AAPL"].empty
assert isinstance(data["SVXY"], pd.DataFrame) and data["SVXY"].empty

@pytest.mark.xfail(
reason="Provider bug. Will not return more than 3 " "periods.", strict=True
)
def test_balance_sheet_params(self):
data = self.a.get_balance_sheet(last=4)
assert len(data.index) == 4
Expand All @@ -59,9 +56,6 @@ def test_cash_flow(self):
assert isinstance(data["AAPL"], pd.DataFrame) and not data["AAPL"].empty
assert isinstance(data["SVXY"], pd.DataFrame) and data["SVXY"].empty

@pytest.mark.xfail(
reason="Provider bug. Will not return more than 3 " "periods.", strict=True
)
def test_cash_flow_params(self):
data = self.a.get_cash_flow(last=4)
assert len(data.index) == 4
Expand Down Expand Up @@ -99,9 +93,6 @@ def test_income_statement(self):
assert isinstance(data["AAPL"], pd.DataFrame) and not data["AAPL"].empty
assert isinstance(data["SVXY"], pd.DataFrame) and data["SVXY"].empty

@pytest.mark.xfail(
reason="Provider bug. Will not return more than 3 " "periods.", strict=True
)
def test_income_statement_params(self):
data = self.a.get_income_statement(last=4)
assert len(data.index) == 4
Expand Down

0 comments on commit 42ab63e

Please sign in to comment.