Merge pull request #264 from hydrosquall/documentation/add-peer-analysis-example

[docs] add peer comparison analysis example by @i3creations
This commit is contained in:
Cameron Yick
2019-05-02 10:02:52 -04:00
committed by GitHub
5 changed files with 2431 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ History
0.10.x (2019-XX-XX) 0.10.x (2019-XX-XX)
------------------ ------------------
* New changes go here! * Documentation: Added a "Peer Comparison Analysis" Jupyter Notebook under "/examples" (@i3creations #197)
0.9.x (2019-01-30) 0.9.x (2019-01-30)

View File

@@ -21,7 +21,7 @@ Tiingo Python
:target: https://pyup.io/repos/github/hydrosquall/tiingo-python/ :target: https://pyup.io/repos/github/hydrosquall/tiingo-python/
:alt: Updates :alt: Updates
.. image:: https://mybinder.org/badge_logo.svg .. image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/hydrosquall/tiingo-python/master?filepath=examples%2Fbasic-usage-with-pandas.ipynb :target: https://mybinder.org/v2/gh/hydrosquall/tiingo-python/master?filepath=examples%2Fbasic-usage-with-pandas.ipynb
:alt: Launch Binder :alt: Launch Binder
@@ -36,10 +36,10 @@ Tiingo is a financial data platform that makes high quality financial tools avai
Usage Usage
-------- --------
If you'd like to try this library without installing anything, click the button below. Otherwise, continue reading. If you'd like to try this library before installing, click below to open a folder of online runnable examples.
.. image:: https://mybinder.org/badge_logo.svg .. image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/hydrosquall/tiingo-python/master?filepath=examples%2Fbasic-usage-with-pandas.ipynb :target: https://mybinder.org/v2/gh/hydrosquall/tiingo-python/master?filepath=examples
:alt: Launch Binder :alt: Launch Binder

View File

@@ -19,7 +19,7 @@ Welcome to Tiingo Python's documentation!
:target: https://codecov.io/gh/hydrosquall/tiingo-python :target: https://codecov.io/gh/hydrosquall/tiingo-python
:alt: Coverage :alt: Coverage
.. image:: https://mybinder.org/badge_logo.svg .. image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/hydrosquall/tiingo-python/master?filepath=examples%2Fbasic-usage-with-pandas.ipynb :target: https://mybinder.org/v2/gh/hydrosquall/tiingo-python/master?filepath=examples%2Fbasic-usage-with-pandas.ipynb
:alt: Launch Binder :alt: Launch Binder
@@ -45,7 +45,7 @@ Tiingo is a financial data platform that makes high quality financial tools avai
If you'd like to try this library without installing anything, click the button below. Otherwise, continue reading. If you'd like to try this library without installing anything, click the button below. Otherwise, continue reading.
.. image:: https://mybinder.org/badge_logo.svg .. image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/hydrosquall/tiingo-python/master?filepath=examples%2Fbasic-usage-with-pandas.ipynb :target: https://mybinder.org/v2/gh/hydrosquall/tiingo-python/master?filepath=examples%2Fbasic-usage-with-pandas.ipynb
:alt: Launch Binder :alt: Launch Binder

File diff suppressed because one or more lines are too long

View File

@@ -19,7 +19,7 @@ def read(*filenames, **kwargs):
NAME = 'tiingo' NAME = 'tiingo'
AUTHOR = "Cameron Yick" AUTHOR = "Cameron Yick"
EMAIL = 'cameron.yick@enigma.com' EMAIL = 'cameron.yick@gmail.com'
URL = 'https://github.com/hydrosquall/tiingo-python' URL = 'https://github.com/hydrosquall/tiingo-python'
DESCRIPTION = "REST Client for Tiingo Data Platform API" DESCRIPTION = "REST Client for Tiingo Data Platform API"
LONG_DESCRIPTION = read('README.rst', 'HISTORY.rst') LONG_DESCRIPTION = read('README.rst', 'HISTORY.rst')