We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from pykrx import stock from pykrx import bond
df = bond.get_otc_treasury_yields("20190208") print(df) Traceback (most recent call last):
Input In [32] in <cell line: 4> df = bond.get_otc_treasury_yields("20190208")
File ~\anaconda3\lib\site-packages\pykrx\bond\bond.py:63 in get_otc_treasury_yields df = krx.bond.get_otc_treasury_yields_by_ticker(args[0])
AttributeError: module 'pykrx.website.krx' has no attribute 'bond'
The text was updated successfully, but these errors were encountered:
from pykrx import stock from pykrx import bond df = bond.get_otc_treasury_yields("20190208") print(df) Traceback (most recent call last): Input In [32] in <cell line: 4> df = bond.get_otc_treasury_yields("20190208") File ~\anaconda3\lib\site-packages\pykrx\bond\bond.py:63 in get_otc_treasury_yields df = krx.bond.get_otc_treasury_yields_by_ticker(args[0]) AttributeError: module 'pykrx.website.krx' has no attribute 'bond'
잘됩니다.
Sorry, something went wrong.
No branches or pull requests
from pykrx import stock
from pykrx import bond
df = bond.get_otc_treasury_yields("20190208")
print(df)
Traceback (most recent call last):
Input In [32] in <cell line: 4>
df = bond.get_otc_treasury_yields("20190208")
File ~\anaconda3\lib\site-packages\pykrx\bond\bond.py:63 in get_otc_treasury_yields
df = krx.bond.get_otc_treasury_yields_by_ticker(args[0])
AttributeError: module 'pykrx.website.krx' has no attribute 'bond'
The text was updated successfully, but these errors were encountered: