Lengthen title underlines to be at least title length

This commit is contained in:
Cameron Yick
2019-05-11 23:16:21 -04:00
parent ab94871cd5
commit 6025b58110
2 changed files with 6 additions and 6 deletions

View File

@@ -3,11 +3,11 @@ History
======= =======
0.11.x (2019-XX-XX) 0.11.x (2019-XX-XX)
------------------ --------------------
* Update me as new features are added * Update me as new features are added
0.10.x (2019-05-11) 0.10.x (2019-05-11)
------------------ --------------------
* Documentation: Added a "Peer Comparison Analysis" Jupyter Notebook under "/examples" (@i3creations #197) * Documentation: Added a "Peer Comparison Analysis" Jupyter Notebook under "/examples" (@i3creations #197)
* Minor: Update error message to clarify multiple tickers only work with single metrics * Minor: Update error message to clarify multiple tickers only work with single metrics
* Updated development dependencies * Updated development dependencies

View File

@@ -139,20 +139,20 @@ To receive results in ``pandas`` format, use the ``get_dataframe()`` method:
You can specify any of the end of day frequencies (daily, weekly, monthly, and annually) or any intraday frequency for both the ``get_ticker_price`` and ``get_dataframe`` methods. Weekly frequencies resample to the end of day on Friday, monthly frequencies resample to the last day of the month, and annually frequencies resample to the end of day on 12-31 of each year. The intraday frequencies are specified using an integer followed by "Min" or "Hour", for example "30Min" or "1Hour". You can specify any of the end of day frequencies (daily, weekly, monthly, and annually) or any intraday frequency for both the ``get_ticker_price`` and ``get_dataframe`` methods. Weekly frequencies resample to the end of day on Friday, monthly frequencies resample to the last day of the month, and annually frequencies resample to the end of day on 12-31 of each year. The intraday frequencies are specified using an integer followed by "Min" or "Hour", for example "30Min" or "1Hour".
Further Docs Further Docs
-------- -------------
* Official Tiingo Documentation: https://api.tiingo.com * Official Tiingo Documentation: https://api.tiingo.com
* `tiingo-python` Documentation: https://tiingo-python.readthedocs.io. * `tiingo-python` Documentation: https://tiingo-python.readthedocs.io.
Features Features
-------- ---------
* Easy programmatic access to Tiingo API * Easy programmatic access to Tiingo API
* Reuse requests session across API calls for better performance * Reuse requests session across API calls for better performance
* On most methods, pass in `fmt="object"` as a keyword to have your responses come back as `NamedTuples`, which should have a lower memory impact than regular Python dictionaries. * On most methods, pass in `fmt="object"` as a keyword to have your responses come back as `NamedTuples`, which should have a lower memory impact than regular Python dictionaries.
Roadmap: Roadmap:
-------- ---------
* Client-side validation of tickers * Client-side validation of tickers
* Data validation of returned responses * Data validation of returned responses
@@ -162,7 +162,7 @@ Roadmap:
Feel free to file a PR that implements any of the above items. Feel free to file a PR that implements any of the above items.
Related Projects: Related Projects:
-------- ------------------
* Riingo_ : Client for Tiingo in the R Programming Language * Riingo_ : Client for Tiingo in the R Programming Language
.. _Riingo: https://github.com/business-science/riingo .. _Riingo: https://github.com/business-science/riingo