Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Miller committed Jan 8, 2019
1 parent 6c9332c commit 63249cf
Show file tree
Hide file tree
Showing 79 changed files with 405 additions and 335 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To get an API key, [sign up here](https://intrinio.com/).
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.

- API version: 2.1.0
- Package version: 1.1.1
- Package version: 1.1.2


## Requirements.
Expand Down
84 changes: 42 additions & 42 deletions intrinio_sdk/api/company_api.py

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions intrinio_sdk/api/data_point_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_data_point_number(self, identifier, tag, **kwargs): # noqa: E501
Returns a numeric value for the given `tag` and the entity with the given `identifier` # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_data_point_number(identifier, tag, async=True)
>>> thread = api.get_data_point_number(identifier, tag, _async=True)
>>> result = thread.get()
:param async bool
Expand All @@ -62,7 +62,7 @@ def get_data_point_number_with_http_info(self, identifier, tag, **kwargs): # no
Returns a numeric value for the given `tag` and the entity with the given `identifier` # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_data_point_number_with_http_info(identifier, tag, async=True)
>>> thread = api.get_data_point_number_with_http_info(identifier, tag, _async=True)
>>> result = thread.get()
:param async bool
Expand Down Expand Up @@ -130,7 +130,7 @@ def get_data_point_number_with_http_info(self, identifier, tag, **kwargs): # no
files=local_var_files,
response_type='float', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand All @@ -142,7 +142,7 @@ def get_data_point_text(self, identifier, tag, **kwargs): # noqa: E501
Returns a text value for the given `tag` and the entity with the given `identifier` # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_data_point_text(identifier, tag, async=True)
>>> thread = api.get_data_point_text(identifier, tag, _async=True)
>>> result = thread.get()
:param async bool
Expand All @@ -165,7 +165,7 @@ def get_data_point_text_with_http_info(self, identifier, tag, **kwargs): # noqa
Returns a text value for the given `tag` and the entity with the given `identifier` # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_data_point_text_with_http_info(identifier, tag, async=True)
>>> thread = api.get_data_point_text_with_http_info(identifier, tag, _async=True)
>>> result = thread.get()
:param async bool
Expand Down Expand Up @@ -233,7 +233,7 @@ def get_data_point_text_with_http_info(self, identifier, tag, **kwargs): # noqa
files=local_var_files,
response_type='str', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand Down
24 changes: 12 additions & 12 deletions intrinio_sdk/api/data_tag_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def filter_data_tags(self, **kwargs): # noqa: E501
Returns Data Tags that match the given filters # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.filter_data_tags(async=True)
>>> thread = api.filter_data_tags(_async=True)
>>> result = thread.get()
:param async bool
Expand All @@ -66,7 +66,7 @@ def filter_data_tags_with_http_info(self, **kwargs): # noqa: E501
Returns Data Tags that match the given filters # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.filter_data_tags_with_http_info(async=True)
>>> thread = api.filter_data_tags_with_http_info(_async=True)
>>> result = thread.get()
:param async bool
Expand Down Expand Up @@ -138,7 +138,7 @@ def filter_data_tags_with_http_info(self, **kwargs): # noqa: E501
files=local_var_files,
response_type='ApiResponseDataTags', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand All @@ -150,7 +150,7 @@ def get_all_data_tags(self, **kwargs): # noqa: E501
Returns All Data Tags # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_all_data_tags(async=True)
>>> thread = api.get_all_data_tags(_async=True)
>>> result = thread.get()
:param async bool
Expand All @@ -172,7 +172,7 @@ def get_all_data_tags_with_http_info(self, **kwargs): # noqa: E501
Returns All Data Tags # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_all_data_tags_with_http_info(async=True)
>>> thread = api.get_all_data_tags_with_http_info(_async=True)
>>> result = thread.get()
:param async bool
Expand Down Expand Up @@ -229,7 +229,7 @@ def get_all_data_tags_with_http_info(self, **kwargs): # noqa: E501
files=local_var_files,
response_type='ApiResponseDataTags', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand All @@ -241,7 +241,7 @@ def get_data_tag_by_id(self, identifier, **kwargs): # noqa: E501
Returns the Data Tag with the given `identifier` # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_data_tag_by_id(identifier, async=True)
>>> thread = api.get_data_tag_by_id(identifier, _async=True)
>>> result = thread.get()
:param async bool
Expand All @@ -263,7 +263,7 @@ def get_data_tag_by_id_with_http_info(self, identifier, **kwargs): # noqa: E501
Returns the Data Tag with the given `identifier` # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_data_tag_by_id_with_http_info(identifier, async=True)
>>> thread = api.get_data_tag_by_id_with_http_info(identifier, _async=True)
>>> result = thread.get()
:param async bool
Expand Down Expand Up @@ -324,7 +324,7 @@ def get_data_tag_by_id_with_http_info(self, identifier, **kwargs): # noqa: E501
files=local_var_files,
response_type='DataTag', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand All @@ -336,7 +336,7 @@ def search_data_tags(self, query, **kwargs): # noqa: E501
Searches for Data Tags matching the text `query` # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.search_data_tags(query, async=True)
>>> thread = api.search_data_tags(query, _async=True)
>>> result = thread.get()
:param async bool
Expand All @@ -358,7 +358,7 @@ def search_data_tags_with_http_info(self, query, **kwargs): # noqa: E501
Searches for Data Tags matching the text `query` # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.search_data_tags_with_http_info(query, async=True)
>>> thread = api.search_data_tags_with_http_info(query, _async=True)
>>> result = thread.get()
:param async bool
Expand Down Expand Up @@ -419,7 +419,7 @@ def search_data_tags_with_http_info(self, query, **kwargs): # noqa: E501
files=local_var_files,
response_type='ApiResponseDataTags', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand Down
Loading

0 comments on commit 63249cf

Please sign in to comment.