mirror of
https://github.com/hydrosquall/tiingo-python.git
synced 2025-12-19 12:44:20 +01:00
Clarify API Usage in Docs
This commit is contained in:
61
README.rst
61
README.rst
@@ -39,35 +39,54 @@ First, install the library from PyPi:
|
|||||||
|
|
||||||
pip install tiingo
|
pip install tiingo
|
||||||
|
|
||||||
Now you can use the TiingoClient to make your API calls. (Other parameters are available for each endpoint beyond what has been written below, see docs for full details.)
|
Next, initialize your client object. It is recommended to use an environment
|
||||||
|
variable to initialize your client object for convenience.
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
from tiingo import TiingoClient
|
from tiingo import TiingoClient
|
||||||
# Set TIINGO_API_KEY in your environment variables in your .bash_profile, OR
|
# Set TIINGO_API_KEY in your environment variables in your .bash_profile, OR
|
||||||
# pass a dictionary with 'api_key' as a key into the TiingoClient.
|
# pass a dictionary with 'api_key' as a key into the TiingoClient.
|
||||||
|
|
||||||
# With environment variable
|
client = TiingoClient()
|
||||||
client = TiingoClient()
|
|
||||||
# With hardcoded dictionary key
|
|
||||||
client = TiingoClient({'api_key': "MY_SECRET_API_KEY"})
|
|
||||||
|
|
||||||
# Get Ticker
|
Alternately, you may use a dictionary to customize/authorize your client.
|
||||||
# See official docs for list of all supported tickers + date ranges
|
|
||||||
ticker_metadata = client.get_ticker_metadata("GOOGL")
|
|
||||||
|
|
||||||
# Get latest prices, based on 3+ sources, as CSV or JSON, sampled weekly
|
.. code-block:: python
|
||||||
ticker_price = client.get_ticker_price("GOOGL", frequency="weekly")
|
|
||||||
|
|
||||||
# WARNING: These will only work if your account has access to the
|
config = {}
|
||||||
# Mutual Funds portion of the API.
|
|
||||||
# Get mutual fund metadata
|
# To reuse the same HTTP Session across API calls (and have better performance), include a session key.
|
||||||
fund_metadata = client.get_fund_metadata("VFINX")
|
config['session'] = True
|
||||||
# Get mutual fund Expenses and Shareholder Fee Data for June 2017
|
|
||||||
fund_metrics = client.get_fund_metrics("VFINX", "2017-06-01", "2017-06-30")
|
# If you don't have your API key as an environment variable,
|
||||||
|
# pass it in via a configuration dictionary.
|
||||||
|
config['api_key'] = "MY_SECRET_API_KEY"
|
||||||
|
|
||||||
|
# Initialize
|
||||||
|
client = TiingoClient(config)
|
||||||
|
|
||||||
|
Now you can use ``TiingoClient`` to make your API calls. (Other parameters are available for each endpoint beyond what has been written below, see the Tiingo website for full details).
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
# Get Ticker
|
||||||
|
# See official docs for list of all supported tickers + date ranges
|
||||||
|
ticker_metadata = client.get_ticker_metadata("GOOGL")
|
||||||
|
|
||||||
|
# Get latest prices, based on 3+ sources, as CSV or JSON, sampled weekly
|
||||||
|
ticker_price = client.get_ticker_price("GOOGL", frequency="weekly")
|
||||||
|
|
||||||
|
# WARNING: These will only work if your account has access to the
|
||||||
|
# Mutual Funds portion of the API.
|
||||||
|
# Get mutual fund metadata
|
||||||
|
fund_metadata = client.get_fund_metadata("VFINX")
|
||||||
|
# Get mutual fund Expenses and Shareholder Fee Data for June 2017
|
||||||
|
fund_metrics = client.get_fund_metrics("VFINX", "2017-06-01", "2017-06-30")
|
||||||
|
|
||||||
|
# Get news articles about given tickers or search terms from given domains
|
||||||
|
# Coming soon!
|
||||||
|
|
||||||
# Get news articles about given tickers or search terms from given domains
|
|
||||||
# Coming soon!
|
|
||||||
|
|
||||||
Further Docs
|
Further Docs
|
||||||
--------
|
--------
|
||||||
|
|||||||
@@ -6,7 +6,9 @@ To use Tiingo Python in a project::
|
|||||||
|
|
||||||
import tiingo
|
import tiingo
|
||||||
|
|
||||||
Now you can use the ``TiingoClient`` to make your API calls. (Other parameters are available for each endpoint beyond what has been written below, see docs for full details.)
|
|
||||||
|
Next, initialize your client object. It is recommended to use an environment
|
||||||
|
variable to initialize your client object for convenience.
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
@@ -14,11 +16,26 @@ Now you can use the ``TiingoClient`` to make your API calls. (Other parameters a
|
|||||||
# Set TIINGO_API_KEY in your environment variables in your .bash_profile, OR
|
# Set TIINGO_API_KEY in your environment variables in your .bash_profile, OR
|
||||||
# pass a dictionary with 'api_key' as a key into the TiingoClient.
|
# pass a dictionary with 'api_key' as a key into the TiingoClient.
|
||||||
|
|
||||||
# With environment variable
|
|
||||||
client = TiingoClient()
|
client = TiingoClient()
|
||||||
# With hardcoded dictionary key
|
|
||||||
client = TiingoClient({'api_key': "MY_SECRET_API_KEY"})
|
|
||||||
|
|
||||||
|
Alternately, you may use a dictionary to customize/authorize your client.
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
config = {}
|
||||||
|
|
||||||
|
# To reuse the same HTTP Session across API calls (and have better)
|
||||||
|
# performance, include a session key.
|
||||||
|
config['session'] = True
|
||||||
|
# If you don't have your API key as an environment variable,
|
||||||
|
# pass it in via a configuration dictionary.
|
||||||
|
config['api_key'] = "MY_SECRET_API_KEY"
|
||||||
|
|
||||||
|
# Initialize
|
||||||
|
client = TiingoClient(config)
|
||||||
|
|
||||||
|
Now you can use ``TiingoClient`` to make your API calls. (Other parameters are available for each endpoint beyond what has been written below, see the Tiingo website for full details).
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
# Get Ticker
|
# Get Ticker
|
||||||
# See official docs for list of all supported tickers + date ranges
|
# See official docs for list of all supported tickers + date ranges
|
||||||
ticker_metadata = client.get_ticker_metadata("GOOGL")
|
ticker_metadata = client.get_ticker_metadata("GOOGL")
|
||||||
|
|||||||
Reference in New Issue
Block a user