Also working for us isin now
This commit is contained in:
parent
f492c81397
commit
070c9ead3a
@ -19,7 +19,7 @@ def get_share_price(str_search_for):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
search_result = investpy.search_quotes(text=str_search_for, products=['stocks'],
|
search_result = investpy.search_quotes(text=str_search_for, products=['stocks'],
|
||||||
countries=['germany'], n_results=1)
|
countries=['germany', 'united states'], n_results=1)
|
||||||
|
|
||||||
currency = str(search_result.retrieve_currency())
|
currency = str(search_result.retrieve_currency())
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ def get_share_price_no_currency(str_search_for):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
search_result = investpy.search_quotes(text=str_search_for, products=['stocks'],
|
search_result = investpy.search_quotes(text=str_search_for, products=['stocks'],
|
||||||
countries=['germany'], n_results=1)
|
countries=['germany', 'united states'], n_results=1)
|
||||||
|
|
||||||
recent_data = pandas.DataFrame(search_result.retrieve_recent_data())
|
recent_data = pandas.DataFrame(search_result.retrieve_recent_data())
|
||||||
|
|
||||||
@ -53,9 +53,9 @@ def get_share_price_no_currency(str_search_for):
|
|||||||
|
|
||||||
def get_share_information(str_search_for):
|
def get_share_information(str_search_for):
|
||||||
search_result = investpy.search_quotes(text=str_search_for, products=['stocks'],
|
search_result = investpy.search_quotes(text=str_search_for, products=['stocks'],
|
||||||
countries=['germany'], n_results=1)
|
countries=['germany', 'united states'], n_results=1)
|
||||||
|
|
||||||
str_return = "Company: " + search_result.name + "\nSymbol: " + search_result.symbol + "\nCurrent Price/Share: " + get_share_price(str_search_for)
|
str_return = "Company: " + search_result.name + "\nSymbol: " + search_result.symbol + "\nCurrent Price/Share: " + get_share_price(str_search_for)
|
||||||
|
|
||||||
return str_return
|
return str_return
|
||||||
|
|
Loading…
Reference in New Issue
Block a user